From 6ae23d8b17d2d3749dcd6feea7de7df06e3a3840 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Wed, 2 Jul 2025 16:50:24 -0400 Subject: [PATCH 01/63] fix submerge and retract settings. --- .../protocol_replacement/96ch1000.csv | 2 +- .../protocol_replacement/gravimetric.py | 38 ++++++++++++++----- 2 files changed, 29 insertions(+), 11 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv index 1acb2779b22..bf75922caed 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv @@ -2,7 +2,7 @@ name,gravimetric-ot3-p1000-96,,,,,,,, increment,FALSE,,,,,,,, mount,left,,,,,,,, pipette,1000,96,,,,,,, -tips,50,,,,,,,, +tips,50,200,1000,,,,,, trials,9,,,,,,,, return_tip,FALSE,,,,,,,, touch_tip,FALSE,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 11385841f0d..974fd11e20f 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -17,7 +17,10 @@ ) from opentrons import version from opentrons.protocol_api._liquid_properties import TransferProperties -from opentrons_shared_data.liquid_classes.liquid_class_definition import Coordinate +from opentrons_shared_data.liquid_classes.liquid_class_definition import ( + Coordinate, + PositionReference, +) from opentrons.protocol_api.core.engine import ( transfer_components_executor as tx_comps_executor, ) @@ -351,6 +354,7 @@ def _get_tips_for_test_96( ] need_to_swap = [slot for slot in fixture_settings.tips[tip] if slot in used_slots] if len(need_to_swap) != 0: + fixture_settings.pipette._retract() fixture_settings.ctx.pause(f"Replace slots {need_to_swap} with {tip}ul tips") for slot in need_to_swap: old_adapter = loaded_labwares[ @@ -453,9 +457,9 @@ def remove_tip(fixture_settings: FixtureSettings) -> None: def _get_offset_for_channel( - fixture_settings: FixtureSettings, channel: int + fixture_settings: FixtureSettings, channel: int, submerge_depth: float = 0 ) -> Coordinate: - offset = Coordinate(x=0, y=0, z=0) + offset = Coordinate(x=0, y=0, z=submerge_depth) if fixture_settings.channels == 8 and not fixture_settings.increment: offset.y = channel * 9.0 return offset @@ -530,7 +534,6 @@ def aspirate_with_liquid_class( trial: int, channel: int, transfer_properties: TransferProperties, - submerge_depth_override: float = -1.5, ) -> List[tx_comps_executor.LiquidAndAirGapPair]: """Aspirate with liquid class.""" fixture_settings.recorder.set_sample_tag( @@ -539,7 +542,7 @@ def aspirate_with_liquid_class( return fixture_settings.pipette._core.aspirate_liquid_class( # type: ignore [attr-defined] volume=volume, source=( - fixture_settings.liquid_source.meniscus(submerge_depth_override), + fixture_settings.liquid_source.top(), fixture_settings.liquid_source._core, ), transfer_properties=transfer_properties, @@ -562,7 +565,6 @@ def dispense_with_liquid_class( channel: int, transfer_properties: TransferProperties, contents: List[tx_comps_executor.LiquidAndAirGapPair], - submerge_depth_override: float = -1.5, final_air_gap: bool = True, ) -> None: """Dispense with Liquid Class.""" @@ -572,7 +574,7 @@ def dispense_with_liquid_class( fixture_settings.pipette._core.dispense_liquid_class( # type: ignore [attr-defined] volume=volume, dest=( - fixture_settings.liquid_source.meniscus(submerge_depth_override), + fixture_settings.liquid_source.top(), fixture_settings.liquid_source._core, ), source=None, @@ -598,6 +600,16 @@ def run_blank_test( transfer_properties = fixture_settings.liquid_class.get_for( fixture_settings.pipette.name, tip_rack=tiprack_uri ) + offset = _get_offset_for_channel(fixture_settings, channel, 10) + transfer_properties.aspirate.aspirate_position.offset = offset + transfer_properties.dispense.dispense_position.offset = offset + transfer_properties.aspirate.aspirate_position.position_reference = ( + PositionReference.LIQUID_MENISCUS + ) + transfer_properties.dispense.dispense_position.position_reference = ( + PositionReference.LIQUID_MENISCUS + ) + fixture_settings.pipette._core.load_liquid_class( # type: ignore [attr-defined] name=fixture_settings.liquid_class.name, transfer_properties=transfer_properties, @@ -621,7 +633,6 @@ def run_blank_test( trial, channel, transfer_properties=transfer_properties, - submerge_depth_override=15, ) print_info("Post aspirate read.") post_aspirate = retract_and_wait( @@ -642,7 +653,6 @@ def run_blank_test( channel, transfer_properties, contents, - submerge_depth_override=15, final_air_gap=False, ) print_info("Post dispense read.") @@ -672,9 +682,15 @@ def run_one_test( transfer_properties = fixture_settings.liquid_class.get_for( fixture_settings.pipette.name, tip_rack=tiprack_uri ) - offset = _get_offset_for_channel(fixture_settings, channel) + offset = _get_offset_for_channel(fixture_settings, channel, -1.5) transfer_properties.aspirate.aspirate_position.offset = offset transfer_properties.dispense.dispense_position.offset = offset + transfer_properties.aspirate.aspirate_position.position_reference = ( + PositionReference.LIQUID_MENISCUS + ) + transfer_properties.dispense.dispense_position.position_reference = ( + PositionReference.LIQUID_MENISCUS + ) fixture_settings.pipette._core.load_liquid_class( # type: ignore [attr-defined] name=fixture_settings.liquid_class.name, transfer_properties=transfer_properties, @@ -682,6 +698,8 @@ def run_one_test( ) pick_up_tip_for_channel(fixture_settings, tip_well, channel) fixture_settings.pipette.configure_for_volume(volume) + fixture_settings.pipette.move_to(fixture_settings.liquid_source.top(20)) + fixture_settings.pipette._retract() print_info("Pre-aspirate read.") pre_aspirate = retract_and_wait( fixture_settings, MeasurementType.INIT, tip, volume, trial, channel=channel From 787293fa5b9b2abc6df85a1cf091cc1ee759d56f Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Wed, 2 Jul 2025 17:25:11 -0400 Subject: [PATCH 02/63] move some more numbers into the csvs --- .../gravimetric/protocol_replacement/1ch1000.csv | 3 +++ .../protocol_replacement/1ch1000_extra.csv | 3 +++ .../gravimetric/protocol_replacement/1ch50.csv | 3 +++ .../protocol_replacement/1ch50_extra.csv | 3 +++ .../protocol_replacement/1ch50_extra_with_20tip.csv | 3 +++ .../protocol_replacement/1ch50_with_20tip.csv | 3 +++ .../gravimetric/protocol_replacement/8ch1000.csv | 3 +++ .../protocol_replacement/8ch1000_extra.csv | 3 +++ .../gravimetric/protocol_replacement/8ch50.csv | 3 +++ .../protocol_replacement/8ch50_extra.csv | 3 +++ .../gravimetric/protocol_replacement/96ch1000.csv | 3 +++ .../gravimetric/protocol_replacement/96ch200.csv | 3 +++ .../gravimetric/protocol_replacement/gravimetric.py | 13 ++++++++++--- 13 files changed, 46 insertions(+), 3 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv index 43156d543b7..b1a1542453c 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,,,, volumes_to_test_50ul,,5,, volumes_to_test_200ul,,,, volumes_to_test_1000ul,1000,,, +blank_trials,10,,, +scale_delay,10,,, +submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv index 439ea8a9feb..f7d4af79995 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,,,, volumes_to_test_50ul,5,50,, volumes_to_test_200ul,200,,, volumes_to_test_1000ul,1000,,, +blank_trials,10,,, +scale_delay,10,,, +submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv index 826717a5315..fa9dd41cd42 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,,,, volumes_to_test_50ul,1,50,, volumes_to_test_200ul,,,, volumes_to_test_1000ul,,,, +blank_trials,10,,, +scale_delay,10,,, +submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv index fcd12d81177..23d63bd366f 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,,,, volumes_to_test_50ul,1,10,50, volumes_to_test_200ul,,,, volumes_to_test_1000ul,,,, +blank_trials,10,,, +scale_delay,10,,, +submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv index fa38a83b44c..628e008e3e2 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,1,20,, volumes_to_test_50ul,1,10,50, volumes_to_test_200ul,,,, volumes_to_test_1000ul,,,, +blank_trials,10,,, +scale_delay,10,,, +submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv index 30f377e55d1..dda00289de7 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,1,20,, volumes_to_test_50ul,1,50,, volumes_to_test_200ul,,,, volumes_to_test_1000ul,,,, +blank_trials,10,,, +scale_delay,10,,, +submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv index b7e1766bc9d..3becf5cc5ea 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,,,, volumes_to_test_50ul,5,,, volumes_to_test_200ul,,,, volumes_to_test_1000ul,1000,,, +blank_trials,10,,, +scale_delay,10,,, +submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv index 1476b0bea85..dad8df2f6b9 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,,,, volumes_to_test_50ul,5,50,, volumes_to_test_200ul,200,,, volumes_to_test_1000ul,1000,,, +blank_trials,10,,, +scale_delay,10,,, +submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv index 1566b52166f..cb8153d9940 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,,,,,, volumes_to_test_50ul,1,50,,,, volumes_to_test_200ul,,,,,, volumes_to_test_1000ul,,,,,, +blank_trials,10,,,,, +scale_delay,10,,,,, +submerge_depth,-1.5,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv index 23274f60bb6..7bc3915bf6c 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,,,,,, volumes_to_test_50ul,1,10,50,,, volumes_to_test_200ul,,,,,, volumes_to_test_1000ul,,,,,, +blank_trials,10,,,,, +scale_delay,10,,,,, +submerge_depth,-1.5,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv index bf75922caed..9471e8ca17f 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,5,,,,,,,, volumes_to_test_50ul,1,50,,,,,,, volumes_to_test_200ul,200,,,,,,,, volumes_to_test_1000ul,1000,,,,,,,, +blank_trials,10,,,,,,,, +scale_delay,10,,,,,,,, +submerge_depth,-1.5,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv index 7e799eca6ec..51713d114c3 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv @@ -17,3 +17,6 @@ volumes_to_test_20ul,,,,,,,,, volumes_to_test_50ul,50,,,,,,,, volumes_to_test_200ul,,,,,,,,, volumes_to_test_1000ul,,,,,,,,, +blank_trials,10,,,,,,,, +scale_delay,10,,,,,,,, +submerge_depth,-1.5,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 974fd11e20f..3e3ad51dc82 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -135,6 +135,7 @@ class FixtureSettings: test_report: report.CSVReport scale_delay: int blank_trials: int + submerge_depth: float isolate_volumes: bool @classmethod @@ -174,6 +175,9 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: labware_on_scale = lookup_key("labware_on_scale", csv_params)[0] labware_on_scale_well_name = lookup_key("labware_on_scale", csv_params)[1] slot_scale = lookup_key("slot_scale", csv_params)[0] + scale_delay = int(lookup_key("scale_delay", csv_params)[0]) + blank_trials = int(lookup_key("blank_trials", csv_params)[0]) + submerge_depth = float(lookup_key("submerge_depth", csv_params)[0]) volumes_to_test_20ul = [ float(volume) for volume in lookup_key("volumes_to_test_20ul", csv_params) ] @@ -303,8 +307,9 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: env_serial=env_serial, pipette_tag=pipette_tag, test_report=test_report, - scale_delay=10, - blank_trials=10, + scale_delay=scale_delay, + blank_trials=blank_trials, + submerge_depth=submerge_depth, isolate_volumes=False, ) @@ -682,7 +687,9 @@ def run_one_test( transfer_properties = fixture_settings.liquid_class.get_for( fixture_settings.pipette.name, tip_rack=tiprack_uri ) - offset = _get_offset_for_channel(fixture_settings, channel, -1.5) + offset = _get_offset_for_channel( + fixture_settings, channel, fixture_settings.submerge_depth + ) transfer_properties.aspirate.aspirate_position.offset = offset transfer_properties.dispense.dispense_position.offset = offset transfer_properties.aspirate.aspirate_position.position_reference = ( From 664d492484e4c57da776d19d8b22382351800212 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Mon, 7 Jul 2025 11:52:37 -0400 Subject: [PATCH 03/63] return tips on the 96 --- .../gravimetric/protocol_replacement/96ch1000.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv index 9471e8ca17f..d912e6321d7 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv @@ -4,7 +4,7 @@ mount,left,,,,,,,, pipette,1000,96,,,,,,, tips,50,200,1000,,,,,, trials,9,,,,,,,, -return_tip,FALSE,,,,,,,, +return_tip,TRUE,,,,,,,, touch_tip,FALSE,,,,,,,, liquid,water,Deionized water,#0000ff,100000,,,,, tipracks_20ul,D2,D3,C2,C3,B1,B2,B3,A1,A2 From 2064b53378f0c1f569c30e2986d13157b7120f05 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Mon, 7 Jul 2025 16:44:23 -0400 Subject: [PATCH 04/63] store config dictionary --- .../protocol_replacement/1ch1000.csv | 1 + .../protocol_replacement/1ch1000_extra.csv | 1 + .../protocol_replacement/1ch50.csv | 1 + .../protocol_replacement/1ch50_extra.csv | 2 + .../1ch50_extra_with_20tip.csv | 2 + .../protocol_replacement/1ch50_with_20tip.csv | 1 + .../protocol_replacement/8ch1000.csv | 1 + .../protocol_replacement/8ch1000_extra.csv | 2 + .../protocol_replacement/8ch50.csv | 1 + .../protocol_replacement/8ch50_extra.csv | 1 + .../protocol_replacement/96ch1000.csv | 1 + .../protocol_replacement/96ch200.csv | 1 + .../protocol_replacement/gravimetric.py | 44 ++++++++++++++++++- 13 files changed, 58 insertions(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv index b1a1542453c..1ac03e6fc02 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv @@ -20,3 +20,4 @@ volumes_to_test_1000ul,1000,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, +is_extra,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv index f7d4af79995..927d788bd55 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv @@ -20,3 +20,4 @@ volumes_to_test_1000ul,1000,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, +is_extra,TRUE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv index fa9dd41cd42..218907c0ac4 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv @@ -20,3 +20,4 @@ volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, +is_extra,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv index 23d63bd366f..fbc9a521346 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv @@ -20,3 +20,5 @@ volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, + +is_extra,TRUE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv index 628e008e3e2..626389cc68c 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv @@ -20,3 +20,5 @@ volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, + +is_extra,TRUE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv index dda00289de7..ad7629f3ffd 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv @@ -20,3 +20,4 @@ volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, +is_extra,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv index 3becf5cc5ea..689d52ff801 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv @@ -20,3 +20,4 @@ volumes_to_test_1000ul,1000,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, +is_extra,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv index dad8df2f6b9..e80ce558efc 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv @@ -20,3 +20,5 @@ volumes_to_test_1000ul,1000,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, + +is_extra,TRUE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv index cb8153d9940..ffd0244a36e 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv @@ -20,3 +20,4 @@ volumes_to_test_1000ul,,,,,, blank_trials,10,,,,, scale_delay,10,,,,, submerge_depth,-1.5,,,,, +is_extra,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv index 7bc3915bf6c..ebae6eb14a0 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv @@ -20,3 +20,4 @@ volumes_to_test_1000ul,,,,,, blank_trials,10,,,,, scale_delay,10,,,,, submerge_depth,-1.5,,,,, +is_extra,TRUE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv index d912e6321d7..0f111b1b092 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv @@ -20,3 +20,4 @@ volumes_to_test_1000ul,1000,,,,,,,, blank_trials,10,,,,,,,, scale_delay,10,,,,,,,, submerge_depth,-1.5,,,,,,,, +is_extra,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv index 51713d114c3..a1f2c83d6c7 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv @@ -20,3 +20,4 @@ volumes_to_test_1000ul,,,,,,,,, blank_trials,10,,,,,,,, scale_delay,10,,,,,,,, submerge_depth,-1.5,,,,,,,, +is_extra,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 3e3ad51dc82..cc4393285a5 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -97,7 +97,7 @@ def _download_and_extract(version_str: str, base_dir: str) -> None: GravimetricRecorderConfig, ) from hardware_testing.drivers import asair_sensor as AsairDriver # noqa: E402 -from hardware_testing.gravimetric import helpers, report, tips # noqa: E402 +from hardware_testing.gravimetric import helpers, report, tips, config # noqa: E402 _MEASUREMENTS: List[Tuple[str, MeasurementData]] = list() @@ -137,6 +137,9 @@ class FixtureSettings: blank_trials: int submerge_depth: float isolate_volumes: bool + extra: bool + labware_on_scale: str + slot_scale: str @classmethod def build(cls, ctx: ProtocolContext) -> "FixtureSettings": @@ -190,6 +193,7 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: volumes_to_test_1000ul = [ float(volume) for volume in lookup_key("volumes_to_test_1000ul", csv_params) ] + extra = bool(lookup_key("is_extra", csv_params)[0] == "TRUE") volumes = { 20: volumes_to_test_20ul, @@ -311,6 +315,9 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: blank_trials=blank_trials, submerge_depth=submerge_depth, isolate_volumes=False, + extra=extra, + labware_on_scale=labware_on_scale, + slot_scale=slot_scale, ) def validate_settings(self) -> bool: @@ -322,6 +329,40 @@ def validate_settings(self) -> bool: return True +def _store_config_as_old_style(fixture_settings: FixtureSettings) -> None: + old_style = config.GravimetricConfig( + name=fixture_settings.name, + pipette_volume=fixture_settings.pipette_volume, + pipette_channels=fixture_settings.pipette_channels, + pipette_mount=fixture_settings.mount, + tip_volume=fixture_settings.tip_sizes[0], + trials=fixture_settings.trials, + slots_tiprack=[ + DeckSlotName.from_primitive(slot).as_int() + for slot in fixture_settings.tips[fixture_settings.tip_sizes[0]] + ], + increment=fixture_settings.increment, + return_tip=fixture_settings.return_tip, + mix=False, + user_volumes=False, + kind=config.ConfigType.gravimetric, + extra=fixture_settings.extra, + jog=False, + same_tip=False, + ignore_fail=True, + mode="", + labware_on_scale=fixture_settings.labware_on_scale, + slot_scale=DeckSlotName.from_primitive(fixture_settings.slot_scale).as_int(), + blank=True, + gantry_speed=config.GANTRY_MAX_SPEED, + scale_delay=fixture_settings.scale_delay, + isolate_channels=[], + isolate_volumes=[], + liquid=fixture_settings.liquid_name, + ) + report.store_config_gm(fixture_settings.test_report, old_style) + + def _get_tips_for_test_single_multi( fixture_settings: FixtureSettings, tip: int, channel: int ) -> List[Well]: @@ -934,6 +975,7 @@ def run(ctx: ProtocolContext) -> None: """Pick up, aspirate, and dispense one trial and write it to the report.""" fixture_settings = FixtureSettings.build(ctx) try: + _store_config_as_old_style(fixture_settings) _run(ctx, fixture_settings) finally: if fixture_settings.recorder is not None: From d4ad89a9e3c7218be8624d6d956c98aaed7533c8 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 8 Jul 2025 18:31:46 -0400 Subject: [PATCH 05/63] don't write to disk on verdin simulations. way faster. --- hardware-testing/hardware_testing/data/csv_report.py | 4 ++++ .../gravimetric/protocol_replacement/gravimetric.py | 1 + hardware-testing/hardware_testing/gravimetric/report.py | 2 ++ 3 files changed, 7 insertions(+) diff --git a/hardware-testing/hardware_testing/data/csv_report.py b/hardware-testing/hardware_testing/data/csv_report.py index a8e5a35b47b..41c6b3a587f 100644 --- a/hardware-testing/hardware_testing/data/csv_report.py +++ b/hardware-testing/hardware_testing/data/csv_report.py @@ -326,6 +326,7 @@ def __init__( run_id: Optional[str] = None, start_time: Optional[float] = None, validate_meta_data: bool = True, + dont_write_to_disk: bool = False, ) -> None: """CSV Report init.""" self._test_name = test_name @@ -342,6 +343,7 @@ def __init__( self(META_DATA_TITLE, META_DATA_TEST_RUN_ID, [self._run_id]) _now = datetime.utcnow().strftime("%Y/%m/%d-%H:%M:%S") self(META_DATA_TITLE, META_DATA_TEST_TIME_UTC, [_now]) + self._dont_write_to_disk = dont_write_to_disk def __call__(self, *args: Any) -> None: """CSV Report call.""" @@ -479,6 +481,8 @@ def set_firmware(self, firmware: str) -> None: def save_to_disk(self) -> Path: """CSV Report save to disk.""" + if self._dont_write_to_disk: + return if not self._file_name: raise RuntimeError("must set tag of report using `Report.set_tag()`") _report_str = str(self) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index cc4393285a5..f91600d3127 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -265,6 +265,7 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: trials=trials, name=name, run_id=run_id, + dont_write_to_disk=bool(os.getenv('RUNNING_ON_VERDIN')) and simulating, ) os.makedirs(f"{test_report.parent}", exist_ok=True) set_output_file(f"{test_report.parent}/run_output.txt") diff --git a/hardware-testing/hardware_testing/gravimetric/report.py b/hardware-testing/hardware_testing/gravimetric/report.py index b0f7e27273b..12957e8fc0e 100644 --- a/hardware-testing/hardware_testing/gravimetric/report.py +++ b/hardware-testing/hardware_testing/gravimetric/report.py @@ -85,6 +85,7 @@ def create_csv_test_report( trials: int, name: str, run_id: str, + dont_write_to_disk: bool = False, ) -> CSVReport: """Create CSV test report.""" env_info = [field.name.replace("_", "-") for field in fields(EnvironmentData)] @@ -129,6 +130,7 @@ def _field_type_not_using_typing(t: Any) -> Any: test_name=name, run_id=run_id, validate_meta_data=False, # to avoid >3 columns in CSV (:shrug:) + dont_write_to_disk=dont_write_to_disk, sections=[ CSVSection( title="SERIAL-NUMBERS", From 473bdea425993809a144d192218c35ca413ebd66 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Wed, 9 Jul 2025 16:09:22 -0400 Subject: [PATCH 06/63] get everything to fast simulate working. --- .../hardware_testing/data/csv_report.py | 7 +- .../protocol_replacement/gravimetric.py | 165 +++++++++++++++--- 2 files changed, 148 insertions(+), 24 deletions(-) diff --git a/hardware-testing/hardware_testing/data/csv_report.py b/hardware-testing/hardware_testing/data/csv_report.py index 41c6b3a587f..95b6fbdf986 100644 --- a/hardware-testing/hardware_testing/data/csv_report.py +++ b/hardware-testing/hardware_testing/data/csv_report.py @@ -364,7 +364,7 @@ def __call__(self, *args: Any) -> None: # set the results of each section based on current self._refresh_results_overview_values() # save to disk after storing new values - if self._file_name: + if self._file_name and not self._dont_write_to_disk: self.save_to_disk() def __getitem__(self, item: str) -> CSVSection: @@ -445,7 +445,8 @@ def set_tag(self, tag: str) -> None: self._file_name = data_io.create_file_name( self._test_name, self._run_id, self.tag ) - self.save_to_disk() + if not self._dont_write_to_disk: + self.save_to_disk() def set_device_id(self, device_id: str, barcode_id: Optional[str] = None) -> None: """Store DUT serial number.""" @@ -481,8 +482,6 @@ def set_firmware(self, firmware: str) -> None: def save_to_disk(self) -> Path: """CSV Report save to disk.""" - if self._dont_write_to_disk: - return if not self._file_name: raise RuntimeError("must set tag of report using `Report.set_tag()`") _report_str = str(self) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index f91600d3127..f6fd22f0398 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -5,6 +5,8 @@ import os import sys from time import time +import importlib +import copy from opentrons.protocol_api import ( ProtocolContext, @@ -24,7 +26,7 @@ from opentrons.protocol_api.core.engine import ( transfer_components_executor as tx_comps_executor, ) -from opentrons.config import infer_config_base_dir +from opentrons.config import infer_config_base_dir, IS_ROBOT from opentrons.types import Point, DeckSlotName metadata = {"protocolName": "Gravimetric QC"} @@ -56,8 +58,8 @@ def _download_and_extract(version_str: str, base_dir: str) -> None: ver_file.write(version_str) -if os.getenv("RUNNING_ON_VERDIN") is None: - # we're simulating +if not IS_ROBOT or importlib.util.find_spec("hardware_testing") is None: + # we're simulating or there is not a vaild hardware-testing yet base_dir = str(infer_config_base_dir()) release = f"{version.replace('a', '-alpha.').replace('b', '-beta.')}" version_file_path = os.path.join(base_dir, "hardware_testing", "VERSION.txt") @@ -101,6 +103,22 @@ def _download_and_extract(version_str: str, base_dir: str) -> None: _MEASUREMENTS: List[Tuple[str, MeasurementData]] = list() +fast_simulate_measurement = MeasurementData( + grams_average=10, + grams_cv=1.0, + grams_min=9.9, + samples_start_time=10, + grams_max=10.1, + samples_duration=10, + samples_count=10, + celsius_pipette=25, + humidity_pipette=50, + celsius_air=25, + humidity_air=50, + pascals_air=1000, + celsius_liquid=25, +) + @dataclass class FixtureSettings: @@ -140,6 +158,7 @@ class FixtureSettings: extra: bool labware_on_scale: str slot_scale: str + fast_simulate: bool @classmethod def build(cls, ctx: ProtocolContext) -> "FixtureSettings": @@ -231,6 +250,22 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: else: pipette_tag = helpers._get_tag_from_pipette(pipette, False, False) run_id = create_run_id() + fast_simulate = IS_ROBOT and simulating + test_report = report.create_csv_test_report( + volumes=volumes_flat, + pipette_channels=pipette_channels, + increment=increment, + trials=trials, + name=name, + run_id=run_id, + dont_write_to_disk=fast_simulate, + ) + os.makedirs(f"{test_report.parent}", exist_ok=True) + set_output_file(f"{test_report.parent}/run_output.txt") + print_info(str(importlib.util.find_spec("hardware_testing"))) + print_info(f"Running on bot {IS_ROBOT}") + print_info(f"Fast simulate {fast_simulate}") + print_info(str(os.environ)) scale = Scale.build(simulating) recorder = GravimetricRecorder( GravimetricRecorderConfig( @@ -258,26 +293,22 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: git_description = get_git_description() operator_name = "unused" - test_report = report.create_csv_test_report( - volumes=volumes_flat, - pipette_channels=pipette_channels, - increment=increment, - trials=trials, - name=name, - run_id=run_id, - dont_write_to_disk=bool(os.getenv('RUNNING_ON_VERDIN')) and simulating, - ) - os.makedirs(f"{test_report.parent}", exist_ok=True) - set_output_file(f"{test_report.parent}/run_output.txt") test_report.set_tag(pipette_tag) test_report.set_operator(operator_name) test_report.set_version(git_description) test_report.set_firmware(fw_version) + t50_str = f"{ctx.params.cavity_50}{ctx.params.tip_batch_50}" # type: ignore [attr-defined] + t200_str = f"{ctx.params.cavity_200}{ctx.params.tip_batch_200}" # type: ignore [attr-defined] + t1000_str = f"{ctx.params.cavity_1000}{ctx.params.tip_batch_1000}" # type: ignore [attr-defined] report.store_serial_numbers( test_report, robot=robot_serial, pipette=pipette_tag, - tips={"tips_50ul": ctx.params.tip_batch}, # type: ignore [attr-defined] + tips={ + "tips_50ul": t50_str, + "tips_200ul": t200_str, + "tips_1000ul": t1000_str, + }, scale=recorder.serial_number, environment=env_serial, liquid=liquid_name, @@ -319,6 +350,7 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: extra=extra, labware_on_scale=labware_on_scale, slot_scale=slot_scale, + fast_simulate=fast_simulate, ) def validate_settings(self) -> bool: @@ -457,9 +489,76 @@ def add_parameters(parameters: ParameterContext) -> None: """Build the runtime parameters.""" parameters.add_csv_file("QC test profile", "qc_test_profile") + parameters.add_str( + display_name="Tip Cavity for 50ul tips", + variable_name="cavity_50", + default="Unused", + choices=[ + {"display_name": name, "value": name} + for name in [ + "Unused", + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + ] + ], + description="Set the target temperature for the pre-heat", + ) + + parameters.add_int( + display_name="Tip Batch for 50ul tips", + variable_name="tip_batch_50", + minimum=10000000, + maximum=99999999, + default=20250101, + description="Date portion of tip batch.", + ) + + parameters.add_str( + display_name="Tip Cavity for 200ul tips", + variable_name="cavity_200", + default="Unused", + choices=[ + {"display_name": name, "value": name} + for name in [ + "Unused", + "A", + "B", + "C", + "D", + "E", + "F", + "G", + "H", + "I", + "J", + "K", + "L", + "M", + "N", + "O", + "P", + ] + ], + description="Set the target temperature for the pre-heat", + ) + parameters.add_int( - display_name="Tip Batch", - variable_name="tip_batch", + display_name="Tip Batch for 200ul tips", + variable_name="tip_batch_200", minimum=10000000, maximum=99999999, default=20250101, @@ -467,12 +566,13 @@ def add_parameters(parameters: ParameterContext) -> None: ) parameters.add_str( - display_name="Tip Cavity", - variable_name="cavity", - default="A", + display_name="Tip Cavity for 1000ul tips", + variable_name="cavity_1000", + default="Unused", choices=[ {"display_name": name, "value": name} for name in [ + "Unused", "A", "B", "C", @@ -494,6 +594,15 @@ def add_parameters(parameters: ParameterContext) -> None: description="Set the target temperature for the pre-heat", ) + parameters.add_int( + display_name="Tip Batch for 1000ul tips", + variable_name="tip_batch_1000", + minimum=10000000, + maximum=99999999, + default=20250101, + description="Date portion of tip batch.", + ) + def remove_tip(fixture_settings: FixtureSettings) -> None: """Either return or drop tip(s).""" @@ -546,6 +655,18 @@ def retract_and_wait( blank: bool = False, ) -> MeasurementData: """Retract away from the scale and record the weight.""" + if fixture_settings.fast_simulate: + # just simulate the physical movement and return to speed up the analysis + fixture_settings.pipette._retract() + return_val = copy.deepcopy(fast_simulate_measurement) + if not blank: + if mode == MeasurementType.ASPIRATE: + return_val.grams_average += volume * -0.001 + elif mode == MeasurementType.DISPENSE: + return_val.grams_average += volume * 0.001 + print_info(f"mode {mode} {return_val.grams_average}") + return return_val + m_tag = create_measurement_tag(mode, None if blank else volume, channel, trial) fixture_settings.pipette._retract() if fixture_settings.recorder and not blank and fixture_settings.ctx.is_simulating(): @@ -869,6 +990,9 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: ) - avg_asp_evap ) + print_info( + f"change: {asp_with_evap} {measurements[volume][-1][0]} {measurements[volume][-1][1]}" + ) disp_with_evap = ( calculate_change_in_volume( measurements[volume][-1][1], @@ -983,3 +1107,4 @@ def run(ctx: ProtocolContext) -> None: print_info("ending recording") fixture_settings.recorder.stop() fixture_settings.recorder.deactivate() + set_output_file(None) From 7298b18dc2e356ab82a671f3381921c6c850fef0 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Wed, 9 Jul 2025 16:12:43 -0400 Subject: [PATCH 07/63] remove some clutter. --- .../gravimetric/protocol_replacement/gravimetric.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index f6fd22f0398..e6577371db6 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -265,7 +265,6 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: print_info(str(importlib.util.find_spec("hardware_testing"))) print_info(f"Running on bot {IS_ROBOT}") print_info(f"Fast simulate {fast_simulate}") - print_info(str(os.environ)) scale = Scale.build(simulating) recorder = GravimetricRecorder( GravimetricRecorderConfig( @@ -664,7 +663,6 @@ def retract_and_wait( return_val.grams_average += volume * -0.001 elif mode == MeasurementType.DISPENSE: return_val.grams_average += volume * 0.001 - print_info(f"mode {mode} {return_val.grams_average}") return return_val m_tag = create_measurement_tag(mode, None if blank else volume, channel, trial) @@ -990,9 +988,6 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: ) - avg_asp_evap ) - print_info( - f"change: {asp_with_evap} {measurements[volume][-1][0]} {measurements[volume][-1][1]}" - ) disp_with_evap = ( calculate_change_in_volume( measurements[volume][-1][1], From 61e5fea93721f1021eb4f55e136eec2bbf2c3dd2 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 10 Jul 2025 14:00:20 -0400 Subject: [PATCH 08/63] Store simulated runs elsewhere. --- .../gravimetric/protocol_replacement/gravimetric.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index e6577371db6..f80858c28b3 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -174,6 +174,8 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: ctx.params.qc_test_profile.parse_as_csv() # type: ignore [attr-defined] ) name = lookup_key("name", csv_params)[0] + if ctx.is_simulating(): + name = f"{name}-simulate" increment = bool(lookup_key("increment", csv_params)[0] == "TRUE") mount = lookup_key("mount", csv_params)[0] pipette_volume = int(lookup_key("pipette", csv_params)[0]) From ba8d6b54cbbbf25980e7f6e632aa2d274fb66b19 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 10 Jul 2025 15:15:23 -0400 Subject: [PATCH 09/63] adjust the z discontinuity speed and gantry speed to match the old settings. --- .../protocol_replacement/1ch50.csv | 3 ++ .../protocol_replacement/96ch1000.csv | 5 +- .../protocol_replacement/gravimetric.py | 54 ++++++++++++++++++- 3 files changed, 60 insertions(+), 2 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv index 218907c0ac4..a3ae5cf1054 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv @@ -21,3 +21,6 @@ blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, is_extra,FALSE,,, +retract_discontinuity,20,,, +disc_ver_cuttoff,36,,, +gantry_speed,40,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv index 0f111b1b092..56e0180bfa8 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv @@ -20,4 +20,7 @@ volumes_to_test_1000ul,1000,,,,,,,, blank_trials,10,,,,,,,, scale_delay,10,,,,,,,, submerge_depth,-1.5,,,,,,,, -is_extra,FALSE,,, +is_extra,FALSE,,,,,,,, +retract_discontinuity,20,,,,,,,, +disc_ver_cuttoff,36,,,,,,,, +gantry_speed,40,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index f80858c28b3..e3a708a5fb9 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -27,6 +27,8 @@ transfer_components_executor as tx_comps_executor, ) from opentrons.config import infer_config_base_dir, IS_ROBOT +from opentrons.config.defaults_ot3 import DEFAULT_MAX_SPEED_DISCONTINUITY +from opentrons.hardware_control.types import OT3AxisKind from opentrons.types import Point, DeckSlotName metadata = {"protocolName": "Gravimetric QC"} @@ -159,6 +161,8 @@ class FixtureSettings: labware_on_scale: str slot_scale: str fast_simulate: bool + retract_discontinuity: float + disc_ver_cuttoff: int @classmethod def build(cls, ctx: ProtocolContext) -> "FixtureSettings": @@ -216,6 +220,11 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: ] extra = bool(lookup_key("is_extra", csv_params)[0] == "TRUE") + retract_discontinuity = float( + lookup_key("retract_discontinuity", csv_params)[0] + ) + disc_ver_cuttoff = int(lookup_key("disc_ver_cuttoff", csv_params)[0]) + gantry_speed = int(lookup_key("gantry_speed", csv_params)[0]) volumes = { 20: volumes_to_test_20ul, 50: volumes_to_test_50ul, @@ -246,6 +255,7 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: pipette = ctx.load_instrument( f"flex_{pipette_channels}channel_{pipette_volume}", mount ) + pipette.default_speed = gantry_speed simulating = ctx.is_simulating() if simulating: pipette_tag = "pipette" @@ -352,6 +362,8 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: labware_on_scale=labware_on_scale, slot_scale=slot_scale, fast_simulate=fast_simulate, + retract_discontinuity=retract_discontinuity, + disc_ver_cuttoff=disc_ver_cuttoff, ) def validate_settings(self) -> bool: @@ -695,6 +707,41 @@ def retract_and_wait( return m_data +def _should_alter_discontinuity(fixture_settings: FixtureSettings) -> bool: + if not fixture_settings.ctx.is_simulating(): + pip_version = int(fixture_settings.pipette_tag[5:7]) + return pip_version <= fixture_settings.disc_ver_cuttoff + return False + + +def override_retract_discontinuity(fixture_settings: FixtureSettings) -> None: + """Update the Z discontinuity to a desired Setting.""" + if _should_alter_discontinuity(fixture_settings): + hw_api = fixture_settings.ctx._core.get_hardware() + if fixture_settings.pipette_channels == 96: + hw_api.config.motion_settings.max_speed_discontinuity.high_throughput[ + OT3AxisKind.Z + ] = fixture_settings.retract_discontinuity + else: + hw_api.config.motion_settings.max_speed_discontinuity.low_throughput[ + OT3AxisKind.Z + ] = fixture_settings.retract_discontinuity + + +def reset_retract_discontinuity(fixture_settings: FixtureSettings) -> None: + """Reset the Z discontinuity to default.""" + if _should_alter_discontinuity(fixture_settings): + hw_api = fixture_settings.ctx._core.get_hardware() + if fixture_settings.pipette_channels == 96: + hw_api.config.motion_settings.max_speed_discontinuity.high_throughput[ + OT3AxisKind.Z + ] = DEFAULT_MAX_SPEED_DISCONTINUITY.high_throughput[OT3AxisKind.Z] + else: + hw_api.config.motion_settings.max_speed_discontinuity.low_throughput[ + OT3AxisKind.Z + ] = DEFAULT_MAX_SPEED_DISCONTINUITY.low_throughput[OT3AxisKind.Z] + + def aspirate_with_liquid_class( fixture_settings: FixtureSettings, tip: int, @@ -707,7 +754,8 @@ def aspirate_with_liquid_class( fixture_settings.recorder.set_sample_tag( create_measurement_tag("aspirate", volume, channel, trial) ) - return fixture_settings.pipette._core.aspirate_liquid_class( # type: ignore [attr-defined] + override_retract_discontinuity(fixture_settings) + contents = fixture_settings.pipette._core.aspirate_liquid_class( # type: ignore [attr-defined] volume=volume, source=( fixture_settings.liquid_source.top(), @@ -723,6 +771,8 @@ def aspirate_with_liquid_class( ], volume_for_pipette_mode_configuration=volume, ) + reset_retract_discontinuity(fixture_settings) + return contents def dispense_with_liquid_class( @@ -739,6 +789,7 @@ def dispense_with_liquid_class( fixture_settings.recorder.set_sample_tag( create_measurement_tag("dispense", volume, channel, trial) ) + override_retract_discontinuity(fixture_settings) fixture_settings.pipette._core.dispense_liquid_class( # type: ignore [attr-defined] volume=volume, dest=( @@ -752,6 +803,7 @@ def dispense_with_liquid_class( add_final_air_gap=final_air_gap, trash_location=fixture_settings.pipette.trash_container, ) + reset_retract_discontinuity(fixture_settings) def run_blank_test( From c1a725df9c6cf938f04d6ebd20c700a995912429 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 10 Jul 2025 15:24:32 -0400 Subject: [PATCH 10/63] make it clear if we adjust the z discontinuity. --- .../gravimetric/protocol_replacement/gravimetric.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index e3a708a5fb9..41791bfbe42 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -1150,6 +1150,8 @@ def run(ctx: ProtocolContext) -> None: fixture_settings = FixtureSettings.build(ctx) try: _store_config_as_old_style(fixture_settings) + if _should_alter_discontinuity(fixture_settings): + print_info("Adjusting z discontinuity for this pipette.") _run(ctx, fixture_settings) finally: if fixture_settings.recorder is not None: From d0344846da8fa3bb25d2d52b65610bda03ad06d3 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 10 Jul 2025 15:26:05 -0400 Subject: [PATCH 11/63] add extra values to the CSVs --- .../gravimetric/protocol_replacement/1ch1000.csv | 3 +++ .../gravimetric/protocol_replacement/1ch1000_extra.csv | 3 +++ .../gravimetric/protocol_replacement/1ch50_extra.csv | 4 +++- .../protocol_replacement/1ch50_extra_with_20tip.csv | 4 +++- .../gravimetric/protocol_replacement/1ch50_with_20tip.csv | 3 +++ .../gravimetric/protocol_replacement/8ch1000.csv | 3 +++ .../gravimetric/protocol_replacement/8ch1000_extra.csv | 4 +++- .../gravimetric/protocol_replacement/8ch50.csv | 5 ++++- .../gravimetric/protocol_replacement/8ch50_extra.csv | 5 ++++- .../gravimetric/protocol_replacement/96ch200.csv | 5 ++++- 10 files changed, 33 insertions(+), 6 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv index 1ac03e6fc02..851c57c8dfa 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv @@ -21,3 +21,6 @@ blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, is_extra,FALSE,,, +retract_discontinuity,20,,, +disc_ver_cuttoff,37,,, +gantry_speed,40,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv index 927d788bd55..6606aa47e27 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv @@ -21,3 +21,6 @@ blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, is_extra,TRUE,,, +retract_discontinuity,20,,, +disc_ver_cuttoff,37,,, +gantry_speed,40,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv index fbc9a521346..31955a03df9 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv @@ -20,5 +20,7 @@ volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, - is_extra,TRUE,,, +retract_discontinuity,20,,, +disc_ver_cuttoff,36,,, +gantry_speed,40,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv index 626389cc68c..d0a35c3cffd 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv @@ -20,5 +20,7 @@ volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, - is_extra,TRUE,,, +retract_discontinuity,20,,, +disc_ver_cuttoff,36,,, +gantry_speed,40,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv index ad7629f3ffd..6ee6da2a9f6 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv @@ -21,3 +21,6 @@ blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, is_extra,FALSE,,, +retract_discontinuity,20,,, +disc_ver_cuttoff,36,,, +gantry_speed,40,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv index 689d52ff801..aca0a47bf6a 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv @@ -21,3 +21,6 @@ blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, is_extra,FALSE,,, +retract_discontinuity,20,,, +disc_ver_cuttoff,35,,, +gantry_speed,40,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv index e80ce558efc..1362b88dc42 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv @@ -20,5 +20,7 @@ volumes_to_test_1000ul,1000,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, - is_extra,TRUE,,, +retract_discontinuity,20,,, +disc_ver_cuttoff,35,,, +gantry_speed,40,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv index ffd0244a36e..497438cc66c 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv @@ -20,4 +20,7 @@ volumes_to_test_1000ul,,,,,, blank_trials,10,,,,, scale_delay,10,,,,, submerge_depth,-1.5,,,,, -is_extra,FALSE,,, +is_extra,FALSE,,,,, +retract_discontinuity,20,,,,, +disc_ver_cuttoff,35,,,,, +gantry_speed,40,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv index ebae6eb14a0..4247052f56c 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv @@ -20,4 +20,7 @@ volumes_to_test_1000ul,,,,,, blank_trials,10,,,,, scale_delay,10,,,,, submerge_depth,-1.5,,,,, -is_extra,TRUE,,, +is_extra,TRUE,,,,, +retract_discontinuity,20,,,,, +disc_ver_cuttoff,35,,,,, +gantry_speed,40,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv index a1f2c83d6c7..93f40a932b7 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv @@ -20,4 +20,7 @@ volumes_to_test_1000ul,,,,,,,,, blank_trials,10,,,,,,,, scale_delay,10,,,,,,,, submerge_depth,-1.5,,,,,,,, -is_extra,FALSE,,, +is_extra,FALSE,,,,,,,, +retract_discontinuity,20,,,,,,,, +disc_ver_cuttoff,31,,,,,,,, +gantry_speed,40,,,,,,,, From ae17ed5c08e68e0e14a10c714e6dcd7dc6646c18 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 10 Jul 2025 17:15:38 -0400 Subject: [PATCH 12/63] cleaner tip batch names --- .../gravimetric/protocol_replacement/gravimetric.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 41791bfbe42..c4c99fc9280 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -308,9 +308,15 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: test_report.set_operator(operator_name) test_report.set_version(git_description) test_report.set_firmware(fw_version) - t50_str = f"{ctx.params.cavity_50}{ctx.params.tip_batch_50}" # type: ignore [attr-defined] - t200_str = f"{ctx.params.cavity_200}{ctx.params.tip_batch_200}" # type: ignore [attr-defined] - t1000_str = f"{ctx.params.cavity_1000}{ctx.params.tip_batch_1000}" # type: ignore [attr-defined] + t50_str = f"{ctx.params.cavity_50}" # type: ignore [attr-defined] + if ctx.params.cavity_50 != "Unused": # type: ignore [attr-defined] + t50_str += f"{ctx.params.tip_batch_50}" # type: ignore [attr-defined] + t200_str = f"{ctx.params.cavity_200}" # type: ignore [attr-defined] + if ctx.params.cavity_200 != "Unused": # type: ignore [attr-defined] + t50_str += f"{ctx.params.tip_batch_200}" # type: ignore [attr-defined] + t1000_str = f"{ctx.params.cavity_1000}" # type: ignore [attr-defined] + if ctx.params.cavity_1000 != "Unused": # type: ignore [attr-defined] + t50_str += f"{ctx.params.tip_batch_1000}" # type: ignore [attr-defined] report.store_serial_numbers( test_report, robot=robot_serial, From 1f3467d5dc545ec7b8dbab3f3cfb98122cbc20cf Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 10 Jul 2025 17:16:04 -0400 Subject: [PATCH 13/63] some tests shouldn't return tips --- .../gravimetric/protocol_replacement/1ch1000.csv | 2 +- .../hardware_testing/gravimetric/protocol_replacement/1ch50.csv | 2 +- .../gravimetric/protocol_replacement/1ch50_extra.csv | 2 +- .../gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv | 2 +- .../gravimetric/protocol_replacement/1ch50_with_20tip.csv | 2 +- .../gravimetric/protocol_replacement/96ch200.csv | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv index 851c57c8dfa..26e52738730 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv @@ -4,7 +4,7 @@ mount,left,,, pipette,1000,1,, tips,50,1000,, trials,10,,, -return_tip,TRUE,,, +return_tip,FALSE,,, touch_tip,FALSE,,, liquid,water,Deionized water,#0000ff,100000 tipracks_20ul,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv index a3ae5cf1054..b9bfc11a595 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv @@ -4,7 +4,7 @@ mount,left,,, pipette,50,1,, tips,50,,, trials,10,,, -return_tip,TRUE,,, +return_tip,FALSE,,, touch_tip,FALSE,,, liquid,water,Deionized water,#0000ff,100000 tipracks_20ul,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv index 31955a03df9..710d064fcb8 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv @@ -4,7 +4,7 @@ mount,left,,, pipette,50,1,, tips,50,,, trials,10,,, -return_tip,TRUE,,, +return_tip,FALSE,,, touch_tip,FALSE,,, liquid,water,Deionized water,#0000ff,100000 tipracks_20ul,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv index d0a35c3cffd..27d89cc74d3 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv @@ -4,7 +4,7 @@ mount,left,,, pipette,50,1,, tips,20,50,, trials,10,,, -return_tip,TRUE,,, +return_tip,FALSE,,, touch_tip,FALSE,,, liquid,water,Deionized water,#0000ff,100000 tipracks_20ul,D2,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv index 6ee6da2a9f6..11017bc9841 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv @@ -4,7 +4,7 @@ mount,left,,, pipette,50,1,, tips,20,50,, trials,10,,, -return_tip,TRUE,,, +return_tip,FALSE,,, touch_tip,FALSE,,, liquid,water,Deionized water,#0000ff,100000 tipracks_20ul,D2,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv index 93f40a932b7..57ecaedc01c 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv @@ -4,7 +4,7 @@ mount,left,,,,,,,, pipette,200,96,,,,,,, tips,50,,,,,,,, trials,9,,,,,,,, -return_tip,FALSE,,,,,,,, +return_tip,TRUE,,,,,,,, touch_tip,FALSE,,,,,,,, liquid,water,Deionized water,#0000ff,100000,,,,, tipracks_20ul,,,,,,,,, From 42ff245331f1cf227b0af613728d97915fc032e5 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Fri, 11 Jul 2025 17:43:05 -0400 Subject: [PATCH 14/63] I have won the battle against offsets. --- .../protocol_replacement/gravimetric.py | 64 +++++++++++++++---- 1 file changed, 53 insertions(+), 11 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index c4c99fc9280..0ea2e8e850d 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -25,11 +25,13 @@ ) from opentrons.protocol_api.core.engine import ( transfer_components_executor as tx_comps_executor, + pipette_movement_conflict, ) from opentrons.config import infer_config_base_dir, IS_ROBOT from opentrons.config.defaults_ot3 import DEFAULT_MAX_SPEED_DISCONTINUITY -from opentrons.hardware_control.types import OT3AxisKind +from opentrons.hardware_control.types import OT3AxisKind, OT3Mount from opentrons.types import Point, DeckSlotName +from opentrons.protocol_api._nozzle_layout import NozzleLayout metadata = {"protocolName": "Gravimetric QC"} requirements = {"robotType": "Flex", "apiLevel": "2.25"} @@ -102,6 +104,10 @@ def _download_and_extract(version_str: str, base_dir: str) -> None: ) from hardware_testing.drivers import asair_sensor as AsairDriver # noqa: E402 from hardware_testing.gravimetric import helpers, report, tips, config # noqa: E402 +from hardware_testing.opentrons_api.helpers_ot3 import ( # noqa: E402 + clear_pipette_ul_per_mm, +) # noqa: E402 +from hardware_testing.gravimetric.tips import MULTI_CHANNEL_TEST_ORDER # noqa: E402 _MEASUREMENTS: List[Tuple[str, MeasurementData]] = list() @@ -184,8 +190,8 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: mount = lookup_key("mount", csv_params)[0] pipette_volume = int(lookup_key("pipette", csv_params)[0]) pipette_channels = int(lookup_key("pipette", csv_params)[1]) - if pipette_channels == 8: - channels = [0, 1, 2, 3, 4, 5, 6, 7] + if pipette_channels == 8 and not increment: + channels = MULTI_CHANNEL_TEST_ORDER else: channels = [0] tip_sizes = [int(tip) for tip in lookup_key("tips", csv_params)] @@ -257,10 +263,21 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: ) pipette.default_speed = gantry_speed simulating = ctx.is_simulating() + if pipette_channels == 8 and not increment: + pipette._core.configure_nozzle_layout( + style=NozzleLayout.SINGLE, + primary_nozzle="A1", + front_right_nozzle="A1", + back_left_nozzle="A1", + ) + # override pipette movement conflict checking 'cause we specially lay out our tipracks + pipette_movement_conflict.check_safe_for_pipette_movement = ( + helpers._override_check_safe_for_pipette_movement + ) if simulating: pipette_tag = "pipette" else: - pipette_tag = helpers._get_tag_from_pipette(pipette, False, False) + pipette_tag = helpers._get_tag_from_pipette(pipette, increment, False) run_id = create_run_id() fast_simulate = IS_ROBOT and simulating test_report = report.create_csv_test_report( @@ -430,10 +447,13 @@ def _get_tips_for_test_single_multi( for slot in fixture_settings.tips[tip] if slot not in partially_used ] - if fixture_settings.pipette_channels == 8 and not fixture_settings.increment: - return tips.get_tips_for_individual_channel_on_multi( - fixture_settings.ctx, channel, tip, fixture_settings.pipette_volume - ) + if fixture_settings.pipette_channels == 8: + if fixture_settings.increment: + return tips.get_tips_for_all_channels_on_multi(fixture_settings.ctx, tip) + else: + return tips.get_tips_for_individual_channel_on_multi( + fixture_settings.ctx, channel, tip, fixture_settings.pipette_volume + ) wells += tips.get_unused_tips(fixture_settings.ctx, tip) for rack in tipracks_lw: @@ -635,7 +655,7 @@ def _get_offset_for_channel( fixture_settings: FixtureSettings, channel: int, submerge_depth: float = 0 ) -> Coordinate: offset = Coordinate(x=0, y=0, z=submerge_depth) - if fixture_settings.channels == 8 and not fixture_settings.increment: + if fixture_settings.pipette_channels == 8 and not fixture_settings.increment: offset.y = channel * 9.0 return offset @@ -646,7 +666,16 @@ def pick_up_tip_for_channel( """Do channel offset if needed.""" offset = _get_offset_for_channel(fixture_settings, channel) point_offset = Point(x=offset.x, y=offset.y, z=offset.z) + print_info( + f"Picking up tip {tip.well_name} of rack {tip.parent.parent} with channel {channel} and offset {offset}" + ) fixture_settings.pipette.pick_up_tip(tip.top().move(point_offset)) + if fixture_settings.increment: + print_info("clearing pipette ul-per-mm table to be linear") + clear_pipette_ul_per_mm( + fixture_settings.ctx._core.get_hardware()._obj_to_adapt, # type: ignore[arg-type] + OT3Mount.LEFT if fixture_settings.mount == "left" else OT3Mount.RIGHT, + ) def _update_environment_first_last_min_max(test_report: report.CSVReport) -> None: @@ -775,7 +804,7 @@ def aspirate_with_liquid_class( air_gap=0, ) ], - volume_for_pipette_mode_configuration=volume, + volume_for_pipette_mode_configuration=None, ) reset_retract_discontinuity(fixture_settings) return contents @@ -911,8 +940,12 @@ def run_one_test( offset = _get_offset_for_channel( fixture_settings, channel, fixture_settings.submerge_depth ) + transfer_properties.aspirate.submerge.start_position.offset = offset + transfer_properties.dispense.submerge.start_position.offset = offset transfer_properties.aspirate.aspirate_position.offset = offset transfer_properties.dispense.dispense_position.offset = offset + transfer_properties.aspirate.retract.end_position.offset = offset + transfer_properties.dispense.retract.end_position.offset = offset transfer_properties.aspirate.aspirate_position.position_reference = ( PositionReference.LIQUID_MENISCUS ) @@ -926,7 +959,10 @@ def run_one_test( ) pick_up_tip_for_channel(fixture_settings, tip_well, channel) fixture_settings.pipette.configure_for_volume(volume) - fixture_settings.pipette.move_to(fixture_settings.liquid_source.top(20)) + fixture_settings.pipette.prepare_to_aspirate() + fixture_settings.pipette.move_to( + fixture_settings.liquid_source.top(20).move(Point(0, offset.y, 0)) + ) fixture_settings.pipette._retract() print_info("Pre-aspirate read.") pre_aspirate = retract_and_wait( @@ -1151,6 +1187,10 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: ) +def _adjust_settings_for_increment(fixture_settings: FixtureSettings) -> None: + helpers._override_software_supports_high_volumes() + + def run(ctx: ProtocolContext) -> None: """Pick up, aspirate, and dispense one trial and write it to the report.""" fixture_settings = FixtureSettings.build(ctx) @@ -1158,6 +1198,8 @@ def run(ctx: ProtocolContext) -> None: _store_config_as_old_style(fixture_settings) if _should_alter_discontinuity(fixture_settings): print_info("Adjusting z discontinuity for this pipette.") + if fixture_settings.increment: + _adjust_settings_for_increment(fixture_settings) _run(ctx, fixture_settings) finally: if fixture_settings.recorder is not None: From 04004ea74d2b1468f3763415612135594b3b60e3 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Fri, 11 Jul 2025 18:03:58 -0400 Subject: [PATCH 15/63] some tweaks for increment. --- .../gravimetric/protocol_replacement/gravimetric.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 0ea2e8e850d..5ad9ccd1c2e 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -32,6 +32,7 @@ from opentrons.hardware_control.types import OT3AxisKind, OT3Mount from opentrons.types import Point, DeckSlotName from opentrons.protocol_api._nozzle_layout import NozzleLayout +from opentrons.protocols.advanced_control.transfers import common as tx_ctl_lib metadata = {"protocolName": "Gravimetric QC"} requirements = {"robotType": "Flex", "apiLevel": "2.25"} @@ -670,7 +671,7 @@ def pick_up_tip_for_channel( f"Picking up tip {tip.well_name} of rack {tip.parent.parent} with channel {channel} and offset {offset}" ) fixture_settings.pipette.pick_up_tip(tip.top().move(point_offset)) - if fixture_settings.increment: + if fixture_settings.increment and not fixture_settings.ctx.is_simulating(): print_info("clearing pipette ul-per-mm table to be linear") clear_pipette_ul_per_mm( fixture_settings.ctx._core.get_hardware()._obj_to_adapt, # type: ignore[arg-type] @@ -1187,8 +1188,18 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: ) +def _override_check( + aspirate_volume: float, + air_gap: float, + max_volume: float, + current_volume: float, +) -> None: + pass + + def _adjust_settings_for_increment(fixture_settings: FixtureSettings) -> None: helpers._override_software_supports_high_volumes() + tx_ctl_lib.check_valid_liquid_class_volume_parameters = _override_check def run(ctx: ProtocolContext) -> None: From 6726a161ac325ad0434b94d8fff136f7e8cb4c87 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 15 Jul 2025 14:20:54 -0400 Subject: [PATCH 16/63] update the 8ch50 test csv and add increment test csvs. --- .../1ch50_increment_50ul.csv | 26 +++++++++++++++++++ .../8ch1000_increment_1000ul.csv | 26 +++++++++++++++++++ .../8ch1000_increment_200ul.csv | 26 +++++++++++++++++++ .../8ch1000_increment_50ul.csv | 26 +++++++++++++++++++ .../protocol_replacement/8ch50.csv | 4 +-- 5 files changed, 106 insertions(+), 2 deletions(-) create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv new file mode 100644 index 00000000000..f141b96ccb8 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p50-single-increment,,,,,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,,,,,, +pipette,50,1,,,,,,,,,,,,,,,,,, +tips,50,,,,,,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,,,,,,, +return_tip,FALSE,,,,,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,,,,,, +tipracks_50ul,D3,,,,,,,,,,,,,,,,,,, +tipracks_200ul,,,,,,,,,,,,,,,,,,,, +tipracks_1000ul,,,,,,,,,,,,,,,,,,,, +labware_on_scale,radwag_pipette_calibration_vial,A1,,,,,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,, +volumes_to_test_50ul,1.1,1.2,1.37,1.7,2.04,2.66,3.47,3.96,4.35,4.8,5.16,5.89,6.73,8.2,10.02,11.1,14.91,28.94,53.5,56.16 +volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,, +volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,,,,,, +disc_ver_cuttoff,36,,,,,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv new file mode 100644 index 00000000000..d5992597752 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p1000-multi-increment,,,,,,,,,,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,,,,,,,,,,, +pipette,1000,8,,,,,,,,,,,,,,,,,,,,,,, +tips,1000,,,,,,,,,,,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,,,,,,,,,,,, +return_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_50ul,,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_200ul,,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_1000ul,D2,D3,C2,C3,B1,B2,B3,,,,,,,,,,,,,,,,,, +labware_on_scale,usascientific_12_reservoir_22ml,A1,,,,,,,,,,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_1000ul,2,2.61,3.39,4.42,5.76,7.5,9.77,12.72,16.57,21.58,28.11,36.61,47.69,62.11,80.91,105.38,137.26,178.78,232.87,303.31,385.07,514.58,670.25,873,1137.1 +blank_trials,10,,,,,,,,,,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,,,,,,,,,,, +disc_ver_cuttoff,35,,,,,,,,,,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv new file mode 100644 index 00000000000..7931c619d49 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p1000-multi,,,,,,,,,,,,,,,,,,,,,,,, +increment,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,,,,,,,,,,, +pipette,1000,8,,,,,,,,,,,,,,,,,,,,,,, +tips,200,,,,,,,,,,,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,,,,,,,,,,,, +return_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_50ul,,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_200ul,D2,D3,C2,C3,B1,B2,B3,,,,,,,,,,,,,,,,,, +tipracks_1000ul,,,,,,,,,,,,,,,,,,,,,,,,, +labware_on_scale,usascientific_12_reservoir_22ml,A1,,,,,,,,,,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_200ul,1.5,1.85,2.27,2.8,3.44,4.24,5.22,6.43,7.91,9.74,11.99,14.76,18.17,22.36,27.53,33.83,41.72,51.35,63.22,77.82,95.8,117.93,145.18,178.71,220 +volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,,,,,,,,,,, +disc_ver_cuttoff,35,,,,,,,,,,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv new file mode 100644 index 00000000000..51aa4474733 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p1000-multi-increment,,,,,,,,,,,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,,,,,,,,,,,, +pipette,1000,8,,,,,,,,,,,,,,,,,,,,,,,, +tips,50,,,,,,,,,,,,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,,,,,,,,,,,,, +return_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_50ul,D2,D3,C2,C3,B1,B2,B3,,,,,,,,,,,,,,,,,,, +tipracks_200ul,,,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_1000ul,,,,,,,,,,,,,,,,,,,,,,,,,, +labware_on_scale,usascientific_12_reservoir_22ml,A1,,,,,,,,,,,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_50ul,1,1.25,1.54,1.91,2.37,2.94,3.64,3.9,4.2,4.52,4.8,5.1,5.61,5.9,6.2,6.95,8.63,10.7,13.28,16.47,20.43,25.34,31.43,38.99,48.37,60 +volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,,,,,,,,,,,, +disc_ver_cuttoff,35,,,,,,,,,,,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv index 497438cc66c..d38a9219d6c 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv @@ -3,12 +3,12 @@ increment,FALSE,,,,, mount,left,,,,, pipette,50,8,,,, tips,50,,,,, -trials,1,,,,, +trials,10,,,,, return_tip,FALSE,,,,, touch_tip,FALSE,,,,, liquid,water,Deionized water,#0000ff,100000,, tipracks_20ul,,,,,, -tipracks_50ul,D2,D3,C2,C3,B2,B3 +tipracks_50ul,D2,D3,B2,B3,, tipracks_200ul,,,,,, tipracks_1000ul,,,,,, labware_on_scale,radwag_pipette_calibration_vial,A1,,,, From 60c2055099a4f3a2cba91810195e7e13a8ced327 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 15 Jul 2025 14:21:55 -0400 Subject: [PATCH 17/63] configure for volume on blank trials due to low volume default settings being required. --- .../gravimetric/protocol_replacement/gravimetric.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 5ad9ccd1c2e..711d4c88ef9 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -851,6 +851,9 @@ def run_blank_test( ) -> List[MeasurementData]: """Run a "blank" trial to measure the evaporation.""" channel = 0 + print_info(f"Running blank trial {trial} volume {volume}") + fixture_settings.pipette.configure_for_volume(volume) + fixture_settings.pipette.prepare_to_aspirate() # this is the next tip we're gonna use we just need the uri tiprack_uri = tip_well.parent.uri transfer_properties = fixture_settings.liquid_class.get_for( @@ -934,6 +937,7 @@ def run_one_test( last_measurement: MeasurementData, ) -> List[MeasurementData]: """Run one trial of one test.""" + print_info(f"Running trial {trial} volume {volume} channel {channel} tip {tip}") tiprack_uri = tip_well.parent.uri transfer_properties = fixture_settings.liquid_class.get_for( fixture_settings.pipette.name, tip_rack=tiprack_uri From 45ee1ebc4962704604cad2d55b21ea497328e25d Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 15 Jul 2025 14:22:10 -0400 Subject: [PATCH 18/63] store encoder data --- .../protocol_replacement/gravimetric.py | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 711d4c88ef9..975fcf1bab8 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -29,7 +29,7 @@ ) from opentrons.config import infer_config_base_dir, IS_ROBOT from opentrons.config.defaults_ot3 import DEFAULT_MAX_SPEED_DISCONTINUITY -from opentrons.hardware_control.types import OT3AxisKind, OT3Mount +from opentrons.hardware_control.types import OT3AxisKind, OT3Mount, Axis from opentrons.types import Point, DeckSlotName from opentrons.protocol_api._nozzle_layout import NozzleLayout from opentrons.protocols.advanced_control.transfers import common as tx_ctl_lib @@ -965,6 +965,11 @@ def run_one_test( pick_up_tip_for_channel(fixture_settings, tip_well, channel) fixture_settings.pipette.configure_for_volume(volume) fixture_settings.pipette.prepare_to_aspirate() + hw_api = fixture_settings.ctx._core.get_hardware() + hw_mount = OT3Mount.LEFT if fixture_settings.mount == "left" else OT3Mount.RIGHT + pip_ax = Axis.of_main_tool_actuator(hw_mount) + estimate_bottom = hw_api.current_position_ot3(hw_mount)[pip_ax] + encoder_bottom = hw_api.encoder_current_position_ot3(hw_mount)[pip_ax] fixture_settings.pipette.move_to( fixture_settings.liquid_source.top(20).move(Point(0, offset.y, 0)) ) @@ -981,6 +986,8 @@ def run_one_test( post_aspirate = retract_and_wait( fixture_settings, MeasurementType.ASPIRATE, tip, volume, trial, channel=channel ) + estimate_aspirated = hw_api.current_position_ot3(hw_mount)[pip_ax] + encoder_aspirated = hw_api.encoder_current_position_ot3(hw_mount)[pip_ax] print_info("dispensing.") dispense_with_liquid_class( fixture_settings, tip, volume, trial, channel, transfer_properties, contents @@ -990,6 +997,16 @@ def run_one_test( fixture_settings, MeasurementType.DISPENSE, tip, volume, trial, channel=channel ) remove_tip(fixture_settings) + report.store_encoder( + fixture_settings.test_report, + volume, + channel, + trial, + estimate_bottom, + encoder_bottom, + estimate_aspirated, + encoder_aspirated, + ) return [pre_aspirate, post_aspirate, post_dispense] From ff52ef40ac76ac2f26e77ae54312cac20f54fc5d Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 15 Jul 2025 14:22:25 -0400 Subject: [PATCH 19/63] fix the storing of volume information. --- .../protocol_replacement/gravimetric.py | 127 +++++++++++------- 1 file changed, 78 insertions(+), 49 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 975fcf1bab8..a4dadb76473 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -1077,12 +1077,14 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: trial_disp_dict: Dict[int, List[float]] = { t: [] for t in range(fixture_settings.trials) } - actual_asp_list_channel: List[float] = [] - actual_disp_list_channel: List[float] = [] + actual_asp_list_all = [] + actual_disp_list_all = [] measurements[volume] = [] for channel in fixture_settings.channels: channel_aspriate_dict: Dict[int, List[float]] tips = _get_tips_for_test(fixture_settings, tip, False, channel) + actual_asp_list_channel: List[float] = [] + actual_disp_list_channel: List[float] = [] for trial in range(fixture_settings.trials): print_header( f"Running trial {trial} for channel {channel} {volume}ul with T{tip}" @@ -1133,53 +1135,56 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: trial_asp_dict[trial].append(asp_with_evap) trial_disp_dict[trial].append(disp_with_evap) last_measurement = measurements[volume][-1][-1] - aspirate_average, aspirate_cv, aspirate_d = helpers._calculate_stats( - actual_asp_list_channel, volume - ) - dispense_average, dispense_cv, dispense_d = helpers._calculate_stats( - actual_disp_list_channel, volume - ) - aspirate_data_list = [elem[1] for elem in measurements[volume]] - dispense_data_list = [elem[2] for elem in measurements[volume]] - # Average Celsius - aspirate_celsius_avg = sum( - a_data.environment.celsius_pipette for a_data in aspirate_data_list - ) / len(aspirate_data_list) - dispense_celsius_avg = sum( - d_data.environment.celsius_pipette for d_data in dispense_data_list - ) / len(dispense_data_list) - # Average humidity - aspirate_humidity_avg = sum( - a_data.environment.humidity_pipette for a_data in aspirate_data_list - ) / len(aspirate_data_list) - dispense_humidity_avg = sum( - d_data.environment.humidity_pipette for d_data in dispense_data_list - ) / len(dispense_data_list) - - report.store_volume_per_channel( - report=fixture_settings.test_report, - mode="aspirate", - volume=volume, - channel=channel, - average=aspirate_average, - cv=aspirate_cv, - d=aspirate_d, - celsius=aspirate_celsius_avg, - humidity=aspirate_humidity_avg, - flag="isolated" if fixture_settings.isolate_volumes else "", - ) - report.store_volume_per_channel( - report=fixture_settings.test_report, - mode="dispense", - volume=volume, - channel=channel, - average=dispense_average, - cv=dispense_cv, - d=dispense_d, - celsius=dispense_celsius_avg, - humidity=dispense_humidity_avg, - flag="isolated" if fixture_settings.isolate_volumes else "", - ) + aspirate_average, aspirate_cv, aspirate_d = helpers._calculate_stats( + actual_asp_list_channel, volume + ) + dispense_average, dispense_cv, dispense_d = helpers._calculate_stats( + actual_disp_list_channel, volume + ) + aspirate_data_list = [elem[1] for elem in measurements[volume]] + dispense_data_list = [elem[2] for elem in measurements[volume]] + # Average Celsius + aspirate_celsius_avg = sum( + a_data.environment.celsius_pipette for a_data in aspirate_data_list + ) / len(aspirate_data_list) + dispense_celsius_avg = sum( + d_data.environment.celsius_pipette for d_data in dispense_data_list + ) / len(dispense_data_list) + # Average humidity + aspirate_humidity_avg = sum( + a_data.environment.humidity_pipette for a_data in aspirate_data_list + ) / len(aspirate_data_list) + dispense_humidity_avg = sum( + d_data.environment.humidity_pipette for d_data in dispense_data_list + ) / len(dispense_data_list) + + report.store_volume_per_channel( + report=fixture_settings.test_report, + mode="aspirate", + volume=volume, + channel=channel, + average=aspirate_average, + cv=aspirate_cv, + d=aspirate_d, + celsius=aspirate_celsius_avg, + humidity=aspirate_humidity_avg, + flag="isolated" if fixture_settings.isolate_volumes else "", + ) + report.store_volume_per_channel( + report=fixture_settings.test_report, + mode="dispense", + volume=volume, + channel=channel, + average=dispense_average, + cv=dispense_cv, + d=dispense_d, + celsius=dispense_celsius_avg, + humidity=dispense_humidity_avg, + flag="isolated" if fixture_settings.isolate_volumes else "", + ) + + actual_asp_list_all.extend(actual_asp_list_channel) + actual_disp_list_all.extend(actual_disp_list_channel) for trial in range(fixture_settings.trials): aspirate_average, aspirate_cv, aspirate_d = helpers._calculate_stats( trial_asp_dict[trial], volume @@ -1207,6 +1212,30 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: d=dispense_d, flag="isolated" if fixture_settings.isolate_volumes else "", ) + aspirate_average, aspirate_cv, aspirate_d = helpers._calculate_stats( + actual_asp_list_all, volume + ) + dispense_average, dispense_cv, dispense_d = helpers._calculate_stats( + actual_disp_list_all, volume + ) + report.store_volume_all( + report=fixture_settings.test_report, + mode="aspirate", + volume=volume, + average=aspirate_average, + cv=aspirate_cv, + d=aspirate_d, + flag="", + ) + report.store_volume_all( + report=fixture_settings.test_report, + mode="dispense", + volume=volume, + average=dispense_average, + cv=dispense_cv, + d=dispense_d, + flag="", + ) def _override_check( From df67acecb6de0f185249c33bdc2042f5836e21a5 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 15 Jul 2025 16:26:29 -0400 Subject: [PATCH 20/63] computer inter trial lost liquid and keep track of it. --- .../gravimetric/protocol_replacement/gravimetric.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index a4dadb76473..5ce860209b1 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -978,6 +978,16 @@ def run_one_test( pre_aspirate = retract_and_wait( fixture_settings, MeasurementType.INIT, tip, volume, trial, channel=channel ) + liq = SupportedLiquid.from_string(fixture_settings.liquid_name) + volume_lost_since_last_trial = calculate_change_in_volume( + last_measurement, pre_aspirate, liq + ) + if not fixture_settings.ctx.is_simulating(): + fixture_settings.liquid_source.load_liquid( + fixture_settings.liquid, + fixture_settings.liquid_source.current_liquid_volume() # type: ignore[arg-type] + - volume_lost_since_last_trial, + ) print_info("aspirating") contents = aspirate_with_liquid_class( fixture_settings, tip, volume, trial, channel, transfer_properties From d72aa13ebe830315068dbf56c614a80d5bc2edab Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 15 Jul 2025 16:53:15 -0400 Subject: [PATCH 21/63] reduce movement. --- .../gravimetric/protocol_replacement/gravimetric.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 5ce860209b1..1f69ca17614 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -30,7 +30,7 @@ from opentrons.config import infer_config_base_dir, IS_ROBOT from opentrons.config.defaults_ot3 import DEFAULT_MAX_SPEED_DISCONTINUITY from opentrons.hardware_control.types import OT3AxisKind, OT3Mount, Axis -from opentrons.types import Point, DeckSlotName +from opentrons.types import Point, DeckSlotName, Location from opentrons.protocol_api._nozzle_layout import NozzleLayout from opentrons.protocols.advanced_control.transfers import common as tx_ctl_lib @@ -970,10 +970,13 @@ def run_one_test( pip_ax = Axis.of_main_tool_actuator(hw_mount) estimate_bottom = hw_api.current_position_ot3(hw_mount)[pip_ax] encoder_bottom = hw_api.encoder_current_position_ot3(hw_mount)[pip_ax] - fixture_settings.pipette.move_to( - fixture_settings.liquid_source.top(20).move(Point(0, offset.y, 0)) + well_top = fixture_settings.liquid_source.top().point + above_scale = Point( + well_top.x, + well_top.y + offset.y, + fixture_settings.pipette._get_last_location_by_api_version().point.z, # type: ignore [union-attr] ) - fixture_settings.pipette._retract() + fixture_settings.pipette.move_to(Location(above_scale, None)) print_info("Pre-aspirate read.") pre_aspirate = retract_and_wait( fixture_settings, MeasurementType.INIT, tip, volume, trial, channel=channel From 37ade4cdf628f024f993aa6f07100288d0f4e6c4 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 15 Jul 2025 16:54:25 -0400 Subject: [PATCH 22/63] add some more increment tests. --- .../1ch1000_increment_1000ul.csv | 26 +++++++++++++++++++ .../1ch1000_increment_200ul.csv | 26 +++++++++++++++++++ .../1ch1000_increment_50ul.csv | 26 +++++++++++++++++++ 3 files changed, 78 insertions(+) create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv new file mode 100644 index 00000000000..e0616d03f80 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p1000-single,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,, +pipette,1000,1,,,,,,,,,,,,,, +tips,1000,,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,,, +return_tip,FALSE,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,, +tipracks_50ul,,,,,,,,,,,,,,,, +tipracks_200ul,,,,,,,,,,,,,,,, +tipracks_1000ul,D2,,,,,,,,,,,,,,, +labware_on_scale,radwag_pipette_calibration_vial,A1,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,, +volumes_to_test_50ul,,,,,,,,,,,,,,,, +volumes_to_test_200ul,,,,,,,,,,,,,,,, +volumes_to_test_1000ul,3,4,5,7.27,12.8,15.37,18.53,56.95,99.84,120.38,254.48,369.99,446.13,648.65,1030,1137.16 +blank_trials,10,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,, +disc_ver_cuttoff,37,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv new file mode 100644 index 00000000000..066b40989de --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p1000-single,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,, +pipette,1000,1,,,,,,,,,,,,, +tips,200,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,, +return_tip,FALSE,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,, +tipracks_50ul,,,,,,,,,,,,,,, +tipracks_200ul,D2,,,,,,,,,,,,,, +tipracks_1000ul,,,,,,,,,,,,,,, +labware_on_scale,radwag_pipette_calibration_vial,A1,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,, +volumes_to_test_50ul,,,,,,,,,,,,,,, +volumes_to_test_200ul,3.25,3.6,4.4,6.22,7.31,8.6,11.89,13.99,22.75,36.99,56,97.83,159.09,187.08,220 +volumes_to_test_1000ul,,,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,, +disc_ver_cuttoff,37,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv new file mode 100644 index 00000000000..00272fe037c --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p1000-single,,,,,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,,,,,, +pipette,1000,1,,,,,,,,,,,,,,,,,, +tips,50,,,,,,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,,,,,,, +return_tip,FALSE,,,,,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,,,,,, +tipracks_50ul,D2,,,,,,,,,,,,,,,,,,, +tipracks_200ul,,,,,,,,,,,,,,,,,,,, +tipracks_1000ul,,,,,,,,,,,,,,,,,,,, +labware_on_scale,radwag_pipette_calibration_vial,A1,,,,,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,, +volumes_to_test_50ul,2.53,2.7,3,3.6,4.04,4.55,5.11,5.5,5.75,6,6.46,7.27,8.17,11,12.9,16.51,26.4,33.38,53.36,60 +volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,, +volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,,,,,, +disc_ver_cuttoff,37,,,,,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,,,,,, From 2b863b597563e3aff61903d0a163c41f45a7cf5a Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 17 Jul 2025 12:09:31 -0400 Subject: [PATCH 23/63] add shared-data for the 3_2 p200_96 and update the tip overlap values. --- .../general/ninety_six_channel/p200/3_1.json | 126 +++++++++--------- .../general/ninety_six_channel/p200/3_2.json | 126 +++++++++--------- 2 files changed, 126 insertions(+), 126 deletions(-) diff --git a/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_1.json b/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_1.json index 4ce934023ce..47518fee141 100644 --- a/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_1.json +++ b/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_1.json @@ -159,10 +159,10 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.092, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.077, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.077, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.092 } } }, @@ -178,8 +178,8 @@ }, "v1": { "default": 9.981, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981 + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.077, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.077 } } }, @@ -195,8 +195,8 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.021, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.021 } } } @@ -216,10 +216,10 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.138, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.138, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.132, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.132 } } }, @@ -235,8 +235,8 @@ }, "v1": { "default": 9.981, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981 + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.132, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.132 } } }, @@ -252,8 +252,8 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.138, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.138 } } } @@ -273,10 +273,10 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.875, + "opentrons/opentrons_flex_96_tiprack_200ul/1":9.979, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.979, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.857 } } }, @@ -330,10 +330,10 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.007, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.090, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.090, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.007 } } }, @@ -349,8 +349,8 @@ }, "v1": { "default": 9.981, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981 + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.090, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.090 } } }, @@ -366,8 +366,8 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.007, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.007 } } } @@ -391,11 +391,11 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 }, "v3": { - "default": 9.49, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.52 + "default": 9.491, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.491, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.552, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.552, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.491 } } }, @@ -414,9 +414,9 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 }, "v3": { - "default": 9.49, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.49 + "default": 9.552, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.552, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.552 } } }, @@ -435,9 +435,9 @@ "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.16 }, "v3": { - "default": 9.52, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.52 + "default": 9.491, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.491, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.491 } } } @@ -461,11 +461,11 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 }, "v3": { - "default": 9.49, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.52 + "default": 9.562, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.491, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.562, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.562, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.491 } } }, @@ -484,9 +484,9 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 }, "v3": { - "default": 9.49, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.49 + "default": 9.562, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.562, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.562 } } }, @@ -505,9 +505,9 @@ "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.16 }, "v3": { - "default": 9.52, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.52 + "default": 9.491, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.491, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.491 } } } @@ -524,9 +524,9 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.5 }, "v1": { - "default": 9.379, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.379, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.6 + "default": 9.275, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.155, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.275 } } } @@ -542,9 +542,9 @@ "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.5 }, "v1": { - "default": 9.401, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.401, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.415 + "default": 9.407, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.132, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.407 } } } @@ -568,9 +568,9 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.5 }, "v1": { - "default": 10.5, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.16, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 + "default": 9.58, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.58 } } }, @@ -584,8 +584,8 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.5 }, "v1": { - "default": 10.5, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 + "default": 9.58, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.58 } } }, @@ -599,8 +599,8 @@ "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.5 }, "v1": { - "default": 10.5, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.16 + "default": 9.52, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52 } } } diff --git a/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_2.json b/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_2.json index 4ce934023ce..47518fee141 100644 --- a/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_2.json +++ b/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_2.json @@ -159,10 +159,10 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.092, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.077, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.077, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.092 } } }, @@ -178,8 +178,8 @@ }, "v1": { "default": 9.981, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981 + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.077, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.077 } } }, @@ -195,8 +195,8 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.021, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.021 } } } @@ -216,10 +216,10 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.138, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.138, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.132, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.132 } } }, @@ -235,8 +235,8 @@ }, "v1": { "default": 9.981, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981 + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.132, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.132 } } }, @@ -252,8 +252,8 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.138, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.138 } } } @@ -273,10 +273,10 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.875, + "opentrons/opentrons_flex_96_tiprack_200ul/1":9.979, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.979, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.857 } } }, @@ -330,10 +330,10 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.007, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.090, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.090, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.007 } } }, @@ -349,8 +349,8 @@ }, "v1": { "default": 9.981, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.981, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.981 + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.090, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.090 } } }, @@ -366,8 +366,8 @@ }, "v1": { "default": 9.884, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.884, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.884 + "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.007, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.007 } } } @@ -391,11 +391,11 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 }, "v3": { - "default": 9.49, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.52 + "default": 9.491, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.491, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.552, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.552, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.491 } } }, @@ -414,9 +414,9 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 }, "v3": { - "default": 9.49, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.49 + "default": 9.552, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.552, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.552 } } }, @@ -435,9 +435,9 @@ "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.16 }, "v3": { - "default": 9.52, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.52 + "default": 9.491, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.491, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.491 } } } @@ -461,11 +461,11 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 }, "v3": { - "default": 9.49, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.52 + "default": 9.562, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.491, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.562, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.562, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.491 } } }, @@ -484,9 +484,9 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 }, "v3": { - "default": 9.49, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.49, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.49 + "default": 9.562, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.562, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.562 } } }, @@ -505,9 +505,9 @@ "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.16 }, "v3": { - "default": 9.52, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52, - "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.52 + "default": 9.491, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.491, + "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.491 } } } @@ -524,9 +524,9 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.5 }, "v1": { - "default": 9.379, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.379, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.6 + "default": 9.275, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.155, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.275 } } } @@ -542,9 +542,9 @@ "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.5 }, "v1": { - "default": 9.401, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.401, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.415 + "default": 9.407, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.132, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.407 } } } @@ -568,9 +568,9 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.5 }, "v1": { - "default": 10.5, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.16, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 + "default": 9.58, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.58 } } }, @@ -584,8 +584,8 @@ "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.5 }, "v1": { - "default": 10.5, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.74 + "default": 9.58, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.58 } } }, @@ -599,8 +599,8 @@ "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.5 }, "v1": { - "default": 10.5, - "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.16 + "default": 9.52, + "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.52 } } } From 376f9bfc340ec6e878609e1768c83c8825d45a05 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 17 Jul 2025 15:01:52 -0400 Subject: [PATCH 24/63] flesh out the last csvs --- .../1ch50_increment_50ul_lv.csv | 26 +++++++++++++++++++ .../1ch50_extra_with_20tip.csv | 0 .../{ => 20ul_tips}/1ch50_with_20tip.csv | 0 .../8ch50_increment_50ul.csv | 26 +++++++++++++++++++ .../8ch50_increment_50ul_lv.csv | 26 +++++++++++++++++++ .../96ch1000_increment_1000ul.csv | 26 +++++++++++++++++++ .../96ch1000_increment_200ul.csv | 26 +++++++++++++++++++ .../96ch1000_increment_50ul.csv | 26 +++++++++++++++++++ .../protocol_replacement/96ch200.csv | 8 +++--- .../96ch200_increment_200ul.csv | 26 +++++++++++++++++++ .../96ch200_increment_50ul.csv | 26 +++++++++++++++++++ 11 files changed, 212 insertions(+), 4 deletions(-) create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv rename hardware-testing/hardware_testing/gravimetric/protocol_replacement/{ => 20ul_tips}/1ch50_extra_with_20tip.csv (100%) rename hardware-testing/hardware_testing/gravimetric/protocol_replacement/{ => 20ul_tips}/1ch50_with_20tip.csv (100%) create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv new file mode 100644 index 00000000000..77ce07fe8f6 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p50-single-increment,,,,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,,,,, +pipette,50,1,,,,,,,,,,,,,,,,, +tips,50,,,,,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,,,,,, +return_tip,FALSE,,,,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,,,,, +tipracks_50ul,D3,,,,,,,,,,,,,,,,,, +tipracks_200ul,,,,,,,,,,,,,,,,,,, +tipracks_1000ul,,,,,,,,,,,,,,,,,,, +labware_on_scale,radwag_pipette_calibration_vial,A1,,,,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,,,,, +volumes_to_test_50ul,1.1,1.2,1.37,1.7,2.04,2.66,3.47,3.96,4.35,4.8,5.16,5.89,6.73,8.2,10.02,11.1,14.91,28.94,48.27 +volumes_to_test_200ul,,,,,,,,,,,,,,,,,,, +volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,,,,, +disc_ver_cuttoff,36,,,,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/20ul_tips/1ch50_extra_with_20tip.csv similarity index 100% rename from hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra_with_20tip.csv rename to hardware-testing/hardware_testing/gravimetric/protocol_replacement/20ul_tips/1ch50_extra_with_20tip.csv diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/20ul_tips/1ch50_with_20tip.csv similarity index 100% rename from hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_with_20tip.csv rename to hardware-testing/hardware_testing/gravimetric/protocol_replacement/20ul_tips/1ch50_with_20tip.csv diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv new file mode 100644 index 00000000000..dad33e9e077 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p50-multi,,,,,,,,,,,,,,,,,,,,,,,, +increment,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,,,,,,,,,,, +pipette,50,8,,,,,,,,,,,,,,,,,,,,,,, +tips,50,,,,,,,,,,,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,,,,,,,,,,,, +return_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_50ul,D2,D3,C2,C3,B1,B2,B3,A1,A2,,,,,,,,,,,,,,,, +tipracks_200ul,,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_1000ul,,,,,,,,,,,,,,,,,,,,,,,,, +labware_on_scale,usascientific_12_reservoir_22ml,A1,,,,,,,,,,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_50ul,0.8,1,1.25,1.57,1.96,2.45,3.06,3.3,3.6,3.83,4,4.3,4.6,4.79,5.3,5.99,7.49,9.37,11.72,18.34,22.93,28.68,35.88,44.87,56.12 +volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,,,,,,,,,,, +disc_ver_cuttoff,35,,,,,,,,,,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv new file mode 100644 index 00000000000..8bec79fba14 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p50-multi,,,,,,,,,,,,,,,,,,,,,,, +increment,FALSE,,,,,,,,,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,,,,,,,,,, +pipette,50,8,,,,,,,,,,,,,,,,,,,,,, +tips,50,,,,,,,,,,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,,,,,,,,,,, +return_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_50ul,D2,D3,C2,C3,B1,B2,B3,A1,A2,,,,,,,,,,,,,,, +tipracks_200ul,,,,,,,,,,,,,,,,,,,,,,,, +tipracks_1000ul,,,,,,,,,,,,,,,,,,,,,,,, +labware_on_scale,usascientific_12_reservoir_22ml,A1,,,,,,,,,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_50ul,0.8,1,1.25,1.57,1.96,2.45,3.06,3.3,3.6,3.83,4,4.3,4.6,4.79,5.3,5.99,7.49,9.37,11.72,18.34,22.93,28.68,35.88,48.27 +volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,, +volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,,,,,,,,,, +disc_ver_cuttoff,35,,,,,,,,,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv new file mode 100644 index 00000000000..510bfc24558 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p1000-96,,,,,,,,,,,,,,,,, +increment,FALSE,,,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,,,, +pipette,1000,96,,,,,,,,,,,,,,,, +tips,200,,,,,,,,,,,,,,,,, +trials,3,,,,,,,,,,,,,,,,, +return_tip,TRUE,,,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,,,, +tipracks_50ul,,,,,,,,,,,,,,,,,, +tipracks_200ul,,,,,,,,,,,,,,,,,, +tipracks_1000ul,D2,D3,C2,C3,B1,B2,B3,A1,A2,,,,,,,,, +labware_on_scale,nest_1_reservoir_195ml,A1,,,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,,,, +volumes_to_test_50ul,,,,,,,,,,,,,,,,,, +volumes_to_test_200ul,,,,,,,,,,,,,,,,,, +volumes_to_test_1000ul,3,5,7,10,15,20,50,100,120,200,320,450,650,850,1000,1030,1050,1075 +blank_trials,10,,,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,,,, +disc_ver_cuttoff,36,,,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv new file mode 100644 index 00000000000..40dc1d6f223 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p1000-96,,,,,,,,,,, +increment,FALSE,,,,,,,,,,, +mount,left,,,,,,,,,,, +pipette,1000,96,,,,,,,,,, +tips,200,,,,,,,,,,, +trials,3,,,,,,,,,,, +return_tip,TRUE,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,, +tipracks_20ul,,,,,,,,,,,, +tipracks_50ul,,,,,,,,,,,, +tipracks_200ul,D2,D3,C2,C3,B1,B2,B3,A1,A2,,, +tipracks_1000ul,,,,,,,,,,,, +labware_on_scale,nest_1_reservoir_195ml,A1,,,,,,,,,, +slot_scale,C1,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,, +volumes_to_test_50ul,,,,,,,,,,,, +volumes_to_test_200ul,2,3,4,5,6,7,8,9,10,50,100,220 +volumes_to_test_1000ul,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,, +scale_delay,10,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,, +disc_ver_cuttoff,36,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv new file mode 100644 index 00000000000..d81831d27f5 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p1000-96,,,,,,,,,,,, +increment,FALSE,,,,,,,,,,,, +mount,left,,,,,,,,,,,, +pipette,1000,96,,,,,,,,,,, +tips,50,,,,,,,,,,,, +trials,3,,,,,,,,,,,, +return_tip,TRUE,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,, +tipracks_50ul,D2,D3,C2,C3,B1,B2,B3,A1,A2,,,, +tipracks_200ul,,,,,,,,,,,,, +tipracks_1000ul,,,,,,,,,,,,, +labware_on_scale,nest_1_reservoir_195ml,A1,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,, +volumes_to_test_50ul,2,3,4,5,6,7,8,9,10,15,25,40,60 +volumes_to_test_200ul,,,,,,,,,,,,, +volumes_to_test_1000ul,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,, +disc_ver_cuttoff,36,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv index 57ecaedc01c..b964c26f046 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv @@ -2,20 +2,20 @@ name,gravimetric-ot3-p200-96,,,,,,,, increment,FALSE,,,,,,,, mount,left,,,,,,,, pipette,200,96,,,,,,, -tips,50,,,,,,,, +tips,50,200,,,,,,, trials,9,,,,,,,, return_tip,TRUE,,,,,,,, touch_tip,FALSE,,,,,,,, liquid,water,Deionized water,#0000ff,100000,,,,, tipracks_20ul,,,,,,,,, tipracks_50ul,D2,D3,C2,C3,B1,B2,B3,A1,A2 -tipracks_200ul,,,,,,,,, +tipracks_200ul,D2,D3,C2,C3,B1,B2,B3,A1,A2 tipracks_1000ul,,,,,,,,, labware_on_scale,nest_1_reservoir_195ml,A1,,,,,,, slot_scale,C1,,,,,,,, volumes_to_test_20ul,,,,,,,,, -volumes_to_test_50ul,50,,,,,,,, -volumes_to_test_200ul,,,,,,,,, +volumes_to_test_50ul,1,50,,,,,,, +volumes_to_test_200ul,200,,,,,,,, volumes_to_test_1000ul,,,,,,,,, blank_trials,10,,,,,,,, scale_delay,10,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv new file mode 100644 index 00000000000..d61eeb6b04c --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p200-96,,,,,,,,,,,, +increment,FALSE,,,,,,,,,,,, +mount,left,,,,,,,,,,,, +pipette,200,96,,,,,,,,,,, +tips,50,,,,,,,,,,,, +trials,9,,,,,,,,,,,, +return_tip,TRUE,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,, +tipracks_50ul,,,,,,,,,,,,, +tipracks_200ul,D2,D3,C2,C3,B1,B2,B3,A1,A2,,,, +tipracks_1000ul,,,,,,,,,,,,, +labware_on_scale,nest_1_reservoir_195ml,A1,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,, +volumes_to_test_50ul,,,,,,,,,,,,, +volumes_to_test_200ul,1,2,4,6,8,10,20,50,100,150,200,210,220 +volumes_to_test_1000ul,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,, +disc_ver_cuttoff,31,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv new file mode 100644 index 00000000000..d1b822aca44 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv @@ -0,0 +1,26 @@ +name,gravimetric-ot3-p200-96,,,,,,,,,,,,,,,, +increment,FALSE,,,,,,,,,,,,,,,, +mount,left,,,,,,,,,,,,,,,, +pipette,200,96,,,,,,,,,,,,,,, +tips,50,,,,,,,,,,,,,,,, +trials,9,,,,,,,,,,,,,,,, +return_tip,TRUE,,,,,,,,,,,,,,,, +touch_tip,FALSE,,,,,,,,,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,,,,,,,,,, +tipracks_20ul,,,,,,,,,,,,,,,,, +tipracks_50ul,D2,D3,C2,C3,B1,B2,B3,A1,A2,,,,,,,, +tipracks_200ul,,,,,,,,,,,,,,,,, +tipracks_1000ul,,,,,,,,,,,,,,,,, +labware_on_scale,nest_1_reservoir_195ml,A1,,,,,,,,,,,,,,, +slot_scale,C1,,,,,,,,,,,,,,,, +volumes_to_test_20ul,,,,,,,,,,,,,,,,, +volumes_to_test_50ul,0.7,1,1.5,2,2.5,3,4,5,6,7,8,9,10,15,25,40,60 +volumes_to_test_200ul,,,,,,,,,,,,,,,,, +volumes_to_test_1000ul,,,,,,,,,,,,,,,,, +blank_trials,10,,,,,,,,,,,,,,,, +scale_delay,10,,,,,,,,,,,,,,,, +submerge_depth,-1.5,,,,,,,,,,,,,,,, +is_extra,FALSE,,,,,,,,,,,,,,,, +retract_discontinuity,20,,,,,,,,,,,,,,,, +disc_ver_cuttoff,31,,,,,,,,,,,,,,,, +gantry_speed,40,,,,,,,,,,,,,,,, From 39839fba8f6d802a94ad16a3cb2feae62a4976c9 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 17 Jul 2025 15:02:06 -0400 Subject: [PATCH 25/63] add the p200_96 lc --- .../liquid-class/definitions/1/water/1.json | 957 ++++++++++++++++++ 1 file changed, 957 insertions(+) diff --git a/shared-data/liquid-class/definitions/1/water/1.json b/shared-data/liquid-class/definitions/1/water/1.json index 358313748df..67aac7d056b 100644 --- a/shared-data/liquid-class/definitions/1/water/1.json +++ b/shared-data/liquid-class/definitions/1/water/1.json @@ -3922,6 +3922,963 @@ } ] }, + { + "pipetteModel": "flex_96channel_200", + "byTipType": [ + { + "tiprack": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "aspirate": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 0.1], + [49.0, 0.1], + [50.0, 0.0] + ], + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "aspiratePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "preWet": false, + "mix": { + "enable": false, + "params": { + "repetitions": 1, + "volume": 50 + } + }, + "delay": { + "enable": true, + "params": { + "duration": 0.5 + } + } + }, + "singleDispense": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 1.0], + [49.0, 1.0], + [50.0, 0.0] + ], + "blowout": { + "enable": false, + "params": { + "location": "destination", + "flowRate": 200.0 + } + }, + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "dispensePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "mix": { + "enable": false, + "params": { + "repetitions": 1, + "volume": 50 + } + }, + "pushOutByVolume": [[1.0, 20.0]], + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "multiDispense": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 1.0], + [49.0, 1.0], + [50.0, 0.0] + ], + "blowout": { + "enable": true, + "params": { + "location": "trash", + "flowRate": 200.0 + } + }, + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "dispensePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "conditioningByVolume": [ + [1.0, 5.0], + [45.0, 5.0], + [50.0, 0.0] + ], + "disposalByVolume": [ + [1.0, 5.0], + [45.0, 5.0], + [50.0, 0.0] + ], + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + } + }, + { + "tiprack": "opentrons/opentrons_flex_96_filtertiprack_50ul/1", + "aspirate": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 1.0], + [49.0, 1.0], + [50.0, 0.0] + ], + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "aspiratePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "preWet": false, + "mix": { + "enable": false, + "params": { + "repetitions": 1, + "volume": 50 + } + }, + "delay": { + "enable": true, + "params": { + "duration": 0.5 + } + } + }, + "singleDispense": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 1.0], + [49.0, 1.0], + [50.0, 0.0] + ], + "blowout": { + "enable": false, + "params": { + "location": "destination", + "flowRate": 200.0 + } + }, + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "dispensePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "mix": { + "enable": false, + "params": { + "repetitions": 1, + "volume": 50 + } + }, + "pushOutByVolume": [[1.0, 20.0]], + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "multiDispense": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 1.0], + [49.0, 1.0], + [50.0, 0.0] + ], + "blowout": { + "enable": true, + "params": { + "location": "trash", + "flowRate": 200.0 + } + }, + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "dispensePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "conditioningByVolume": [ + [1.0, 5.0], + [45.0, 5.0], + [50.0, 0.0] + ], + "disposalByVolume": [ + [1.0, 5.0], + [45.0, 5.0], + [50.0, 0.0] + ], + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + } + }, + { + "tiprack": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "aspirate": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 5.0], + [195.0, 5.0], + [200.0, 0.0] + ], + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "aspiratePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "preWet": false, + "mix": { + "enable": false, + "params": { + "repetitions": 1, + "volume": 50 + } + }, + "delay": { + "enable": true, + "params": { + "duration": 0.75 + } + } + }, + "singleDispense": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 5.0], + [195.0, 5.0], + [200.0, 0.0] + ], + "blowout": { + "enable": false, + "params": { + "location": "destination", + "flowRate": 200.0 + } + }, + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "dispensePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "mix": { + "enable": false, + "params": { + "repetitions": 1, + "volume": 50 + } + }, + "pushOutByVolume": [[1.0, 15.0]], + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "multiDispense": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 5.0], + [195.0, 5.0], + [200.0, 0.0] + ], + "blowout": { + "enable": true, + "params": { + "location": "trash", + "flowRate": 200.0 + } + }, + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "dispensePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "conditioningByVolume": [ + [1.0, 5.0], + [195.0, 5.0], + [200.0, 0.0] + ], + "disposalByVolume": [ + [1.0, 5.0], + [195.0, 5.0], + [200.0, 0.0] + ], + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + } + }, + { + "tiprack": "opentrons/opentrons_flex_96_filtertiprack_200ul/1", + "aspirate": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 5.0], + [195.0, 5.0], + [200.0, 0.0] + ], + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "aspiratePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "preWet": false, + "mix": { + "enable": false, + "params": { + "repetitions": 1, + "volume": 50 + } + }, + "delay": { + "enable": true, + "params": { + "duration": 0.75 + } + } + }, + "singleDispense": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 5.0], + [195.0, 5.0], + [200.0, 0.0] + ], + "blowout": { + "enable": false, + "params": { + "location": "destination", + "flowRate": 200.0 + } + }, + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "dispensePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "mix": { + "enable": false, + "params": { + "repetitions": 1, + "volume": 50 + } + }, + "pushOutByVolume": [[1.0, 15.0]], + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "multiDispense": { + "submerge": { + "startPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + }, + "retract": { + "endPosition": { + "positionReference": "well-top", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "speed": 35, + "airGapByVolume": [ + [1.0, 5.0], + [195.0, 5.0], + [200.0, 0.0] + ], + "blowout": { + "enable": true, + "params": { + "location": "trash", + "flowRate": 200.0 + } + }, + "touchTip": { + "enable": false, + "params": { + "zOffset": -1, + "mmFromEdge": 0.5, + "speed": 30 + } + }, + "delay": { + "enable": false, + "params": { + "duration": 0 + } + } + }, + "dispensePosition": { + "positionReference": "well-bottom", + "offset": { + "x": 0, + "y": 0, + "z": 2 + } + }, + "flowRateByVolume": [[1.0, 200.0]], + "correctionByVolume": [[0.0, 0.0]], + "conditioningByVolume": [ + [1.0, 5.0], + [195.0, 5.0], + [200.0, 0.0] + ], + "disposalByVolume": [ + [1.0, 5.0], + [195.0, 5.0], + [200.0, 0.0] + ], + "delay": { + "enable": false, + "params": { + "duration": 0.0 + } + } + } + }, + ] + }, { "pipetteModel": "flex_96channel_1000", "byTipType": [ From 01cf249d275efcc59b37e27cf1b14491afb502cc Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 17 Jul 2025 15:49:46 -0400 Subject: [PATCH 26/63] 'extra' tests need to be done after the standard tests. --- .../protocol_replacement/1ch1000.csv | 4 ++ .../protocol_replacement/1ch1000_extra.csv | 10 +++- .../1ch1000_increment_1000ul.csv | 4 ++ .../1ch1000_increment_200ul.csv | 4 ++ .../1ch1000_increment_50ul.csv | 4 ++ .../protocol_replacement/1ch50.csv | 4 ++ .../protocol_replacement/1ch50_extra.csv | 8 ++- .../1ch50_increment_50ul.csv | 4 ++ .../1ch50_increment_50ul_lv.csv | 4 ++ .../protocol_replacement/8ch1000.csv | 4 ++ .../protocol_replacement/8ch1000_extra.csv | 10 +++- .../8ch1000_increment_1000ul.csv | 4 ++ .../8ch1000_increment_200ul.csv | 4 ++ .../8ch1000_increment_50ul.csv | 4 ++ .../protocol_replacement/8ch50.csv | 56 ++++++++++--------- .../protocol_replacement/8ch50_extra.csv | 8 ++- .../8ch50_increment_50ul.csv | 4 ++ .../8ch50_increment_50ul_lv.csv | 4 ++ .../protocol_replacement/96ch1000.csv | 4 ++ .../96ch1000_increment_1000ul.csv | 4 ++ .../96ch1000_increment_200ul.csv | 4 ++ .../96ch1000_increment_50ul.csv | 4 ++ .../protocol_replacement/96ch200.csv | 4 ++ .../96ch200_increment_200ul.csv | 4 ++ .../96ch200_increment_50ul.csv | 4 ++ .../protocol_replacement/gravimetric.py | 44 ++++++++++++++- 26 files changed, 178 insertions(+), 38 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv index 26e52738730..f7648952dd6 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,, volumes_to_test_50ul,,5,, volumes_to_test_200ul,,,, volumes_to_test_1000ul,1000,,, +extra_volumes_to_test_20ul,,,, +extra_volumes_to_test_50ul,,,, +extra_volumes_to_test_200ul,,,, +extra_volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv index 6606aa47e27..91fa1eeb90e 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv @@ -2,7 +2,7 @@ name,gravimetric-ot3-p1000-single,,, increment,FALSE,,, mount,left,,, pipette,1000,1,, -tips,50,200,1000, +tips,50,1000,50,200 trials,10,,, return_tip,FALSE,,, touch_tip,FALSE,,, @@ -14,9 +14,13 @@ tipracks_1000ul,D3,,, labware_on_scale,radwag_pipette_calibration_vial,A1,, slot_scale,C1,,, volumes_to_test_20ul,,,, -volumes_to_test_50ul,5,50,, -volumes_to_test_200ul,200,,, +volumes_to_test_50ul,5,,, +volumes_to_test_200ul,,,, volumes_to_test_1000ul,1000,,, +extra_volumes_to_test_20ul,,,, +extra_volumes_to_test_50ul,50,,, +extra_volumes_to_test_200ul,200,,, +extra_volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv index e0616d03f80..709741d65d3 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,, volumes_to_test_50ul,,,,,,,,,,,,,,,, volumes_to_test_200ul,,,,,,,,,,,,,,,, volumes_to_test_1000ul,3,4,5,7.27,12.8,15.37,18.53,56.95,99.84,120.38,254.48,369.99,446.13,648.65,1030,1137.16 +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv index 066b40989de..1ca300528ed 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,, volumes_to_test_50ul,,,,,,,,,,,,,,, volumes_to_test_200ul,3.25,3.6,4.4,6.22,7.31,8.6,11.89,13.99,22.75,36.99,56,97.83,159.09,187.08,220 volumes_to_test_1000ul,,,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv index 00272fe037c..0ce6ee38704 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,, volumes_to_test_50ul,2.53,2.7,3,3.6,4.04,4.55,5.11,5.5,5.75,6,6.46,7.27,8.17,11,12.9,16.51,26.4,33.38,53.36,60 volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,, volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv index b9bfc11a595..b5cf095dfa8 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,, volumes_to_test_50ul,1,50,, volumes_to_test_200ul,,,, volumes_to_test_1000ul,,,, +extra_volumes_to_test_20ul,,,, +extra_volumes_to_test_50ul,,,, +extra_volumes_to_test_200ul,,,, +extra_volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv index 710d064fcb8..2d217520925 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv @@ -2,7 +2,7 @@ name,gravimetric-ot3-p50-single,,, increment,FALSE,,, mount,left,,, pipette,50,1,, -tips,50,,, +tips,50,50,, trials,10,,, return_tip,FALSE,,, touch_tip,FALSE,,, @@ -14,9 +14,13 @@ tipracks_1000ul,,,, labware_on_scale,radwag_pipette_calibration_vial,A1,, slot_scale,C1,,, volumes_to_test_20ul,,,, -volumes_to_test_50ul,1,10,50, +volumes_to_test_50ul,1,50,, volumes_to_test_200ul,,,, volumes_to_test_1000ul,,,, +extra_volumes_to_test_20ul,,,, +extra_volumes_to_test_50ul,10,,, +extra_volumes_to_test_200ul,,,, +extra_volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv index f141b96ccb8..7671882f216 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,, volumes_to_test_50ul,1.1,1.2,1.37,1.7,2.04,2.66,3.47,3.96,4.35,4.8,5.16,5.89,6.73,8.2,10.02,11.1,14.91,28.94,53.5,56.16 volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,, volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv index 77ce07fe8f6..43aeeaedec3 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,,,,, volumes_to_test_50ul,1.1,1.2,1.37,1.7,2.04,2.66,3.47,3.96,4.35,4.8,5.16,5.89,6.73,8.2,10.02,11.1,14.91,28.94,48.27 volumes_to_test_200ul,,,,,,,,,,,,,,,,,,, volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv index aca0a47bf6a..34a2658f1c7 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,, volumes_to_test_50ul,5,,, volumes_to_test_200ul,,,, volumes_to_test_1000ul,1000,,, +extra_volumes_to_test_20ul,,,, +extra_volumes_to_test_50ul,,,, +extra_volumes_to_test_200ul,,,, +extra_volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv index 1362b88dc42..3fce1f7e458 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv @@ -2,7 +2,7 @@ name,gravimetric-ot3-p1000-multi,,, increment,FALSE,,, mount,left,,, pipette,1000,8,, -tips,50,200,1000, +tips,50,1000,50,200 trials,10,,, return_tip,FALSE,,, touch_tip,FALSE,,, @@ -14,9 +14,13 @@ tipracks_1000ul,D3,B3,, labware_on_scale,radwag_pipette_calibration_vial,A1,, slot_scale,C1,,, volumes_to_test_20ul,,,, -volumes_to_test_50ul,5,50,, -volumes_to_test_200ul,200,,, +volumes_to_test_50ul,5,,, +volumes_to_test_200ul,,,, volumes_to_test_1000ul,1000,,, +extra_volumes_to_test_20ul,,,, +extra_volumes_to_test_50ul,50,,, +extra_volumes_to_test_200ul,200,,, +extra_volumes_to_test_1000ul,,,, blank_trials,10,,, scale_delay,10,,, submerge_depth,-1.5,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv index d5992597752..156dca58807 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_1000ul,2,2.61,3.39,4.42,5.76,7.5,9.77,12.72,16.57,21.58,28.11,36.61,47.69,62.11,80.91,105.38,137.26,178.78,232.87,303.31,385.07,514.58,670.25,873,1137.1 +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv index 7931c619d49..37622afbde1 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_200ul,1.5,1.85,2.27,2.8,3.44,4.24,5.22,6.43,7.91,9.74,11.99,14.76,18.17,22.36,27.53,33.83,41.72,51.35,63.22,77.82,95.8,117.93,145.18,178.71,220 volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv index 51aa4474733..3e0da78f1af 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_50ul,1,1.25,1.54,1.91,2.37,2.94,3.64,3.9,4.2,4.52,4.8,5.1,5.61,5.9,6.2,6.95,8.63,10.7,13.28,16.47,20.43,25.34,31.43,38.99,48.37,60 volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv index d38a9219d6c..f572da946e7 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv @@ -1,26 +1,30 @@ -name,gravimetric-ot3-p50-multi,,,,, -increment,FALSE,,,,, -mount,left,,,,, -pipette,50,8,,,, -tips,50,,,,, -trials,10,,,,, -return_tip,FALSE,,,,, -touch_tip,FALSE,,,,, -liquid,water,Deionized water,#0000ff,100000,, -tipracks_20ul,,,,,, -tipracks_50ul,D2,D3,B2,B3,, -tipracks_200ul,,,,,, -tipracks_1000ul,,,,,, -labware_on_scale,radwag_pipette_calibration_vial,A1,,,, -slot_scale,C1,,,,, -volumes_to_test_20ul,,,,,, -volumes_to_test_50ul,1,50,,,, -volumes_to_test_200ul,,,,,, -volumes_to_test_1000ul,,,,,, -blank_trials,10,,,,, -scale_delay,10,,,,, -submerge_depth,-1.5,,,,, -is_extra,FALSE,,,,, -retract_discontinuity,20,,,,, -disc_ver_cuttoff,35,,,,, -gantry_speed,40,,,,, +name,gravimetric-ot3-p50-multi,,, +increment,FALSE,,, +mount,left,,, +pipette,50,8,, +tips,50,,, +trials,10,,, +return_tip,FALSE,,, +touch_tip,FALSE,,, +liquid,water,Deionized water,#0000ff,100000 +tipracks_20ul,,,, +tipracks_50ul,D2,D3,B2,B3 +tipracks_200ul,,,, +tipracks_1000ul,,,, +labware_on_scale,radwag_pipette_calibration_vial,A1,, +slot_scale,C1,,, +volumes_to_test_20ul,,,, +volumes_to_test_50ul,1,50,, +volumes_to_test_200ul,,,, +volumes_to_test_1000ul,,,, +extra_volumes_to_test_20ul,,,, +extra_volumes_to_test_50ul,,,, +extra_volumes_to_test_200ul,,,, +extra_volumes_to_test_1000ul,,,, +blank_trials,10,,, +scale_delay,10,,, +submerge_depth,-1.5,,, +is_extra,FALSE,,, +retract_discontinuity,20,,, +disc_ver_cuttoff,35,,, +gantry_speed,40,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv index 4247052f56c..7826f0bfb6c 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv @@ -2,7 +2,7 @@ name,gravimetric-ot3-p50-multi,,,,, increment,FALSE,,,,, mount,left,,,,, pipette,50,8,,,, -tips,50,,,,, +tips,50,50,,,, trials,10,,,,, return_tip,FALSE,,,,, touch_tip,FALSE,,,,, @@ -14,9 +14,13 @@ tipracks_1000ul,,,,,, labware_on_scale,radwag_pipette_calibration_vial,A1,,,, slot_scale,C1,,,,, volumes_to_test_20ul,,,,,, -volumes_to_test_50ul,1,10,50,,, +volumes_to_test_50ul,1,50,,,, volumes_to_test_200ul,,,,,, volumes_to_test_1000ul,,,,,, +extra_volumes_to_test_20ul,,,,,, +extra_volumes_to_test_50ul,10,,,,, +extra_volumes_to_test_200ul,,,,,, +extra_volumes_to_test_1000ul,,,,,, blank_trials,10,,,,, scale_delay,10,,,,, submerge_depth,-1.5,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv index dad33e9e077..de49431eb17 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_50ul,0.8,1,1.25,1.57,1.96,2.45,3.06,3.3,3.6,3.83,4,4.3,4.6,4.79,5.3,5.99,7.49,9.37,11.72,18.34,22.93,28.68,35.88,44.87,56.12 volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv index 8bec79fba14..ef504ed1aa4 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_50ul,0.8,1,1.25,1.57,1.96,2.45,3.06,3.3,3.6,3.83,4,4.3,4.6,4.79,5.3,5.99,7.49,9.37,11.72,18.34,22.93,28.68,35.88,48.27 volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,, volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv index 56e0180bfa8..610638781c2 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,5,,,,,,,, volumes_to_test_50ul,1,50,,,,,,, volumes_to_test_200ul,200,,,,,,,, volumes_to_test_1000ul,1000,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,, blank_trials,10,,,,,,,, scale_delay,10,,,,,,,, submerge_depth,-1.5,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv index 510bfc24558..99622921755 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,,,, volumes_to_test_50ul,,,,,,,,,,,,,,,,,, volumes_to_test_200ul,,,,,,,,,,,,,,,,,, volumes_to_test_1000ul,3,5,7,10,15,20,50,100,120,200,320,450,650,850,1000,1030,1050,1075 +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv index 40dc1d6f223..b18e84b01f7 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,, volumes_to_test_50ul,,,,,,,,,,,, volumes_to_test_200ul,2,3,4,5,6,7,8,9,10,50,100,220 volumes_to_test_1000ul,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,, blank_trials,10,,,,,,,,,,, scale_delay,10,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv index d81831d27f5..2d27e955a81 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,, volumes_to_test_50ul,2,3,4,5,6,7,8,9,10,15,25,40,60 volumes_to_test_200ul,,,,,,,,,,,,, volumes_to_test_1000ul,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv index b964c26f046..c1354dbb1a4 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,, volumes_to_test_50ul,1,50,,,,,,, volumes_to_test_200ul,200,,,,,,,, volumes_to_test_1000ul,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,, blank_trials,10,,,,,,,, scale_delay,10,,,,,,,, submerge_depth,-1.5,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv index d61eeb6b04c..f85ed3b2641 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,, volumes_to_test_50ul,,,,,,,,,,,,, volumes_to_test_200ul,1,2,4,6,8,10,20,50,100,150,200,210,220 volumes_to_test_1000ul,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv index d1b822aca44..69fc023114f 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv @@ -17,6 +17,10 @@ volumes_to_test_20ul,,,,,,,,,,,,,,,,, volumes_to_test_50ul,0.7,1,1.5,2,2.5,3,4,5,6,7,8,9,10,15,25,40,60 volumes_to_test_200ul,,,,,,,,,,,,,,,,, volumes_to_test_1000ul,,,,,,,,,,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,,,,,,,,,, blank_trials,10,,,,,,,,,,,,,,,, scale_delay,10,,,,,,,,,,,,,,,, submerge_depth,-1.5,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 1f69ca17614..c63d9502995 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -152,6 +152,7 @@ class FixtureSettings: tips: Dict[int, List[str]] liquid_source: Well volumes: Dict[int, List[float]] + extra_volumes: Dict[int, List[float]] scale: Scale recorder: GravimetricRecorder env_sensor: AsairDriver.AsairSensorBase @@ -225,6 +226,18 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: volumes_to_test_1000ul = [ float(volume) for volume in lookup_key("volumes_to_test_1000ul", csv_params) ] + extra_volumes_to_test_20ul = [ + float(volume) for volume in lookup_key("volumes_to_test_20ul", csv_params) + ] + extra_volumes_to_test_50ul = [ + float(volume) for volume in lookup_key("volumes_to_test_50ul", csv_params) + ] + extra_volumes_to_test_200ul = [ + float(volume) for volume in lookup_key("volumes_to_test_200ul", csv_params) + ] + extra_volumes_to_test_1000ul = [ + float(volume) for volume in lookup_key("volumes_to_test_1000ul", csv_params) + ] extra = bool(lookup_key("is_extra", csv_params)[0] == "TRUE") retract_discontinuity = float( @@ -243,8 +256,19 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: + volumes_to_test_50ul + volumes_to_test_200ul + volumes_to_test_1000ul + + extra_volumes_to_test_20ul + + extra_volumes_to_test_50ul + + extra_volumes_to_test_200ul + + extra_volumes_to_test_1000ul ) + extra_volumes = { + 20: extra_volumes_to_test_20ul, + 50: extra_volumes_to_test_50ul, + 200: extra_volumes_to_test_200ul, + 1000: extra_volumes_to_test_1000ul, + } + tips = { 20: tipracks_20ul, 50: tipracks_50ul, @@ -370,6 +394,7 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: tips=tips, liquid_source=source_well, volumes=volumes, + extra_volumes=extra_volumes, scale=scale, recorder=recorder, env_sensor=env_sensor, @@ -1032,6 +1057,7 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: pick_up_tip_for_channel(fixture_settings, first_tip, 0) print_info("Detecting liquid height.") fixture_settings.pipette.require_liquid_presence(fixture_settings.liquid_source) + last_probed_tip_size = fixture_settings.tip_sizes[0] print_info( f"Test source has {fixture_settings.liquid_source.current_liquid_volume()}" ) @@ -1081,9 +1107,22 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: remove_tip(fixture_settings) last_measurement = blank_measurments[-1][-1] - + tip_sizes_done = [] for tip in fixture_settings.tip_sizes: - for volume in fixture_settings.volumes[tip]: + if tip != last_probed_tip_size: + probe_tip = _get_tips_for_test(fixture_settings, tip, False)[0] + pick_up_tip_for_channel(fixture_settings, probe_tip, 0) + fixture_settings.pipette.require_liquid_presence( + fixture_settings.liquid_source + ) + last_probed_tip_size = fixture_settings.tip_sizes[0] + remove_tip(fixture_settings) + volumes_to_tests = ( + fixture_settings.volumes[tip] + if tip not in tip_sizes_done + else fixture_settings.extra_volumes[tip] + ) + for volume in volumes_to_tests: trial_asp_dict: Dict[int, List[float]] = { t: [] for t in range(fixture_settings.trials) } @@ -1249,6 +1288,7 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: d=dispense_d, flag="", ) + tip_sizes_done.append(tip) def _override_check( From 25108e04d9154bcb960f773768fcc3de7e5e1add Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 17 Jul 2025 15:50:08 -0400 Subject: [PATCH 27/63] fix json error. --- shared-data/liquid-class/definitions/1/water/1.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared-data/liquid-class/definitions/1/water/1.json b/shared-data/liquid-class/definitions/1/water/1.json index 67aac7d056b..30b98c0ff54 100644 --- a/shared-data/liquid-class/definitions/1/water/1.json +++ b/shared-data/liquid-class/definitions/1/water/1.json @@ -4876,7 +4876,7 @@ } } } - }, + } ] }, { From 4bead1d2c1603710faf79b7b1a2b453a96184a07 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 17 Jul 2025 19:10:33 -0400 Subject: [PATCH 28/63] fixing increment tests. --- .../protocol_replacement/8ch1000_increment_200ul.csv | 2 +- .../gravimetric/protocol_replacement/8ch50_increment_50ul.csv | 2 +- .../protocol_replacement/8ch50_increment_50ul_lv.csv | 2 +- .../protocol_replacement/96ch1000_increment_1000ul.csv | 4 ++-- .../protocol_replacement/96ch1000_increment_200ul.csv | 2 +- .../protocol_replacement/96ch1000_increment_50ul.csv | 2 +- .../protocol_replacement/96ch200_increment_200ul.csv | 4 ++-- .../protocol_replacement/96ch200_increment_50ul.csv | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv index 37622afbde1..89643793cd3 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv @@ -1,5 +1,5 @@ name,gravimetric-ot3-p1000-multi,,,,,,,,,,,,,,,,,,,,,,,, -increment,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,,,,,,,,,,, mount,left,,,,,,,,,,,,,,,,,,,,,,,, pipette,1000,8,,,,,,,,,,,,,,,,,,,,,,, tips,200,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv index de49431eb17..96b4d16c357 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv @@ -1,5 +1,5 @@ name,gravimetric-ot3-p50-multi,,,,,,,,,,,,,,,,,,,,,,,, -increment,FALSE,,,,,,,,,,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,,,,,,,,,,, mount,left,,,,,,,,,,,,,,,,,,,,,,,, pipette,50,8,,,,,,,,,,,,,,,,,,,,,,, tips,50,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv index ef504ed1aa4..5b3d444cd7b 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv @@ -1,5 +1,5 @@ name,gravimetric-ot3-p50-multi,,,,,,,,,,,,,,,,,,,,,,, -increment,FALSE,,,,,,,,,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,,,,,,,,,, mount,left,,,,,,,,,,,,,,,,,,,,,,, pipette,50,8,,,,,,,,,,,,,,,,,,,,,, tips,50,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv index 99622921755..add5a5974b1 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv @@ -1,8 +1,8 @@ name,gravimetric-ot3-p1000-96,,,,,,,,,,,,,,,,, -increment,FALSE,,,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,,,, mount,left,,,,,,,,,,,,,,,,, pipette,1000,96,,,,,,,,,,,,,,,, -tips,200,,,,,,,,,,,,,,,,, +tips,1000,,,,,,,,,,,,,,,,, trials,3,,,,,,,,,,,,,,,,, return_tip,TRUE,,,,,,,,,,,,,,,,, touch_tip,FALSE,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv index b18e84b01f7..50bc7a21f32 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv @@ -1,5 +1,5 @@ name,gravimetric-ot3-p1000-96,,,,,,,,,,, -increment,FALSE,,,,,,,,,,, +increment,TRUE,,,,,,,,,,, mount,left,,,,,,,,,,, pipette,1000,96,,,,,,,,,, tips,200,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv index 2d27e955a81..b2ad8dcdd30 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv @@ -1,5 +1,5 @@ name,gravimetric-ot3-p1000-96,,,,,,,,,,,, -increment,FALSE,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,, mount,left,,,,,,,,,,,, pipette,1000,96,,,,,,,,,,, tips,50,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv index f85ed3b2641..ddf6ca1692b 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv @@ -1,8 +1,8 @@ name,gravimetric-ot3-p200-96,,,,,,,,,,,, -increment,FALSE,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,, mount,left,,,,,,,,,,,, pipette,200,96,,,,,,,,,,, -tips,50,,,,,,,,,,,, +tips,200,,,,,,,,,,,, trials,9,,,,,,,,,,,, return_tip,TRUE,,,,,,,,,,,, touch_tip,FALSE,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv index 69fc023114f..68b4ffe2c66 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv @@ -1,5 +1,5 @@ name,gravimetric-ot3-p200-96,,,,,,,,,,,,,,,, -increment,FALSE,,,,,,,,,,,,,,,, +increment,TRUE,,,,,,,,,,,,,,,, mount,left,,,,,,,,,,,,,,,, pipette,200,96,,,,,,,,,,,,,,, tips,50,,,,,,,,,,,,,,,, From 13c6eba12b5f2a4b1cafb02aa78d1ababce2d06f Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Fri, 18 Jul 2025 11:59:31 -0400 Subject: [PATCH 29/63] Use a more-correct tip overlap value by changing the primary nozzel --- .../protocol_replacement/gravimetric.py | 24 ++++++++++++------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index c63d9502995..e34d49ae375 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -288,14 +288,6 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: ) pipette.default_speed = gantry_speed simulating = ctx.is_simulating() - if pipette_channels == 8 and not increment: - pipette._core.configure_nozzle_layout( - style=NozzleLayout.SINGLE, - primary_nozzle="A1", - front_right_nozzle="A1", - back_left_nozzle="A1", - ) - # override pipette movement conflict checking 'cause we specially lay out our tipracks pipette_movement_conflict.check_safe_for_pipette_movement = ( helpers._override_check_safe_for_pipette_movement ) @@ -682,7 +674,10 @@ def _get_offset_for_channel( ) -> Coordinate: offset = Coordinate(x=0, y=0, z=submerge_depth) if fixture_settings.pipette_channels == 8 and not fixture_settings.increment: - offset.y = channel * 9.0 + if channel in [0,1,2,3]: + offset.y = channel * 9.0 + else: + offset.y = (channel-7) * 9.0 return offset @@ -1133,6 +1128,17 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: actual_disp_list_all = [] measurements[volume] = [] for channel in fixture_settings.channels: + if fixture_settings.pipette_channels == 8 and not fixture_settings.increment: + primary = "A1" + if channel in [4,5,6,7]: + primary = "H1" + fixture_settings.pipette._core.configure_nozzle_layout( + style=NozzleLayout.SINGLE, + primary_nozzle=primary, + front_right_nozzle=primary, + back_left_nozzle=primary, + ) + # override pipette movement conflict checking 'cause we specially lay out our tipracks channel_aspriate_dict: Dict[int, List[float]] tips = _get_tips_for_test(fixture_settings, tip, False, channel) actual_asp_list_channel: List[float] = [] From 4ee71bb5b654865e8accfb3ba4b9757a5c6655f9 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Mon, 21 Jul 2025 04:04:38 -0400 Subject: [PATCH 30/63] need to configure partial tip on blank too --- .../protocol_replacement/gravimetric.py | 35 ++++++++++++------- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index e34d49ae375..4a3c0576691 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -674,10 +674,10 @@ def _get_offset_for_channel( ) -> Coordinate: offset = Coordinate(x=0, y=0, z=submerge_depth) if fixture_settings.pipette_channels == 8 and not fixture_settings.increment: - if channel in [0,1,2,3]: + if channel in [0, 1, 2, 3]: offset.y = channel * 9.0 else: - offset.y = (channel-7) * 9.0 + offset.y = (channel - 7) * 9.0 return offset @@ -1043,12 +1043,27 @@ def run_one_test( return [pre_aspirate, post_aspirate, post_dispense] +def _configure_tip_count(fixture_settings: FixtureSettings, channel: int) -> None: + if fixture_settings.pipette_channels == 8 and not fixture_settings.increment: + primary = "A1" + if channel in [4, 5, 6, 7]: + primary = "H1" + fixture_settings.pipette._core.configure_nozzle_layout( + style=NozzleLayout.SINGLE, + primary_nozzle=primary, + front_right_nozzle=primary, + back_left_nozzle=primary, + ) + print_info(f"Configuring for single tip with {primary}") + + def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: """Run.""" first_tip = _get_tips_for_test( fixture_settings, fixture_settings.tip_sizes[0], True )[0] print_info("Picking up first tip.") + _configure_tip_count(fixture_settings, 0) pick_up_tip_for_channel(fixture_settings, first_tip, 0) print_info("Detecting liquid height.") fixture_settings.pipette.require_liquid_presence(fixture_settings.liquid_source) @@ -1128,17 +1143,8 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: actual_disp_list_all = [] measurements[volume] = [] for channel in fixture_settings.channels: - if fixture_settings.pipette_channels == 8 and not fixture_settings.increment: - primary = "A1" - if channel in [4,5,6,7]: - primary = "H1" - fixture_settings.pipette._core.configure_nozzle_layout( - style=NozzleLayout.SINGLE, - primary_nozzle=primary, - front_right_nozzle=primary, - back_left_nozzle=primary, - ) - # override pipette movement conflict checking 'cause we specially lay out our tipracks + _configure_tip_count(fixture_settings, channel) + # override pipette movement conflict checking 'cause we specially lay out our tipracks channel_aspriate_dict: Dict[int, List[float]] tips = _get_tips_for_test(fixture_settings, tip, False, channel) actual_asp_list_channel: List[float] = [] @@ -1188,6 +1194,9 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: disp_with_evap, cur_height, # type: ignore[arg-type] ) + print_info( + f"Finished trial {trial} asp {asp_with_evap} disp {disp_with_evap}" + ) actual_asp_list_channel.append(asp_with_evap) actual_disp_list_channel.append(disp_with_evap) trial_asp_dict[trial].append(asp_with_evap) From 5062b7822d5d226a799a7ea2fa67061494813618 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Mon, 21 Jul 2025 21:40:10 -0400 Subject: [PATCH 31/63] fix the csv by correctly creating the extra tests. --- .../protocol_replacement/gravimetric.py | 20 +++++++++++++++---- .../gravimetric/test_gravimetric_protocol.py | 4 ++-- 2 files changed, 18 insertions(+), 6 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 4a3c0576691..93871d6b13d 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -227,16 +227,20 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: float(volume) for volume in lookup_key("volumes_to_test_1000ul", csv_params) ] extra_volumes_to_test_20ul = [ - float(volume) for volume in lookup_key("volumes_to_test_20ul", csv_params) + float(volume) + for volume in lookup_key("extra_volumes_to_test_20ul", csv_params) ] extra_volumes_to_test_50ul = [ - float(volume) for volume in lookup_key("volumes_to_test_50ul", csv_params) + float(volume) + for volume in lookup_key("extra_volumes_to_test_50ul", csv_params) ] extra_volumes_to_test_200ul = [ - float(volume) for volume in lookup_key("volumes_to_test_200ul", csv_params) + float(volume) + for volume in lookup_key("extra_volumes_to_test_200ul", csv_params) ] extra_volumes_to_test_1000ul = [ - float(volume) for volume in lookup_key("volumes_to_test_1000ul", csv_params) + float(volume) + for volume in lookup_key("extra_volumes_to_test_1000ul", csv_params) ] extra = bool(lookup_key("is_extra", csv_params)[0] == "TRUE") @@ -297,6 +301,7 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: pipette_tag = helpers._get_tag_from_pipette(pipette, increment, False) run_id = create_run_id() fast_simulate = IS_ROBOT and simulating + test_report = report.create_csv_test_report( volumes=volumes_flat, pipette_channels=pipette_channels, @@ -308,6 +313,13 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: ) os.makedirs(f"{test_report.parent}", exist_ok=True) set_output_file(f"{test_report.parent}/run_output.txt") + + print_info(f"volumes flat {volumes_flat}") + print_info(f"channels {pipette_channels}") + print_info(f"increment {increment}") + print_info(f"trials {trials}") + print_info(f"name {name}") + print_info(str(importlib.util.find_spec("hardware_testing"))) print_info(f"Running on bot {IS_ROBOT}") print_info(f"Fast simulate {fast_simulate}") diff --git a/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py b/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py index 166b0e33993..3f84ee6208e 100644 --- a/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py +++ b/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py @@ -116,11 +116,11 @@ def test_gravimetric_test_protocol_has_max_api(pipette: str) -> None: # ["1ch1000_extra.csv"], ["1ch50.csv"], # ["1ch50_extra.csv"], - ["96ch1000.csv"], + # ["96ch1000.csv"], # ["96ch200.csv"], #Needs LC to complete # ["8ch1000.csv"], # ["8ch1000_extra.csv"], - ["8ch50.csv"], + # ["8ch50.csv"], # ["8ch50_extra.csv"], ], ) From eefb01561e21ee2802ccc47710e97d3f8a42e18b Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Mon, 21 Jul 2025 22:33:23 -0400 Subject: [PATCH 32/63] add a little more info to the delay printout. --- .../hardware_testing/gravimetric/measurement/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/gravimetric/measurement/__init__.py b/hardware-testing/hardware_testing/gravimetric/measurement/__init__.py index 5a026b9ce39..9e43ae3f49b 100644 --- a/hardware-testing/hardware_testing/gravimetric/measurement/__init__.py +++ b/hardware-testing/hardware_testing/gravimetric/measurement/__init__.py @@ -176,7 +176,9 @@ def record_measurement_data( elif shorten: ctx.delay(1) else: - print(f"delaying {delay_seconds} seconds for measurement, please wait...") + print( + f"delaying {delay_seconds} seconds for measurement {tag}, please wait..." + ) ctx.delay(delay_seconds) return _build_measurement_data( recorder, tag, env_data, stable=stable, simulating=ctx.is_simulating() From 82392a4ad80c75c1fa91c5bee36e76e91cad7490 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 22 Jul 2025 04:27:29 -0400 Subject: [PATCH 33/63] re-write photometric to use liquid classes --- .../protocols/universal_photometric.py | 265 +++++++++--------- .../gravimetric/test_gravimetric_protocol.py | 12 + 2 files changed, 152 insertions(+), 125 deletions(-) diff --git a/hardware-testing/hardware_testing/protocols/universal_photometric.py b/hardware-testing/hardware_testing/protocols/universal_photometric.py index 168f1de800c..68653c039ff 100644 --- a/hardware-testing/hardware_testing/protocols/universal_photometric.py +++ b/hardware-testing/hardware_testing/protocols/universal_photometric.py @@ -1,11 +1,26 @@ """Universal photometric test.""" -from typing import Tuple - from opentrons import protocol_api -from opentrons.types import Mount + +from typing import List + +from opentrons.protocol_api import ( + InstrumentContext, + Well, + LiquidClass, + Labware, +) +from opentrons.protocol_api._liquid_properties import TransferProperties +from opentrons_shared_data.liquid_classes.liquid_class_definition import ( + Coordinate, + PositionReference, +) +from opentrons.protocol_api.core.engine import ( + transfer_components_executor as tx_comps_executor, +) + metadata = {"protocolName": "96ch Universal Photometric Protocol"} -requirements = {"robotType": "Flex", "apiLevel": "2.23"} +requirements = {"robotType": "Flex", "apiLevel": "2.24"} DYE_RESERVOIR_DEAD_VOLUME = 20000 # 20k uL @@ -240,6 +255,57 @@ def add_parameters(parameters: protocol_api.ParameterContext) -> None: ) +def dispense_with_liquid_class( + pipette: InstrumentContext, + volume: float, + transfer_properties: TransferProperties, + transfer_type: tx_comps_executor.TransferType, + dest: Well, + contents: List[tx_comps_executor.LiquidAndAirGapPair], +) -> List[tx_comps_executor.LiquidAndAirGapPair]: + """Dispense with liquid class.""" + return pipette._core.dispense_liquid_class( # type: ignore [attr-defined] + volume=volume, + dest=( + dest.top(), + dest._core, + ), + source=None, + transfer_properties=transfer_properties, + transfer_type=transfer_type, + tip_contents=contents, + add_final_air_gap=True, + trash_location=pipette.trash_container, + ) + + +def aspirate_with_liquid_class( + pipette: InstrumentContext, + volume: float, + transfer_properties: TransferProperties, + transfer_type: tx_comps_executor.TransferType, + source: Well, +) -> List[tx_comps_executor.LiquidAndAirGapPair]: + """Aspirate with liquid class.""" + contents = pipette._core.aspirate_liquid_class( # type: ignore [attr-defined] + volume=volume, + source=( + source.top(), + source._core, + ), + transfer_properties=transfer_properties, + transfer_type=transfer_type, + tip_contents=[ + tx_comps_executor.LiquidAndAirGapPair( + liquid=0, + air_gap=0, + ) + ], + volume_for_pipette_mode_configuration=None, + ) + return contents + + def run(ctx: protocol_api.ProtocolContext) -> None: # noqa: C901 """Run.""" ctx.load_trash_bin("A3") @@ -325,150 +391,99 @@ def _validate_dye_liquid_height() -> None: ctx.pause("Replace tip rack.") pip.pick_up_tip(tips["A1"]) - def _set_pipette_motion_settings() -> Tuple[ - float, float, float, float, float, float - ]: - if ctx.params.use_pip_motion_defaults: # type: ignore [attr-defined] - aspirate_submerge_speed = 50 - dispense_submerge_speed = 50 - aspirate_exit_speed = 50 - dispense_exit_speed = 50 - air_gap = 0.0 - if not ctx.is_simulating(): - from hardware_testing.gravimetric.liquid_class.defaults import ( - get_liquid_class, - ) + target_volume = ctx.params.target_volume # type: ignore [attr-defined] - liquid_class = get_liquid_class( - pipette=ctx.params.model_type, # type: ignore [attr-defined] - channels=96, - tip=ctx.params.tip_type, # type: ignore [attr-defined] - volume=ctx.params.target_volume, # type: ignore [attr-defined] - ) - pip.flow_rate.aspirate = liquid_class.aspirate.plunger_flow_rate - pip.flow_rate.dispense = liquid_class.dispense.plunger_flow_rate - set_push_out = liquid_class.dispense.blow_out_submerged - air_gap = min( - liquid_class.aspirate.trailing_air_gap, - ctx.params.tip_type - ctx.params.target_volume, # type: ignore [attr-defined] - ) - else: # if simulating - pip.flow_rate.aspirate = ctx.params.asp_flow_rate # type: ignore [attr-defined] - pip.flow_rate.dispense = ctx.params.disp_flow_rate # type: ignore [attr-defined] - set_push_out = ctx.params.push_out # type: ignore [attr-defined] - else: - set_push_out = ctx.params.push_out # type: ignore [attr-defined] - pip.flow_rate.aspirate = ctx.params.asp_flow_rate # type: ignore [attr-defined] - pip.flow_rate.dispense = ctx.params.disp_flow_rate # type: ignore [attr-defined] - pip.flow_rate.blow_out = ctx.params.blowout_flow_rate # type: ignore [attr-defined] - aspirate_submerge_speed = ctx.params.asp_submerge_speed # type: ignore [attr-defined] - dispense_submerge_speed = ctx.params.disp_submerge_speed # type: ignore [attr-defined] - air_gap = ctx.params.air_gap # type: ignore [attr-defined] - return ( - aspirate_submerge_speed, - aspirate_exit_speed, - dispense_submerge_speed, - dispense_exit_speed, - set_push_out, - air_gap, + def _get_transfer_settings(tiprack: Labware) -> LiquidClass: + liquid_class = ctx.get_liquid_class("water") + transfer_properties = liquid_class.get_for(pip, tiprack) + asp_offset = Coordinate(x=0, y=0, z=-1 * ctx.params.asp_sub_depth) # type: ignore [attr-defined] + disp_offset = Coordinate(x=0, y=0, z=-1 * ctx.params.disp_sub_depth) # type: ignore [attr-defined] + + transfer_properties.aspirate.submerge.start_position.offset = asp_offset + transfer_properties.aspirate.aspirate_position.offset = asp_offset + transfer_properties.aspirate.retract.end_position.offset = asp_offset + transfer_properties.aspirate.aspirate_position.position_reference = ( + PositionReference.LIQUID_MENISCUS + ) + transfer_properties.dispense.submerge.start_position.offset = disp_offset + transfer_properties.dispense.dispense_position.offset = disp_offset + transfer_properties.dispense.retract.end_position.offset = disp_offset + transfer_properties.dispense.dispense_position.position_reference = ( + PositionReference.LIQUID_MENISCUS ) - ( - aspirate_submerge_speed, - aspirate_exit_speed, - dispense_submerge_speed, - dispense_exit_speed, - set_push_out, - air_gap, - ) = _set_pipette_motion_settings() + if not ctx.params.use_pip_motion_defaults: # type: ignore [attr-defined] + transfer_properties.aspirate.flow_rate_by_volume.set_for_volume(target_volume, ctx.params.asp_flow_rate) # type: ignore [attr-defined] + transfer_properties.aspirate.submerge.speed = ctx.params.asp_submerge_speed # type: ignore [attr-defined] + transfer_properties.aspirate.submerge.delay.enabled = ctx.params.submerged_delay_time > 0 # type: ignore [attr-defined] + transfer_properties.aspirate.submerge.delay.duration = ctx.params.submerged_delay_time # type: ignore [attr-defined] + transfer_properties.aspirate.retract.speed = ctx.params.asp_exit_speed # type: ignore [attr-defined] + + transfer_properties.dispense.push_out_by_volume.set_for_volume(target_volume, ctx.params.push_out) # type: ignore [attr-defined] + transfer_properties.dispense.flow_rate_by_volume.set_for_volume(target_volume, ctx.params.disp_flow_rate) # type: ignore [attr-defined] + transfer_properties.dispense.retract.blowout.flow_rate = ctx.params.blowout_flow_rate # type: ignore [attr-defined] + transfer_properties.dispense.submerge.speed = ctx.params.disp_submerge_speed # type: ignore [attr-defined] + transfer_properties.dispense.retract.speed = ctx.params.disp_exit_speed # type: ignore [attr-defined] + + transfer_properties.multi_dispense.push_out_by_volume.set_for_volume(target_volume, ctx.params.push_out) # type: ignore [attr-defined, union-attr] + transfer_properties.multi_dispense.flow_rate_by_volume.set_for_volume(target_volume, ctx.params.disp_flow_rate) # type: ignore [attr-defined, union-attr] + transfer_properties.multi_dispense.retract.blowout.flow_rate = ctx.params.blowout_flow_rate # type: ignore [attr-defined, union-attr] + transfer_properties.multi_dispense.submerge.speed = ctx.params.disp_submerge_speed # type: ignore [attr-defined, union-attr] + transfer_properties.multi_dispense.retract.speed = ctx.params.disp_exit_speed # type: ignore [attr-defined, union-attr] + + liquid_class.update_for(pip, tiprack, transfer_properties) + return liquid_class + for i in range(ctx.params.cycles): # type: ignore [attr-defined] tips = _get_tiprack(i) + liquid_class = _get_transfer_settings(tips) pip.pick_up_tip(tips["A1"]) if i == 0: _validate_dye_liquid_height() + # we'll always end up with 200 uL after dispensing + prep_vol = 200 - target_volume + plate.load_liquid(plate.wells(), prep_vol, diluent) + aspirate_volume = ( - ctx.params.target_volume # type: ignore [attr-defined] + target_volume + ctx.params.conditioning_volume # type: ignore [attr-defined] ) - aspirate_pos = ( - dye_source["A1"].estimate_liquid_height_after_pipetting( - Mount.LEFT, -1 * ctx.params.target_volume # type: ignore [attr-defined] - ) - - ctx.params.asp_sub_depth # type: ignore [attr-defined] - ) - # Move above reservoir - pip.move_to(location=dye_source["A1"].top()) - # Move to aspirate position at aspirate submerge speed - if ctx.is_simulating(): - aspirate_pos = 0.1 - pip.move_to( - location=dye_source["A1"].bottom(aspirate_pos), - speed=aspirate_submerge_speed, - ) - # Submerged delay time - ctx.delay(seconds=ctx.params.submerged_delay_time) # type: ignore [attr-defined] - # Aspirate in place - pip.aspirate( - volume=aspirate_volume, - location=None, + transfer_type = tx_comps_executor.TransferType.ONE_TO_ONE + if ctx.params.conditioning_volume > 0: # type: ignore [attr-defined] + transfer_type = tx_comps_executor.TransferType.ONE_TO_MANY + contents = aspirate_with_liquid_class( + pip, + aspirate_volume, + liquid_class.get_for(pip, tips), + transfer_type, + dye_source.wells()[0], ) # Dispense conditioning volume, if any, while submerged if ctx.params.conditioning_volume: # type: ignore [attr-defined] - pip.dispense( - volume=ctx.params.conditioning_volume, # type: ignore [attr-defined] - location=None, + contents = dispense_with_liquid_class( + pip, + ctx.params.conditioning_volume, # type: ignore [attr-defined] + liquid_class.get_for(pip, tips), + transfer_type, + dye_source.wells()[0], + contents, ) - # Exit liquid from aspirate position at aspirate exit speed - pip.move_to( - location=dye_source["A1"].top(), - speed=aspirate_exit_speed, - ) - pip.air_gap(air_gap, height=0) - # Retract pipette - pip._retract() # Pause after aspiration if ctx.params.pause_after_asp: # type: ignore [attr-defined] + pip._retract() ctx.pause("Inspect for dropouts.") - # we'll always end up with 200 uL after dispensing - prep_vol = 200 - ctx.params.target_volume # type: ignore [attr-defined] - plate.load_liquid(plate.wells(), prep_vol, diluent) - dispense_pos = plate["A1"].estimate_liquid_height_after_pipetting( - Mount.LEFT, ctx.params.target_volume # type: ignore [attr-defined] - ) - # note: would probably be good to add a needed dead volume in this comparison - dispense_submerge_depth = ctx.params.disp_sub_depth # type: ignore [attr-defined] - if dispense_submerge_depth >= dispense_pos: # type: ignore [attr-defined] - raise ValueError( - f"submerge depth {dispense_submerge_depth} \ - too deep for dispense position {dispense_pos}" - ) - dispense_pos -= ctx.params.disp_sub_depth # type: ignore [attr-defined] - # Move to plate - pip.move_to(location=plate["A1"].top()) - # Move to dispense position at dispense submerge speed - pip.move_to( - location=plate["A1"].bottom(dispense_pos), # type: ignore [arg-type] - speed=dispense_submerge_speed, - ) # Dispense - pip.dispense( - volume=ctx.params.target_volume, # type: ignore [attr-defined] - location=None, - push_out=set_push_out, # type: ignore [attr-defined] - ) - # Exit liquid from dispense position at dispense exit speed - blow_out_pos = plate["A1"].bottom( - dispense_pos + ctx.params.disp_sub_depth + 5 # type: ignore [attr-defined] - ) - pip.move_to( - location=blow_out_pos, - speed=dispense_exit_speed, + contents = dispense_with_liquid_class( + pip, + target_volume, + liquid_class.get_for(pip, tips), + transfer_type, + plate.wells()[0], + contents, ) - # Perform blow out - pip.blow_out() # Return tip to tip rack pip.return_tip() # Retract pipette diff --git a/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py b/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py index 3f84ee6208e..a0801636d05 100644 --- a/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py +++ b/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py @@ -140,3 +140,15 @@ def test_analasis(csv: str) -> None: ) print(result.stdout_stderr) assert result.exit_code == 0 + + +def test_photometric() -> None: + """Make sure each CSV can analyze successfully.""" + photometric_protocol = Path(__file__).parent / "../../../hardware_testing/protocols/universal_photometric.py" + result = _get_analysis_result( + [photometric_protocol], + "--json-output", + check=True, + ) + print(result.stdout_stderr) + assert result.exit_code == 0 From 96a9d61d1f41f58be5dc5910323b652bee014a62 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 22 Jul 2025 21:15:00 -0400 Subject: [PATCH 34/63] format --- .../gravimetric/test_gravimetric_protocol.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py b/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py index a0801636d05..9f107269510 100644 --- a/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py +++ b/hardware-testing/tests/hardware_testing/gravimetric/test_gravimetric_protocol.py @@ -144,7 +144,10 @@ def test_analasis(csv: str) -> None: def test_photometric() -> None: """Make sure each CSV can analyze successfully.""" - photometric_protocol = Path(__file__).parent / "../../../hardware_testing/protocols/universal_photometric.py" + photometric_protocol = ( + Path(__file__).parent + / "../../../hardware_testing/protocols/universal_photometric.py" + ) result = _get_analysis_result( [photometric_protocol], "--json-output", From bb62c75085f5cf6a3d572a4a61b11c19439b020b Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 22 Jul 2025 21:31:49 -0400 Subject: [PATCH 35/63] add robot name and operator --- .../protocol_replacement/gravimetric.py | 36 ++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 93871d6b13d..4a8db08ac86 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -7,6 +7,7 @@ from time import time import importlib import copy +import json from opentrons.protocol_api import ( ProtocolContext, @@ -348,10 +349,18 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: robot_serial = str(ot3api.get_serial_number()) fw_version = ot3api.fw_version git_description = get_git_description() - operator_name = "unused" + operator_name = ctx.params.operator # type: ignore [attr-defined] + robot_name = "Simulating" + if IS_ROBOT: + try: + with open("/data/ODD/discovery.json", "r") as disc: + robot_name = json.load(disc)["robots"][0]["name"] + except Exception: + robot_name = "Error Reading Robot Name" test_report.set_tag(pipette_tag) test_report.set_operator(operator_name) + test_report.set_robot_id(robot_name) test_report.set_version(git_description) test_report.set_firmware(fw_version) t50_str = f"{ctx.params.cavity_50}" # type: ignore [attr-defined] @@ -558,6 +567,31 @@ def add_parameters(parameters: ParameterContext) -> None: """Build the runtime parameters.""" parameters.add_csv_file("QC test profile", "qc_test_profile") + parameters.add_str( + display_name="Operator", + variable_name="operator", + default="Unused", + choices=[ + {"display_name": name, "value": name} + for name in [ + "Unused", + "Haiyan", + "Jiqing", + "Yanglin", + "Yangyin", + "Hejie", + "Zhihua", + "Huanjun", + "Chengkun", + "Xiongjian", + "Zhougui", + "Zhiwei", + "TE", + ] + ], + description="Operator for this QC run", + ) + parameters.add_str( display_name="Tip Cavity for 50ul tips", variable_name="cavity_50", From 893f8b72363059e0edc6c6ec7fea5eafda430980 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Wed, 23 Jul 2025 01:42:40 -0400 Subject: [PATCH 36/63] offload results to usb --- .../protocol_replacement/gravimetric.py | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 4a8db08ac86..de941b744b5 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -8,6 +8,7 @@ import importlib import copy import json +import subprocess from opentrons.protocol_api import ( ProtocolContext, @@ -706,6 +707,13 @@ def add_parameters(parameters: ParameterContext) -> None: description="Date portion of tip batch.", ) + parameters.add_bool( + display_name="Sync output to USB", + variable_name="export_results", + default=True, + description="This will attempt to sync the output files to an inserted flash drive.", + ) + def remove_tip(fixture_settings: FixtureSettings) -> None: """Either return or drop tip(s).""" @@ -1366,6 +1374,27 @@ def _adjust_settings_for_increment(fixture_settings: FixtureSettings) -> None: tx_ctl_lib.check_valid_liquid_class_volume_parameters = _override_check +def _find_usb_path() -> str: + with os.scandir(f"{str(infer_config_base_dir())}/testing_data/") as itr: + for path in itr: + if path.is_dir() and "mmcb" not in path.name: + return path.name + raise FileNotFoundError("No usb attached") + + +def _find_test_results() -> List[os.DirEntry]: + tests = [] + with os.scandir(f"{str(infer_config_base_dir())}/testing_data/") as itr: + for path in itr: + if ( + path.is_dir() + and "gravimetric" in path.name + and "simulate" not in path.name + ): + tests.append(path) + return tests + + def run(ctx: ProtocolContext) -> None: """Pick up, aspirate, and dispense one trial and write it to the report.""" fixture_settings = FixtureSettings.build(ctx) @@ -1382,3 +1411,16 @@ def run(ctx: ProtocolContext) -> None: fixture_settings.recorder.stop() fixture_settings.recorder.deactivate() set_output_file(None) + try: + if ctx.params.export_results and not ctx.is_simulating(): # type: ignore [attr-defined] + usb_dir = f"{_find_usb_path()}/testing_data" + results = _find_test_results() + for test_type in results: + os.makedirs(f"{usb_dir}/{test_type.name}", exist_ok=True) + subprocess.run( + ["rsync", "-a", f"{test_type.path}/", f"{usb_dir}/{test_type.name}"] + ) + + except Exception as e: + ctx.comment(f"couldn't sync files {str(e)}") + pass From 1a271c4f48c2c7b29312087cd23011c3448b8e55 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Wed, 23 Jul 2025 23:39:22 -0400 Subject: [PATCH 37/63] Revert "offload results to usb" This reverts commit 86eb33235a357a7abea07feab941c2251f018735. --- .../protocol_replacement/gravimetric.py | 42 ------------------- 1 file changed, 42 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index de941b744b5..4a8db08ac86 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -8,7 +8,6 @@ import importlib import copy import json -import subprocess from opentrons.protocol_api import ( ProtocolContext, @@ -707,13 +706,6 @@ def add_parameters(parameters: ParameterContext) -> None: description="Date portion of tip batch.", ) - parameters.add_bool( - display_name="Sync output to USB", - variable_name="export_results", - default=True, - description="This will attempt to sync the output files to an inserted flash drive.", - ) - def remove_tip(fixture_settings: FixtureSettings) -> None: """Either return or drop tip(s).""" @@ -1374,27 +1366,6 @@ def _adjust_settings_for_increment(fixture_settings: FixtureSettings) -> None: tx_ctl_lib.check_valid_liquid_class_volume_parameters = _override_check -def _find_usb_path() -> str: - with os.scandir(f"{str(infer_config_base_dir())}/testing_data/") as itr: - for path in itr: - if path.is_dir() and "mmcb" not in path.name: - return path.name - raise FileNotFoundError("No usb attached") - - -def _find_test_results() -> List[os.DirEntry]: - tests = [] - with os.scandir(f"{str(infer_config_base_dir())}/testing_data/") as itr: - for path in itr: - if ( - path.is_dir() - and "gravimetric" in path.name - and "simulate" not in path.name - ): - tests.append(path) - return tests - - def run(ctx: ProtocolContext) -> None: """Pick up, aspirate, and dispense one trial and write it to the report.""" fixture_settings = FixtureSettings.build(ctx) @@ -1411,16 +1382,3 @@ def run(ctx: ProtocolContext) -> None: fixture_settings.recorder.stop() fixture_settings.recorder.deactivate() set_output_file(None) - try: - if ctx.params.export_results and not ctx.is_simulating(): # type: ignore [attr-defined] - usb_dir = f"{_find_usb_path()}/testing_data" - results = _find_test_results() - for test_type in results: - os.makedirs(f"{usb_dir}/{test_type.name}", exist_ok=True) - subprocess.run( - ["rsync", "-a", f"{test_type.path}/", f"{usb_dir}/{test_type.name}"] - ) - - except Exception as e: - ctx.comment(f"couldn't sync files {str(e)}") - pass From 93d658122ba105b6f2b2ff3891af5bf8648f3eca Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Wed, 23 Jul 2025 23:39:56 -0400 Subject: [PATCH 38/63] fix robot serial/name in csv --- .../gravimetric/protocol_replacement/gravimetric.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 4a8db08ac86..200d9e321e1 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -360,7 +360,6 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: test_report.set_tag(pipette_tag) test_report.set_operator(operator_name) - test_report.set_robot_id(robot_name) test_report.set_version(git_description) test_report.set_firmware(fw_version) t50_str = f"{ctx.params.cavity_50}" # type: ignore [attr-defined] @@ -374,7 +373,7 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: t50_str += f"{ctx.params.tip_batch_1000}" # type: ignore [attr-defined] report.store_serial_numbers( test_report, - robot=robot_serial, + robot=robot_name, pipette=pipette_tag, tips={ "tips_50ul": t50_str, @@ -385,7 +384,9 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: environment=env_serial, liquid=liquid_name, ) - + # todo fix set serial to take robot name and serial separate + # do this after the set serial to overwrite where the name. + test_report.set_robot_id(robot_serial) ctx.load_trash_bin("A3") return cls( ctx=ctx, From 55d5060a7307e3cf6bfcfde4d2c9706c41b80fee Mon Sep 17 00:00:00 2001 From: wweiye <275241708@qq.com> Date: Thu, 24 Jul 2025 14:49:10 +0800 Subject: [PATCH 39/63] fix P1KH Production gravimetric test and add extra --- .../protocol_replacement/96ch1000.csv | 2 +- .../protocol_replacement/96ch1000_extra.csv | 30 +++++++++++++++++++ 2 files changed, 31 insertions(+), 1 deletion(-) create mode 100644 hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_extra.csv diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv index 610638781c2..249d047c573 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv @@ -14,7 +14,7 @@ tipracks_1000ul,D2,D3,C2,C3,B1,B2,B3,A1,A2 labware_on_scale,nest_1_reservoir_195ml,A1,,,,,,, slot_scale,C1,,,,,,,, volumes_to_test_20ul,5,,,,,,,, -volumes_to_test_50ul,1,50,,,,,,, +volumes_to_test_50ul,5,,,,,,,, volumes_to_test_200ul,200,,,,,,,, volumes_to_test_1000ul,1000,,,,,,,, extra_volumes_to_test_20ul,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_extra.csv new file mode 100644 index 00000000000..02bbf9cc874 --- /dev/null +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_extra.csv @@ -0,0 +1,30 @@ +name,gravimetric-ot3-p1000-96,,,,,,,, +increment,FALSE,,,,,,,, +mount,left,,,,,,,, +pipette,1000,96,,,,,,, +tips,50,200,1000,,,,,, +trials,9,,,,,,,, +return_tip,TRUE,,,,,,,, +touch_tip,FALSE,,,,,,,, +liquid,water,Deionized water,#0000ff,100000,,,,, +tipracks_20ul,D2,D3,C2,C3,B1,B2,B3,A1,A2 +tipracks_50ul,D2,D3,C2,C3,B1,B2,B3,A1,A2 +tipracks_200ul,D2,D3,C2,C3,B1,B2,B3,A1,A2 +tipracks_1000ul,D2,D3,C2,C3,B1,B2,B3,A1,A2 +labware_on_scale,nest_1_reservoir_195ml,A1,,,,,,, +slot_scale,C1,,,,,,,, +volumes_to_test_20ul,5,,,,,,,, +volumes_to_test_50ul,5,50,,,,,,, +volumes_to_test_200ul,200,,,,,,,, +volumes_to_test_1000ul,1000,,,,,,,, +extra_volumes_to_test_20ul,,,,,,,,, +extra_volumes_to_test_50ul,,,,,,,,, +extra_volumes_to_test_200ul,,,,,,,,, +extra_volumes_to_test_1000ul,,,,,,,,, +blank_trials,10,,,,,,,, +scale_delay,10,,,,,,,, +submerge_depth,-1.5,,,,,,,, +is_extra,TRUE,,,,,,,, +retract_discontinuity,20,,,,,,,, +disc_ver_cuttoff,36,,,,,,,, +gantry_speed,40,,,,,,,, From e88a09e10bb7280a0a305ae1929eb68a4daf0d1b Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 24 Jul 2025 01:52:37 -0400 Subject: [PATCH 40/63] don't push out 20 --- shared-data/liquid-class/definitions/1/water/1.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shared-data/liquid-class/definitions/1/water/1.json b/shared-data/liquid-class/definitions/1/water/1.json index 30b98c0ff54..a845a7e2e69 100644 --- a/shared-data/liquid-class/definitions/1/water/1.json +++ b/shared-data/liquid-class/definitions/1/water/1.json @@ -4072,7 +4072,7 @@ "volume": 50 } }, - "pushOutByVolume": [[1.0, 20.0]], + "pushOutByVolume": [[1.0, 5.0]], "delay": { "enable": false, "params": { @@ -4310,7 +4310,7 @@ "volume": 50 } }, - "pushOutByVolume": [[1.0, 20.0]], + "pushOutByVolume": [[1.0, 5.0]], "delay": { "enable": false, "params": { @@ -4548,7 +4548,7 @@ "volume": 50 } }, - "pushOutByVolume": [[1.0, 15.0]], + "pushOutByVolume": [[1.0, 5.0]], "delay": { "enable": false, "params": { @@ -4786,7 +4786,7 @@ "volume": 50 } }, - "pushOutByVolume": [[1.0, 15.0]], + "pushOutByVolume": [[1.0, 5.0]], "delay": { "enable": false, "params": { From b0b18674cf4b6d363bba1e051c396eccb8f5c4df Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 24 Jul 2025 02:38:33 -0400 Subject: [PATCH 41/63] configure tip count so that the lld tip is set to use overlap from A1 when changing tip sizes. --- .../gravimetric/protocol_replacement/gravimetric.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 200d9e321e1..18934147ef9 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -1167,12 +1167,13 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: tip_sizes_done = [] for tip in fixture_settings.tip_sizes: if tip != last_probed_tip_size: + _configure_tip_count(fixture_settings, 0) probe_tip = _get_tips_for_test(fixture_settings, tip, False)[0] pick_up_tip_for_channel(fixture_settings, probe_tip, 0) fixture_settings.pipette.require_liquid_presence( fixture_settings.liquid_source ) - last_probed_tip_size = fixture_settings.tip_sizes[0] + last_probed_tip_size = tip remove_tip(fixture_settings) volumes_to_tests = ( fixture_settings.volumes[tip] From fd0c1334b29da0cce30d0a1e620971e9961fc6e4 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 24 Jul 2025 02:38:47 -0400 Subject: [PATCH 42/63] add any exceptions to the log. --- .../gravimetric/protocol_replacement/gravimetric.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 18934147ef9..ce3c3c74d7e 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -1378,6 +1378,8 @@ def run(ctx: ProtocolContext) -> None: if fixture_settings.increment: _adjust_settings_for_increment(fixture_settings) _run(ctx, fixture_settings) + except Exception as e: + print_error(f"error during run {e}") finally: if fixture_settings.recorder is not None: print_info("ending recording") From c1e0155021e52277eefd92c6f070e0fad1fbb6fb Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 24 Jul 2025 02:56:37 -0400 Subject: [PATCH 43/63] fix increment returning used tip slots. --- .../gravimetric/protocol_replacement/gravimetric.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index ce3c3c74d7e..4dab53eb572 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -489,7 +489,10 @@ def _get_tips_for_test_single_multi( ] if fixture_settings.pipette_channels == 8: if fixture_settings.increment: - return tips.get_tips_for_all_channels_on_multi(fixture_settings.ctx, tip) + a_row_tips = tips.get_tips_for_all_channels_on_multi( + fixture_settings.ctx, tip + ) + return [t for t in a_row_tips if t.has_tip] else: return tips.get_tips_for_individual_channel_on_multi( fixture_settings.ctx, channel, tip, fixture_settings.pipette_volume From 93122ef6f428658dbbd0c0e3eddc3486d431dac8 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 24 Jul 2025 03:25:32 -0400 Subject: [PATCH 44/63] add first trial submerge depth. --- .../protocols/universal_photometric.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/hardware-testing/hardware_testing/protocols/universal_photometric.py b/hardware-testing/hardware_testing/protocols/universal_photometric.py index 68653c039ff..e4d3ef5e2b6 100644 --- a/hardware-testing/hardware_testing/protocols/universal_photometric.py +++ b/hardware-testing/hardware_testing/protocols/universal_photometric.py @@ -80,6 +80,14 @@ def add_parameters(parameters: protocol_api.ParameterContext) -> None: {"display_name": "5", "value": 5}, ], ) + parameters.add_float( + display_name="First aspirate submerge depth", + variable_name="first_asp_sub_depth", + description="Override the submerge depth for the first test.", + default=1.5, + minimum=0.0, + maximum=20.0, + ) parameters.add_bool( variable_name="use_pip_motion_defaults", @@ -393,10 +401,13 @@ def _validate_dye_liquid_height() -> None: target_volume = ctx.params.target_volume # type: ignore [attr-defined] - def _get_transfer_settings(tiprack: Labware) -> LiquidClass: + def _get_transfer_settings(tiprack: Labware, first_trial: bool) -> LiquidClass: liquid_class = ctx.get_liquid_class("water") transfer_properties = liquid_class.get_for(pip, tiprack) + asp_offset = Coordinate(x=0, y=0, z=-1 * ctx.params.asp_sub_depth) # type: ignore [attr-defined] + if first_trial: + asp_offset = Coordinate(x=0, y=0, z=-1 * ctx.params.first_asp_sub_depth) # type: ignore [attr-defined] disp_offset = Coordinate(x=0, y=0, z=-1 * ctx.params.disp_sub_depth) # type: ignore [attr-defined] transfer_properties.aspirate.submerge.start_position.offset = asp_offset @@ -436,7 +447,7 @@ def _get_transfer_settings(tiprack: Labware) -> LiquidClass: for i in range(ctx.params.cycles): # type: ignore [attr-defined] tips = _get_tiprack(i) - liquid_class = _get_transfer_settings(tips) + liquid_class = _get_transfer_settings(tips, i == 0) pip.pick_up_tip(tips["A1"]) if i == 0: From ae1ed1154ab2ff3fdf4009f3773ea30dd1151de2 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 24 Jul 2025 21:21:54 -0400 Subject: [PATCH 45/63] fix extra tests where the tip wasn't used in a standard volume. --- .../gravimetric/protocol_replacement/gravimetric.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 4dab53eb572..31dde49aa73 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -1178,11 +1178,10 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: ) last_probed_tip_size = tip remove_tip(fixture_settings) - volumes_to_tests = ( - fixture_settings.volumes[tip] - if tip not in tip_sizes_done - else fixture_settings.extra_volumes[tip] - ) + + volumes_to_tests = fixture_settings.volumes[tip] + if tip in tip_sizes_done or len(fixture_settings.volumes[tip]) == 0: + volumes_to_tests = fixture_settings.extra_volumes[tip] for volume in volumes_to_tests: trial_asp_dict: Dict[int, List[float]] = { t: [] for t in range(fixture_settings.trials) From f181ac2417a299008870711f41e7d9c23a411f99 Mon Sep 17 00:00:00 2001 From: wweiye <275241708@qq.com> Date: Fri, 25 Jul 2025 11:03:44 +0800 Subject: [PATCH 46/63] fix 8ch extra test tip slot --- .../gravimetric/protocol_replacement/8ch1000_extra.csv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv index 3fce1f7e458..1121539616e 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv @@ -8,8 +8,8 @@ return_tip,FALSE,,, touch_tip,FALSE,,, liquid,water,Deionized water,#0000ff,100000 tipracks_20ul,,,, -tipracks_50ul,D2,B2,C3,B1 -tipracks_200ul,C2,A1,, +tipracks_50ul,D2,B2,B1, +tipracks_200ul,A1,,, tipracks_1000ul,D3,B3,, labware_on_scale,radwag_pipette_calibration_vial,A1,, slot_scale,C1,,, From 512b0800ac86c515fccac00b903405cd73449499 Mon Sep 17 00:00:00 2001 From: wweiye <275241708@qq.com> Date: Fri, 25 Jul 2025 11:18:52 +0800 Subject: [PATCH 47/63] fix 8ch extra test tip slot --- .../protocol_replacement/8ch50_extra.csv | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv index 7826f0bfb6c..d11f137e238 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv @@ -1,30 +1,30 @@ -name,gravimetric-ot3-p50-multi,,,,, -increment,FALSE,,,,, -mount,left,,,,, -pipette,50,8,,,, -tips,50,50,,,, -trials,10,,,,, -return_tip,FALSE,,,,, -touch_tip,FALSE,,,,, -liquid,water,Deionized water,#0000ff,100000,, -tipracks_20ul,,,,,, -tipracks_50ul,D2,D3,C2,C3,B2,B3 -tipracks_200ul,,,,,, -tipracks_1000ul,,,,,, -labware_on_scale,radwag_pipette_calibration_vial,A1,,,, -slot_scale,C1,,,,, -volumes_to_test_20ul,,,,,, -volumes_to_test_50ul,1,50,,,, -volumes_to_test_200ul,,,,,, -volumes_to_test_1000ul,,,,,, -extra_volumes_to_test_20ul,,,,,, -extra_volumes_to_test_50ul,10,,,,, -extra_volumes_to_test_200ul,,,,,, -extra_volumes_to_test_1000ul,,,,,, -blank_trials,10,,,,, -scale_delay,10,,,,, -submerge_depth,-1.5,,,,, -is_extra,TRUE,,,,, -retract_discontinuity,20,,,,, -disc_ver_cuttoff,35,,,,, -gantry_speed,40,,,,, +name,gravimetric-ot3-p50-multi,,,, +increment,FALSE,,,, +mount,left,,,, +pipette,50,8,,, +tips,50,50,,, +trials,10,,,, +return_tip,FALSE,,,, +touch_tip,FALSE,,,, +liquid,water,Deionized water,#0000ff,100000, +tipracks_20ul,,,,, +tipracks_50ul,D2,D3,C2,B2,B3 +tipracks_200ul,,,,, +tipracks_1000ul,,,,, +labware_on_scale,radwag_pipette_calibration_vial,A1,,, +slot_scale,C1,,,, +volumes_to_test_20ul,,,,, +volumes_to_test_50ul,1,50,,, +volumes_to_test_200ul,,,,, +volumes_to_test_1000ul,,,,, +extra_volumes_to_test_20ul,,,,, +extra_volumes_to_test_50ul,10,,,, +extra_volumes_to_test_200ul,,,,, +extra_volumes_to_test_1000ul,,,,, +blank_trials,10,,,, +scale_delay,10,,,, +submerge_depth,-1.5,,,, +is_extra,TRUE,,,, +retract_discontinuity,20,,,, +disc_ver_cuttoff,35,,,, +gantry_speed,40,,,, From a6531860457eeff03a754cdfb7cb2194a6651538 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Mon, 28 Jul 2025 01:17:32 -0400 Subject: [PATCH 48/63] adjust photometric test --- .../protocols/universal_photometric.py | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/hardware-testing/hardware_testing/protocols/universal_photometric.py b/hardware-testing/hardware_testing/protocols/universal_photometric.py index e4d3ef5e2b6..608938ff52e 100644 --- a/hardware-testing/hardware_testing/protocols/universal_photometric.py +++ b/hardware-testing/hardware_testing/protocols/universal_photometric.py @@ -361,7 +361,7 @@ def _get_tiprack(trial_number: int) -> protocol_api.Labware: display_color="#FE0000", ) - def _validate_dye_liquid_height() -> None: + def _validate_dye_liquid_height(trial: int) -> None: liquid_height_valid = False retrying = False @@ -378,7 +378,7 @@ def _validate_dye_liquid_height() -> None: needed_starting_dye_volume = ( 96 - * ctx.params.cycles # type: ignore [attr-defined] + * (ctx.params.cycles - trial) # type: ignore [attr-defined] * ctx.params.target_volume # type: ignore [attr-defined] ) + DYE_RESERVOIR_DEAD_VOLUME # note: want to acct for needed dead volume here @@ -393,11 +393,11 @@ def _validate_dye_liquid_height() -> None: ) retrying = True pip._retract() - if ctx.params.lld: # type: ignore [attr-defined] - pip.return_tip() - pip._retract() - ctx.pause("Replace tip rack.") - pip.pick_up_tip(tips["A1"]) + #if ctx.params.lld: # type: ignore [attr-defined] + # pip.return_tip() + # pip._retract() + # ctx.pause("Replace tip rack.") + # pip.pick_up_tip(tips["A1"]) target_volume = ctx.params.target_volume # type: ignore [attr-defined] @@ -450,8 +450,9 @@ def _get_transfer_settings(tiprack: Labware, first_trial: bool) -> LiquidClass: liquid_class = _get_transfer_settings(tips, i == 0) pip.pick_up_tip(tips["A1"]) - if i == 0: - _validate_dye_liquid_height() + #if i == 0: + # _validate_dye_liquid_height() + _validate_dye_liquid_height(i) # we'll always end up with 200 uL after dispensing prep_vol = 200 - target_volume @@ -469,7 +470,7 @@ def _get_transfer_settings(tiprack: Labware, first_trial: bool) -> LiquidClass: aspirate_volume, liquid_class.get_for(pip, tips), transfer_type, - dye_source.wells()[0], + dye_source["A1"], ) # Dispense conditioning volume, if any, while submerged if ctx.params.conditioning_volume: # type: ignore [attr-defined] @@ -478,7 +479,7 @@ def _get_transfer_settings(tiprack: Labware, first_trial: bool) -> LiquidClass: ctx.params.conditioning_volume, # type: ignore [attr-defined] liquid_class.get_for(pip, tips), transfer_type, - dye_source.wells()[0], + dye_source["A1"], contents, ) # Pause after aspiration From 00f2f16f863de4360ae961a285c9600956ff63d2 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Mon, 28 Jul 2025 01:17:40 -0400 Subject: [PATCH 49/63] Revert "fix 8ch extra test tip slot" This reverts commit 5c5251b62454e84474e8a56361b815e7a3d5b107. --- .../gravimetric/protocol_replacement/8ch1000_extra.csv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv index 1121539616e..3fce1f7e458 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv @@ -8,8 +8,8 @@ return_tip,FALSE,,, touch_tip,FALSE,,, liquid,water,Deionized water,#0000ff,100000 tipracks_20ul,,,, -tipracks_50ul,D2,B2,B1, -tipracks_200ul,A1,,, +tipracks_50ul,D2,B2,C3,B1 +tipracks_200ul,C2,A1,, tipracks_1000ul,D3,B3,, labware_on_scale,radwag_pipette_calibration_vial,A1,, slot_scale,C1,,, From 8b47786e4714515d43a7881f29098a475ed3f76c Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Mon, 28 Jul 2025 01:28:28 -0400 Subject: [PATCH 50/63] format csv --- .../gravimetric/protocol_replacement/8ch1000_extra.csv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv index 3fce1f7e458..cc5eb02519d 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv @@ -2,7 +2,7 @@ name,gravimetric-ot3-p1000-multi,,, increment,FALSE,,, mount,left,,, pipette,1000,8,, -tips,50,1000,50,200 +tips,50,1000,50,200, trials,10,,, return_tip,FALSE,,, touch_tip,FALSE,,, From c82dc6b8b9a592e7b6bc6e389a986a0a96dfeb9b Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Mon, 28 Jul 2025 01:28:44 -0400 Subject: [PATCH 51/63] Revert "fix 8ch extra test tip slot" This reverts commit 7a3272673b9cf3fac1094747065f4928c9aa6c9d. --- .../protocol_replacement/8ch50_extra.csv | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv index d11f137e238..7826f0bfb6c 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv @@ -1,30 +1,30 @@ -name,gravimetric-ot3-p50-multi,,,, -increment,FALSE,,,, -mount,left,,,, -pipette,50,8,,, -tips,50,50,,, -trials,10,,,, -return_tip,FALSE,,,, -touch_tip,FALSE,,,, -liquid,water,Deionized water,#0000ff,100000, -tipracks_20ul,,,,, -tipracks_50ul,D2,D3,C2,B2,B3 -tipracks_200ul,,,,, -tipracks_1000ul,,,,, -labware_on_scale,radwag_pipette_calibration_vial,A1,,, -slot_scale,C1,,,, -volumes_to_test_20ul,,,,, -volumes_to_test_50ul,1,50,,, -volumes_to_test_200ul,,,,, -volumes_to_test_1000ul,,,,, -extra_volumes_to_test_20ul,,,,, -extra_volumes_to_test_50ul,10,,,, -extra_volumes_to_test_200ul,,,,, -extra_volumes_to_test_1000ul,,,,, -blank_trials,10,,,, -scale_delay,10,,,, -submerge_depth,-1.5,,,, -is_extra,TRUE,,,, -retract_discontinuity,20,,,, -disc_ver_cuttoff,35,,,, -gantry_speed,40,,,, +name,gravimetric-ot3-p50-multi,,,,, +increment,FALSE,,,,, +mount,left,,,,, +pipette,50,8,,,, +tips,50,50,,,, +trials,10,,,,, +return_tip,FALSE,,,,, +touch_tip,FALSE,,,,, +liquid,water,Deionized water,#0000ff,100000,, +tipracks_20ul,,,,,, +tipracks_50ul,D2,D3,C2,C3,B2,B3 +tipracks_200ul,,,,,, +tipracks_1000ul,,,,,, +labware_on_scale,radwag_pipette_calibration_vial,A1,,,, +slot_scale,C1,,,,, +volumes_to_test_20ul,,,,,, +volumes_to_test_50ul,1,50,,,, +volumes_to_test_200ul,,,,,, +volumes_to_test_1000ul,,,,,, +extra_volumes_to_test_20ul,,,,,, +extra_volumes_to_test_50ul,10,,,,, +extra_volumes_to_test_200ul,,,,,, +extra_volumes_to_test_1000ul,,,,,, +blank_trials,10,,,,, +scale_delay,10,,,,, +submerge_depth,-1.5,,,,, +is_extra,TRUE,,,,, +retract_discontinuity,20,,,,, +disc_ver_cuttoff,35,,,,, +gantry_speed,40,,,,, From ee073e534525a82f96ffb1eb19bca1e5b61a68d9 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 29 Jul 2025 02:31:09 -0400 Subject: [PATCH 52/63] update position offsets --- .../protocol_replacement/gravimetric.py | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 31dde49aa73..a3ac3e002bd 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -1012,21 +1012,29 @@ def run_one_test( transfer_properties = fixture_settings.liquid_class.get_for( fixture_settings.pipette.name, tip_rack=tiprack_uri ) - offset = _get_offset_for_channel( + asp_offset = _get_offset_for_channel( fixture_settings, channel, fixture_settings.submerge_depth ) - transfer_properties.aspirate.submerge.start_position.offset = offset - transfer_properties.dispense.submerge.start_position.offset = offset - transfer_properties.aspirate.aspirate_position.offset = offset - transfer_properties.dispense.dispense_position.offset = offset - transfer_properties.aspirate.retract.end_position.offset = offset - transfer_properties.dispense.retract.end_position.offset = offset + disp_offset = _get_offset_for_channel( + fixture_settings, channel, fixture_settings.submerge_depth + ) + disp_retract_offset = _get_offset_for_channel( + fixture_settings, channel, 5 + fixture_settings.submerge_depth + ) + transfer_properties.dispense.submerge.start_position.offset = disp_offset + transfer_properties.aspirate.aspirate_position.offset = asp_offset + transfer_properties.dispense.dispense_position.offset = disp_offset + transfer_properties.aspirate.retract.end_position.offset = disp_retract_offset + transfer_properties.dispense.retract.end_position.offset = disp_retract_offset transfer_properties.aspirate.aspirate_position.position_reference = ( PositionReference.LIQUID_MENISCUS ) transfer_properties.dispense.dispense_position.position_reference = ( PositionReference.LIQUID_MENISCUS ) + transfer_properties.dispense.retract.end_position.position_reference = ( + PositionReference.LIQUID_MENISCUS + ) fixture_settings.pipette._core.load_liquid_class( # type: ignore [attr-defined] name=fixture_settings.liquid_class.name, transfer_properties=transfer_properties, @@ -1043,7 +1051,7 @@ def run_one_test( well_top = fixture_settings.liquid_source.top().point above_scale = Point( well_top.x, - well_top.y + offset.y, + well_top.y + asp_offset.y, fixture_settings.pipette._get_last_location_by_api_version().point.z, # type: ignore [union-attr] ) fixture_settings.pipette.move_to(Location(above_scale, None)) From d1eb581931fafe39c56043ab16f4ec2e0e774613 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 29 Jul 2025 02:31:40 -0400 Subject: [PATCH 53/63] use values from passing QC --- .../liquid-class/definitions/1/water/1.json | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/shared-data/liquid-class/definitions/1/water/1.json b/shared-data/liquid-class/definitions/1/water/1.json index a845a7e2e69..e8b8f5909f3 100644 --- a/shared-data/liquid-class/definitions/1/water/1.json +++ b/shared-data/liquid-class/definitions/1/water/1.json @@ -122,7 +122,7 @@ [50.0, 0.0] ], "blowout": { - "enable": false, + "enable": true, "params": { "location": "destination", "flowRate": 50.0 @@ -1086,7 +1086,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } } }, @@ -1124,7 +1124,7 @@ [50.0, 0.0] ], "blowout": { - "enable": false, + "enable": true, "params": { "location": "destination", "flowRate": 478.0 @@ -1166,7 +1166,7 @@ "volume": 50 } }, - "pushOutByVolume": [[1.0, 20.0]], + "pushOutByVolume": [[1.0, 5.0]], "delay": { "enable": false, "params": { @@ -1374,7 +1374,7 @@ [50.0, 0.0] ], "blowout": { - "enable": false, + "enable": true, "params": { "location": "destination", "flowRate": 478.0 @@ -1416,7 +1416,7 @@ "volume": 50 } }, - "pushOutByVolume": [[1.0, 20.0]], + "pushOutByVolume": [[1.0, 5.0]], "delay": { "enable": false, "params": { @@ -2543,7 +2543,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } } }, @@ -2581,7 +2581,7 @@ [50.0, 0.0] ], "blowout": { - "enable": false, + "enable": true, "params": { "location": "destination", "flowRate": 478.0 @@ -2623,7 +2623,7 @@ "volume": 50 } }, - "pushOutByVolume": [[1.0, 20.0]], + "pushOutByVolume": [[1.0, 5.0]], "delay": { "enable": false, "params": { @@ -2831,7 +2831,7 @@ [50.0, 0.0] ], "blowout": { - "enable": false, + "enable": true, "params": { "location": "destination", "flowRate": 478.0 @@ -2873,7 +2873,7 @@ "volume": 50 } }, - "pushOutByVolume": [[1.0, 20.0]], + "pushOutByVolume": [[1.0, 5.0]], "delay": { "enable": false, "params": { From e1bfafd9ae47404f849e092e2e1a06da881c2121 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 29 Jul 2025 02:43:16 -0400 Subject: [PATCH 54/63] Fix numbers for when using multiple channels at once. --- .../gravimetric/protocol_replacement/gravimetric.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index a3ac3e002bd..00d26d0589b 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -1238,6 +1238,15 @@ def _run(ctx: ProtocolContext, fixture_settings: FixtureSettings) -> None: ) + avg_disp_evap ) + if ( + fixture_settings.increment + or fixture_settings.pipette_channels == 96 + ): + avg_asp_evap = avg_asp_evap / fixture_settings.pipette_channels + disp_with_evap = ( + disp_with_evap / fixture_settings.pipette_channels + ) + if fixture_settings.ctx.is_simulating(): cur_height: float = 10.0 else: From 3d86ba1fa48132f97f1ddac3648b11f8e8d6a833 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 29 Jul 2025 02:43:37 -0400 Subject: [PATCH 55/63] add a system to lld every time but disable for now' --- .../protocol_replacement/1ch1000.csv | 1 + .../protocol_replacement/1ch1000_extra.csv | 1 + .../1ch1000_increment_1000ul.csv | 1 + .../1ch1000_increment_200ul.csv | 1 + .../1ch1000_increment_50ul.csv | 1 + .../protocol_replacement/1ch50.csv | 1 + .../protocol_replacement/1ch50_extra.csv | 1 + .../1ch50_increment_50ul.csv | 1 + .../1ch50_increment_50ul_lv.csv | 1 + .../protocol_replacement/8ch1000.csv | 1 + .../protocol_replacement/8ch1000_extra.csv | 3 ++- .../8ch1000_increment_1000ul.csv | 1 + .../8ch1000_increment_200ul.csv | 1 + .../8ch1000_increment_50ul.csv | 1 + .../protocol_replacement/8ch50.csv | 1 + .../protocol_replacement/8ch50_extra.csv | 1 + .../8ch50_increment_50ul.csv | 1 + .../8ch50_increment_50ul_lv.csv | 1 + .../protocol_replacement/96ch1000.csv | 1 + .../protocol_replacement/96ch1000_extra.csv | 1 + .../96ch1000_increment_1000ul.csv | 1 + .../96ch1000_increment_200ul.csv | 1 + .../96ch1000_increment_50ul.csv | 1 + .../protocol_replacement/96ch200.csv | 1 + .../96ch200_increment_200ul.csv | 1 + .../96ch200_increment_50ul.csv | 1 + .../protocol_replacement/gravimetric.py | 22 ++++++++++++------- 27 files changed, 41 insertions(+), 9 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv index f7648952dd6..1ca2d9bd3f4 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,, retract_discontinuity,20,,, disc_ver_cuttoff,37,,, gantry_speed,40,,, +lld_every_tip,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv index 91fa1eeb90e..05aaddcb620 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_extra.csv @@ -28,3 +28,4 @@ is_extra,TRUE,,, retract_discontinuity,20,,, disc_ver_cuttoff,37,,, gantry_speed,40,,, +lld_every_tip,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv index 709741d65d3..2673dc196a6 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_1000ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,, disc_ver_cuttoff,37,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv index 1ca300528ed..3ee214bdfe3 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_200ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,, disc_ver_cuttoff,37,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv index 0ce6ee38704..d7a10d7ac64 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch1000_increment_50ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,,,,,, disc_ver_cuttoff,37,,,,,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv index b5cf095dfa8..be2cda9fbcf 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,, retract_discontinuity,20,,, disc_ver_cuttoff,36,,, gantry_speed,40,,, +lld_every_tip,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv index 2d217520925..048d5e48c22 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_extra.csv @@ -28,3 +28,4 @@ is_extra,TRUE,,, retract_discontinuity,20,,, disc_ver_cuttoff,36,,, gantry_speed,40,,, +lld_every_tip,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv index 7671882f216..772a850ba83 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,,,,,, disc_ver_cuttoff,36,,,,,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv index 43aeeaedec3..35bd6079ea6 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/1ch50_increment_50ul_lv.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,,,,, disc_ver_cuttoff,36,,,,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv index 34a2658f1c7..54a9c799c68 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,, retract_discontinuity,20,,, disc_ver_cuttoff,35,,, gantry_speed,40,,, +lld_every_tip,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv index cc5eb02519d..1b100550a50 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_extra.csv @@ -2,7 +2,7 @@ name,gravimetric-ot3-p1000-multi,,, increment,FALSE,,, mount,left,,, pipette,1000,8,, -tips,50,1000,50,200, +tips,50,1000,50,200 trials,10,,, return_tip,FALSE,,, touch_tip,FALSE,,, @@ -28,3 +28,4 @@ is_extra,TRUE,,, retract_discontinuity,20,,, disc_ver_cuttoff,35,,, gantry_speed,40,,, +lld_every_tip,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv index 156dca58807..551625e501f 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_1000ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,,,,,,,,,,, disc_ver_cuttoff,35,,,,,,,,,,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv index 89643793cd3..b41964336a8 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_200ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,,,,,,,,,,, disc_ver_cuttoff,35,,,,,,,,,,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv index 3e0da78f1af..af7c4e6fa43 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch1000_increment_50ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,,,,,,,,,,,, disc_ver_cuttoff,35,,,,,,,,,,,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv index f572da946e7..a5613ba964a 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,, retract_discontinuity,20,,, disc_ver_cuttoff,35,,, gantry_speed,40,,, +lld_every_tip,FALSE,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv index 7826f0bfb6c..cc320fd1e12 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_extra.csv @@ -28,3 +28,4 @@ is_extra,TRUE,,,,, retract_discontinuity,20,,,,, disc_ver_cuttoff,35,,,,, gantry_speed,40,,,,, +lld_every_tip,FALSE,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv index 96b4d16c357..568e26baf4c 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,,,,,,,,,,, disc_ver_cuttoff,35,,,,,,,,,,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv index 5b3d444cd7b..50a805338fb 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/8ch50_increment_50ul_lv.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,,,,,,,,,, disc_ver_cuttoff,35,,,,,,,,,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv index 249d047c573..14e8084fb5d 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,, retract_discontinuity,20,,,,,,,, disc_ver_cuttoff,36,,,,,,,, gantry_speed,40,,,,,,,, +lld_every_tip,FALSE,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_extra.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_extra.csv index 02bbf9cc874..c5cbbd1bb98 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_extra.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_extra.csv @@ -28,3 +28,4 @@ is_extra,TRUE,,,,,,,, retract_discontinuity,20,,,,,,,, disc_ver_cuttoff,36,,,,,,,, gantry_speed,40,,,,,,,, +lld_every_tip,FALSE,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv index add5a5974b1..8651b21e2d6 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_1000ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,,,, disc_ver_cuttoff,36,,,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv index 50bc7a21f32..586f96954a5 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_200ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,, disc_ver_cuttoff,36,,,,,,,,,,, gantry_speed,40,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv index b2ad8dcdd30..6fb0774e507 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch1000_increment_50ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,, disc_ver_cuttoff,36,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv index c1354dbb1a4..a11c49cfd5d 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,, retract_discontinuity,20,,,,,,,, disc_ver_cuttoff,31,,,,,,,, gantry_speed,40,,,,,,,, +lld_every_tip,FALSE,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv index ddf6ca1692b..f84b0cf1fee 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_200ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,, disc_ver_cuttoff,31,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv index 68b4ffe2c66..7b71f86929e 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/96ch200_increment_50ul.csv @@ -28,3 +28,4 @@ is_extra,FALSE,,,,,,,,,,,,,,,, retract_discontinuity,20,,,,,,,,,,,,,,,, disc_ver_cuttoff,31,,,,,,,,,,,,,,,, gantry_speed,40,,,,,,,,,,,,,,,, +lld_every_tip,FALSE,,,,,,,,,,,,,,,, diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 00d26d0589b..789daf15d90 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -172,6 +172,7 @@ class FixtureSettings: fast_simulate: bool retract_discontinuity: float disc_ver_cuttoff: int + lld_every_tip: bool @classmethod def build(cls, ctx: ProtocolContext) -> "FixtureSettings": @@ -250,6 +251,7 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: ) disc_ver_cuttoff = int(lookup_key("disc_ver_cuttoff", csv_params)[0]) gantry_speed = int(lookup_key("gantry_speed", csv_params)[0]) + lld_every_tip = bool(lookup_key("lld_every_tip", csv_params)[0] == "TRUE") volumes = { 20: volumes_to_test_20ul, 50: volumes_to_test_50ul, @@ -427,6 +429,7 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: fast_simulate=fast_simulate, retract_discontinuity=retract_discontinuity, disc_ver_cuttoff=disc_ver_cuttoff, + lld_every_tip=lld_every_tip, ) def validate_settings(self) -> bool: @@ -1060,15 +1063,18 @@ def run_one_test( fixture_settings, MeasurementType.INIT, tip, volume, trial, channel=channel ) liq = SupportedLiquid.from_string(fixture_settings.liquid_name) - volume_lost_since_last_trial = calculate_change_in_volume( - last_measurement, pre_aspirate, liq - ) - if not fixture_settings.ctx.is_simulating(): - fixture_settings.liquid_source.load_liquid( - fixture_settings.liquid, - fixture_settings.liquid_source.current_liquid_volume() # type: ignore[arg-type] - - volume_lost_since_last_trial, + if fixture_settings.lld_every_tip: + fixture_settings.pipette.require_liquid_presence(fixture_settings.liquid_source) + else: + volume_lost_since_last_trial = calculate_change_in_volume( + last_measurement, pre_aspirate, liq ) + if not fixture_settings.ctx.is_simulating(): + fixture_settings.liquid_source.load_liquid( + fixture_settings.liquid, + fixture_settings.liquid_source.current_liquid_volume() # type: ignore[arg-type] + - volume_lost_since_last_trial, + ) print_info("aspirating") contents = aspirate_with_liquid_class( fixture_settings, tip, volume, trial, channel, transfer_properties From 44418dc694623de0f99c88ab96c9dc463db601db Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Thu, 31 Jul 2025 11:03:13 -0400 Subject: [PATCH 56/63] fix submerge offset. --- .../gravimetric/protocol_replacement/gravimetric.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 789daf15d90..3a278877b3a 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -1024,7 +1024,7 @@ def run_one_test( disp_retract_offset = _get_offset_for_channel( fixture_settings, channel, 5 + fixture_settings.submerge_depth ) - transfer_properties.dispense.submerge.start_position.offset = disp_offset + transfer_properties.aspirate.submerge.start_position.offset = asp_offset transfer_properties.aspirate.aspirate_position.offset = asp_offset transfer_properties.dispense.dispense_position.offset = disp_offset transfer_properties.aspirate.retract.end_position.offset = disp_retract_offset From 6588912b2e8c9d419c134e246d06ab7a4556fbd2 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Fri, 1 Aug 2025 10:39:05 -0400 Subject: [PATCH 57/63] format --- .../hardware_testing/protocols/universal_photometric.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hardware-testing/hardware_testing/protocols/universal_photometric.py b/hardware-testing/hardware_testing/protocols/universal_photometric.py index 608938ff52e..3408676f3f1 100644 --- a/hardware-testing/hardware_testing/protocols/universal_photometric.py +++ b/hardware-testing/hardware_testing/protocols/universal_photometric.py @@ -393,7 +393,7 @@ def _validate_dye_liquid_height(trial: int) -> None: ) retrying = True pip._retract() - #if ctx.params.lld: # type: ignore [attr-defined] + # if ctx.params.lld: # type: ignore [attr-defined] # pip.return_tip() # pip._retract() # ctx.pause("Replace tip rack.") @@ -450,7 +450,7 @@ def _get_transfer_settings(tiprack: Labware, first_trial: bool) -> LiquidClass: liquid_class = _get_transfer_settings(tips, i == 0) pip.pick_up_tip(tips["A1"]) - #if i == 0: + # if i == 0: # _validate_dye_liquid_height() _validate_dye_liquid_height(i) From 0f2a780035cf8d65df6a5e7b35b9b84de2182170 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Mon, 4 Aug 2025 12:16:49 -0400 Subject: [PATCH 58/63] fix the dispense submerge offset. --- .../gravimetric/protocol_replacement/gravimetric.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 3a278877b3a..36a2cc6a119 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -1025,6 +1025,7 @@ def run_one_test( fixture_settings, channel, 5 + fixture_settings.submerge_depth ) transfer_properties.aspirate.submerge.start_position.offset = asp_offset + transfer_properties.dispense.submerge.start_position.offset = disp_offset transfer_properties.aspirate.aspirate_position.offset = asp_offset transfer_properties.dispense.dispense_position.offset = disp_offset transfer_properties.aspirate.retract.end_position.offset = disp_retract_offset From 47e3ae19b28d7a3dbae9393e24b4f34f94153843 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Tue, 5 Aug 2025 16:44:23 -0400 Subject: [PATCH 59/63] adjust tuning values to match old settings and fix positioning. --- .../protocol_replacement/gravimetric.py | 46 ++++++++++++++----- .../liquid-class/definitions/1/water/1.json | 40 ++++++++-------- 2 files changed, 54 insertions(+), 32 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 36a2cc6a119..88067182940 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -165,6 +165,7 @@ class FixtureSettings: scale_delay: int blank_trials: int submerge_depth: float + retracted_offset: float isolate_volumes: bool extra: bool labware_on_scale: str @@ -216,6 +217,9 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: scale_delay = int(lookup_key("scale_delay", csv_params)[0]) blank_trials = int(lookup_key("blank_trials", csv_params)[0]) submerge_depth = float(lookup_key("submerge_depth", csv_params)[0]) + retracted_offset = 5.0 + # TODO maybe make this a CSV option + # retracted_offset = float(lookup_key("retracted_offset", csv_params)[0]) volumes_to_test_20ul = [ float(volume) for volume in lookup_key("volumes_to_test_20ul", csv_params) ] @@ -422,6 +426,7 @@ def lookup_key(key: str, csv: List[List[str]]) -> List[str]: scale_delay=scale_delay, blank_trials=blank_trials, submerge_depth=submerge_depth, + retracted_offset=retracted_offset, isolate_volumes=False, extra=extra, labware_on_scale=labware_on_scale, @@ -860,6 +865,7 @@ def aspirate_with_liquid_class( transfer_properties: TransferProperties, ) -> List[tx_comps_executor.LiquidAndAirGapPair]: """Aspirate with liquid class.""" + print_info(f"transfer props {transfer_properties}") fixture_settings.recorder.set_sample_tag( create_measurement_tag("aspirate", volume, channel, trial) ) @@ -1015,30 +1021,46 @@ def run_one_test( transfer_properties = fixture_settings.liquid_class.get_for( fixture_settings.pipette.name, tip_rack=tiprack_uri ) - asp_offset = _get_offset_for_channel( + + submerged_offset = _get_offset_for_channel( fixture_settings, channel, fixture_settings.submerge_depth ) - disp_offset = _get_offset_for_channel( - fixture_settings, channel, fixture_settings.submerge_depth + retracted_offset = _get_offset_for_channel( + fixture_settings, channel, fixture_settings.retracted_offset ) - disp_retract_offset = _get_offset_for_channel( - fixture_settings, channel, 5 + fixture_settings.submerge_depth + + # aspirate and dispense submerge start offsets. + transfer_properties.aspirate.submerge.start_position.position_reference = ( + PositionReference.LIQUID_MENISCUS ) - transfer_properties.aspirate.submerge.start_position.offset = asp_offset - transfer_properties.dispense.submerge.start_position.offset = disp_offset - transfer_properties.aspirate.aspirate_position.offset = asp_offset - transfer_properties.dispense.dispense_position.offset = disp_offset - transfer_properties.aspirate.retract.end_position.offset = disp_retract_offset - transfer_properties.dispense.retract.end_position.offset = disp_retract_offset + transfer_properties.dispense.submerge.start_position.position_reference = ( + PositionReference.LIQUID_MENISCUS + ) + transfer_properties.aspirate.submerge.start_position.offset = retracted_offset + transfer_properties.dispense.submerge.start_position.offset = retracted_offset + + # aspirate and dispense offsets transfer_properties.aspirate.aspirate_position.position_reference = ( PositionReference.LIQUID_MENISCUS ) transfer_properties.dispense.dispense_position.position_reference = ( PositionReference.LIQUID_MENISCUS ) + + transfer_properties.aspirate.aspirate_position.offset = submerged_offset + transfer_properties.dispense.dispense_position.offset = submerged_offset + + # aspirate and dispense retract end offsets + + transfer_properties.aspirate.retract.end_position.position_reference = ( + PositionReference.LIQUID_MENISCUS + ) transfer_properties.dispense.retract.end_position.position_reference = ( PositionReference.LIQUID_MENISCUS ) + transfer_properties.aspirate.retract.end_position.offset = retracted_offset + transfer_properties.dispense.retract.end_position.offset = retracted_offset + fixture_settings.pipette._core.load_liquid_class( # type: ignore [attr-defined] name=fixture_settings.liquid_class.name, transfer_properties=transfer_properties, @@ -1055,7 +1077,7 @@ def run_one_test( well_top = fixture_settings.liquid_source.top().point above_scale = Point( well_top.x, - well_top.y + asp_offset.y, + well_top.y + retracted_offset.y, fixture_settings.pipette._get_last_location_by_api_version().point.z, # type: ignore [union-attr] ) fixture_settings.pipette.move_to(Location(above_scale, None)) diff --git a/shared-data/liquid-class/definitions/1/water/1.json b/shared-data/liquid-class/definitions/1/water/1.json index e8b8f5909f3..c4e291569e2 100644 --- a/shared-data/liquid-class/definitions/1/water/1.json +++ b/shared-data/liquid-class/definitions/1/water/1.json @@ -1023,7 +1023,7 @@ "z": 2 } }, - "speed": 100, + "speed": 50, "delay": { "enable": false, "params": { @@ -1042,8 +1042,8 @@ }, "speed": 50, "airGapByVolume": [ - [1.0, 1.0], - [49.0, 1.0], + [1.0, 0.1], + [49.0, 0.1], [50.0, 0.0] ], "touchTip": { @@ -1100,7 +1100,7 @@ "z": 2 } }, - "speed": 100, + "speed": 50, "delay": { "enable": false, "params": { @@ -1119,15 +1119,15 @@ }, "speed": 50, "airGapByVolume": [ - [1.0, 1.0], - [49.0, 1.0], + [1.0, 0.1], + [49.0, 0.1], [50.0, 0.0] ], "blowout": { "enable": true, "params": { "location": "destination", - "flowRate": 478.0 + "flowRate": 318.0 } }, "touchTip": { @@ -1170,7 +1170,7 @@ "delay": { "enable": false, "params": { - "duration": 0.0 + "duration": 0.5 } } }, @@ -1292,8 +1292,8 @@ }, "speed": 50, "airGapByVolume": [ - [1.0, 1.0], - [49.0, 1.0], + [1.0, 0.1], + [49.0, 0.1], [50.0, 0.0] ], "touchTip": { @@ -1369,8 +1369,8 @@ }, "speed": 50, "airGapByVolume": [ - [1.0, 1.0], - [49.0, 1.0], + [1.0, 0.1], + [49.0, 0.1], [50.0, 0.0] ], "blowout": { @@ -2499,8 +2499,8 @@ }, "speed": 50, "airGapByVolume": [ - [1.0, 1.0], - [49.0, 1.0], + [1.0, 0.1], + [49.0, 0.1], [50.0, 0.0] ], "touchTip": { @@ -2576,8 +2576,8 @@ }, "speed": 50, "airGapByVolume": [ - [1.0, 1.0], - [49.0, 1.0], + [1.0, 0.1], + [49.0, 0.1], [50.0, 0.0] ], "blowout": { @@ -2749,8 +2749,8 @@ }, "speed": 50, "airGapByVolume": [ - [1.0, 1.0], - [49.0, 1.0], + [1.0, 0.1], + [49.0, 0.1], [50.0, 0.0] ], "touchTip": { @@ -2826,8 +2826,8 @@ }, "speed": 50, "airGapByVolume": [ - [1.0, 1.0], - [49.0, 1.0], + [1.0, 0.1], + [49.0, 0.1], [50.0, 0.0] ], "blowout": { From 4fba14435fa39876d77b3b1d7c8121551978e7c6 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Wed, 6 Aug 2025 15:04:25 -0400 Subject: [PATCH 60/63] format lint --- .../protocol_replacement/gravimetric.py | 15 ++++++++++++--- .../protocols/universal_photometric.py | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py index 88067182940..6ad99193891 100644 --- a/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py +++ b/hardware-testing/hardware_testing/gravimetric/protocol_replacement/gravimetric.py @@ -847,9 +847,18 @@ def reset_retract_discontinuity(fixture_settings: FixtureSettings) -> None: if _should_alter_discontinuity(fixture_settings): hw_api = fixture_settings.ctx._core.get_hardware() if fixture_settings.pipette_channels == 96: - hw_api.config.motion_settings.max_speed_discontinuity.high_throughput[ - OT3AxisKind.Z - ] = DEFAULT_MAX_SPEED_DISCONTINUITY.high_throughput[OT3AxisKind.Z] + if fixture_settings.pipette_volume == 200: + hw_api.config.motion_settings.max_speed_discontinuity.high_throughput_200[ + OT3AxisKind.Z + ] = DEFAULT_MAX_SPEED_DISCONTINUITY.high_throughput_200[ + OT3AxisKind.Z + ] + else: + hw_api.config.motion_settings.max_speed_discontinuity.high_throughput_1000[ + OT3AxisKind.Z + ] = DEFAULT_MAX_SPEED_DISCONTINUITY.high_throughput_1000[ + OT3AxisKind.Z + ] else: hw_api.config.motion_settings.max_speed_discontinuity.low_throughput[ OT3AxisKind.Z diff --git a/hardware-testing/hardware_testing/protocols/universal_photometric.py b/hardware-testing/hardware_testing/protocols/universal_photometric.py index 3408676f3f1..9562ea06c3f 100644 --- a/hardware-testing/hardware_testing/protocols/universal_photometric.py +++ b/hardware-testing/hardware_testing/protocols/universal_photometric.py @@ -314,7 +314,7 @@ def aspirate_with_liquid_class( return contents -def run(ctx: protocol_api.ProtocolContext) -> None: # noqa: C901 +def run(ctx: protocol_api.ProtocolContext) -> None: """Run.""" ctx.load_trash_bin("A3") # tips From a3658fb331f8b9f5941d8ef3a1bd3a82b28d6983 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Wed, 6 Aug 2025 15:07:42 -0400 Subject: [PATCH 61/63] format js --- .../2/general/ninety_six_channel/p200/3_1.json | 10 +++++----- .../2/general/ninety_six_channel/p200/3_2.json | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_1.json b/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_1.json index 47518fee141..d184e7d903b 100644 --- a/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_1.json +++ b/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_1.json @@ -274,7 +274,7 @@ "v1": { "default": 9.884, "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.875, - "opentrons/opentrons_flex_96_tiprack_200ul/1":9.979, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.979, "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.979, "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.857 } @@ -331,8 +331,8 @@ "v1": { "default": 9.884, "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.007, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.090, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.090, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.09, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.09, "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.007 } } @@ -349,8 +349,8 @@ }, "v1": { "default": 9.981, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.090, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.090 + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.09, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.09 } } }, diff --git a/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_2.json b/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_2.json index 47518fee141..d184e7d903b 100644 --- a/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_2.json +++ b/shared-data/pipette/definitions/2/general/ninety_six_channel/p200/3_2.json @@ -274,7 +274,7 @@ "v1": { "default": 9.884, "opentrons/opentrons_flex_96_tiprack_50ul/1": 9.875, - "opentrons/opentrons_flex_96_tiprack_200ul/1":9.979, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 9.979, "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 9.979, "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 9.857 } @@ -331,8 +331,8 @@ "v1": { "default": 9.884, "opentrons/opentrons_flex_96_tiprack_50ul/1": 10.007, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.090, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.090, + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.09, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.09, "opentrons/opentrons_flex_96_filtertiprack_50ul/1": 10.007 } } @@ -349,8 +349,8 @@ }, "v1": { "default": 9.981, - "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.090, - "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.090 + "opentrons/opentrons_flex_96_tiprack_200ul/1": 10.09, + "opentrons/opentrons_flex_96_filtertiprack_200ul/1": 10.09 } } }, From 1ce0d226d6546651c96e0060746e710d9c96d807 Mon Sep 17 00:00:00 2001 From: Ryan Howard Date: Wed, 6 Aug 2025 15:28:50 -0400 Subject: [PATCH 62/63] udpate snapshots. --- ...s_transfer_liquid_Override_50_filter].json | 298 +- ...x_S_v2_25_P50_P200_stacker_all_parts].json | 91933 +--------- ...distribute_liquid_Override_50_filter].json | 588 +- ...lex_S_v2_18_PL_Illumina-DNA-Prep-96x].json | 141847 +-------------- ...onsolidate_liquid_Override_50_filter].json | 588 +- ...verrides_transfer_liquid_Override_50].json | 163 +- ...meWT-kit-Parse-Biosciences-protocol3].json | 126594 +------------ ...rides_consolidate_liquid_Override_50].json | 205 +- ...P1000S_None_SimpleNormalizeLongRight].json | 126528 +------------ ...meWT-kit-Parse-Biosciences-protocol1].json | 98320 +--------- ...2_24_P50_P1000_HappyPath_tips_liquid].json | 7970 +- ...37eae0f][Flex_S_v2_25_P200_stacker_2].json | 156 +- ...rrides_distribute_liquid_Override_50].json | 280 +- ...2_24_P50_P1000_HappyPath_all3_liquid].json | 7970 +- 14 files changed, 9579 insertions(+), 593861 deletions(-) diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0bb99055d8][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_transfer_liquid_Override_50_filter].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0bb99055d8][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_transfer_liquid_Override_50_filter].json index 815ccfca26e..45754bfdfd8 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0bb99055d8][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_transfer_liquid_Override_50_filter].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[0bb99055d8][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_transfer_liquid_Override_50_filter].json @@ -5400,11 +5400,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -5624,7 +5624,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -5634,16 +5634,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -5961,10 +5961,10 @@ "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6027,10 +6027,10 @@ "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6079,7 +6079,7 @@ "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -6121,12 +6121,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7588a321583efe8b33bc18c8e0e3d74b", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c7fc5c523a9cea5778614000fdf93a5b", + "key": "51b56a1bae0063387b93cedcdc8c6c92", "notes": [], "params": { "pipetteId": "UUID" @@ -6140,16 +6155,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9463ecdd31391cf07039813a6864ab2", + "key": "0d4fc311197707a2f7c1c7a902a8171a", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6159,7 +6174,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7b070970fc64d832efef0ccae8774f5", + "key": "231eb0863230b7365c40204a2fdddc98", "notes": [], "params": { "seconds": 0.5 @@ -6173,7 +6188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60b42bf2d4f68691f672dd00bf1d7bd3", + "key": "4dcec262dadcf17ee3599c969da81b26", "notes": [], "params": { "forceDirect": false, @@ -6205,17 +6220,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d4593070492781851e5977fdb7f14ef", + "key": "3b40b69bb7f6a5622a20db403288d78f", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6225,7 +6240,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4194fee1cb3bcbd373a4bef90b52049", + "key": "bfda3addedd74432ed5f5900eff0d39b", "notes": [], "params": { "pipetteId": "UUID", @@ -6241,7 +6256,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "557226b628a9dcdf8a8aae6ac198d348", + "key": "16bbc676d78d7d70c34bbb520ca96d8e", "notes": [], "params": { "pipetteId": "UUID" @@ -6255,7 +6270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4204783e0017a9743444d934134f4ac3", + "key": "7268144e758baf98f05e367712a3b096", "notes": [], "params": { "forceDirect": false, @@ -6287,7 +6302,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd0916f0142469629adef677faba13bd", + "key": "6b89bc2983e583940dd6f545db4dd533", "notes": [], "params": { "forceDirect": true, @@ -6320,7 +6335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55fb9eec229e8f6c5e0f4e958276ca4c", + "key": "4c87c0f544486ec251dd89a7495d243e", "notes": [], "params": { "correctionVolume": 0.0, @@ -6339,7 +6354,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac8a9246bda5f70f3c936fb8f49a1f4c", + "key": "9f24b958d9be27b35756645e6ada5667", "notes": [], "params": { "seconds": 0.5 @@ -6353,7 +6368,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb45c20220e30687d8ede8fc08e123c3", + "key": "2bc7b1f916476f93db785bdad4b9003d", "notes": [], "params": { "forceDirect": true, @@ -6386,16 +6401,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb992587a5d2e86ac59c02b1c2148353", + "key": "81be66ab6b59630dbaed047d8b467a7c", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6405,7 +6420,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed2b550041196bac95a092c9610fdbd7", + "key": "9136e62817f6a66bf118621dbfe89735", "notes": [], "params": { "seconds": 0.5 @@ -6419,7 +6434,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2990d33a8a3cd2e7514e075ac197915", + "key": "ff8be0d3b0e92e43353e3d711197b7db", "notes": [], "params": { "forceDirect": false, @@ -6451,17 +6466,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "954037ca20c0c7c5c3bc38f7ad3f9bf5", + "key": "3557bbe1d51786b69abf82bbb6e515c2", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6471,7 +6486,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a68674f31a4fd7f71a036f79e8f3dba", + "key": "a3e6b439e8c7cf3580058ec904a6adda", "notes": [], "params": { "forceDirect": true, @@ -6504,13 +6519,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a80d70f7eb47d4d36478f7eb902da08", + "key": "896553d56b28ab8f98eb585338d2c5d3", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -6524,7 +6539,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f478843a0d84a1579d2192834cc456fc", + "key": "880e4d56713090f2b641d511c9d3de95", "notes": [], "params": { "forceDirect": true, @@ -6552,12 +6567,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ed48d74668cc4e68815d997b7240565", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50ccae2e61487a77fa16e6b8070e91bf", + "key": "dd8cdc556e7ea94b4d3d3fe5f4b0d69f", "notes": [], "params": { "pipetteId": "UUID" @@ -6571,16 +6601,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d59d0ff4fd5d565f62f302ca9dc9409", + "key": "13861a23b262e03dbfdf48a136fdff49", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6590,7 +6620,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b78f22a640a0cb4be8824e2e97d714d", + "key": "b3e09ec8d1bfd01a85150e6f1aae0942", "notes": [], "params": { "seconds": 0.5 @@ -6604,7 +6634,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7726b2f40b3dcd508e0731361a0cd29b", + "key": "f6eefc6dfe50744949ccccbf471fb7d0", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -6633,7 +6663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bcc6af4132139b572fbbcae69fc216d5", + "key": "b909325375e1063ebaed1f41f15ad33d", "notes": [], "params": { "homeAfter": false, @@ -6648,7 +6678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3901b9feb6707e4a8e58c05c6f97807", + "key": "3b6e0d9d08590fa2f46ff584fd0a55fc", "notes": [], "params": { "liquidClassRecord": { @@ -7047,7 +7077,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89c87156ef7bcf878d7c15ab4e425401", + "key": "c7e1ec42872806cc68a4c18730652b66", "notes": [], "params": { "labwareIds": [ @@ -7071,7 +7101,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d4a282787d5d02ec53188369d90af23", + "key": "5a4180d8f6353b09f725858ff83ced11", "notes": [], "params": { "labwareId": "UUID", @@ -7104,7 +7134,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1ab133e9e91644ed35168624dadbe7c", + "key": "cffec566cbfd899e7d89ca14b7930334", "notes": [], "params": { "forceDirect": false, @@ -7136,7 +7166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "911ca5c039368ff7ef39fb10aa94562a", + "key": "6fe1df281673e1bd3631e18e46b4312b", "notes": [], "params": { "pipetteId": "UUID", @@ -7152,7 +7182,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dcb1a644faa61e5eb85215f505cee19", + "key": "1a4e64d460bf72c3b662a2e5975b0949", "notes": [], "params": { "pipetteId": "UUID" @@ -7166,7 +7196,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b37f2eaec82aa8263f6659cea11880b", + "key": "7cc8dd19f9360c89df56c90a0a6ca17f", "notes": [], "params": { "forceDirect": false, @@ -7198,7 +7228,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d072790664ae966769b4b1b7a41dcb82", + "key": "e6808f8809eb9d612d65697e53121360", "notes": [], "params": { "forceDirect": true, @@ -7231,7 +7261,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c1cc1b06f9848bae7412c78d37385bb", + "key": "00f242f67c733b0792f6ee22aac92e32", "notes": [], "params": { "correctionVolume": -1.21, @@ -7250,7 +7280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a5eaac6b1dd81822bb8f26547652a1b", + "key": "29888f8e2e93ddc283aacfa5a1fadbe3", "notes": [], "params": { "seconds": 0.2 @@ -7264,7 +7294,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f849430a787924cac0ea4a57f064be6", + "key": "6032235b8ec81c125dec7a469ee07a2f", "notes": [], "params": { "forceDirect": true, @@ -7297,7 +7327,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1835f5edb296e7bf2a243becaa8ce730", + "key": "c34da30f72930bcee29788df851e67a3", "notes": [], "params": { "seconds": 0.5 @@ -7311,7 +7341,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f39e891cd2f9d3268ce962df76815e5", + "key": "b275e071239af57bdea4ccc674685163", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -7330,7 +7360,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4070a52dc3657afd125e5dd3cd7de31f", + "key": "b2655aa14ecac907ada82b0f0521a7ba", "notes": [], "params": { "seconds": 0.2 @@ -7344,7 +7374,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e5662b21ff45dcc6e4814fc8d6c2014", + "key": "8774423618401165fcaf46f6600f6b00", "notes": [], "params": { "forceDirect": false, @@ -7376,7 +7406,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be0937e9074b4cb05cb81891ddd248c8", + "key": "87c0cf61735675ec1f72df5b282cbc78", "notes": [], "params": { "correctionVolume": -1.21, @@ -7396,7 +7426,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6739f12b2eb960175a27254a4e7efa7d", + "key": "63dc1c8f4ac71162156e1c9b33988e7f", "notes": [], "params": { "seconds": 2.0 @@ -7410,7 +7440,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "230fb076cad32ae2eb32fb703b65c61c", + "key": "a6e1f4834b7299dd20c65376b712e25d", "notes": [], "params": { "forceDirect": true, @@ -7443,7 +7473,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "03356ab4c15ad3fa0c065f2b72647c79", + "key": "af271ba73b026aeed60463f20cfb9ef5", "notes": [], "params": { "correctionVolume": 0.0, @@ -7463,7 +7493,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff2b5f3ec3bd1b52b966448bfcf7709b", + "key": "56b89b6a91caf4410121e1297e2cbee1", "notes": [], "params": { "seconds": 2.0 @@ -7477,7 +7507,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c0a44ab1005f8daaa2817b4c98f126b", + "key": "3a0f606f0a42844eea82580ea007a1ea", "notes": [], "params": { "forceDirect": true, @@ -7510,7 +7540,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af653c43e26a664b8e1855f77ca961fa", + "key": "08ea2bd8b3761cc24996e8adea1231b6", "notes": [], "params": { "seconds": 0.5 @@ -7524,7 +7554,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e7c5cc9658f8241c94ca5c4dcf810464", + "key": "6584717e5abf7440c5906ce7ff3a6e42", "notes": [], "params": { "correctionVolume": -0.75, @@ -7543,7 +7573,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "630522a93170b91ee82c1589bcc36c45", + "key": "5a3f5ca4cd37d2e85e4fe56d48532b4e", "notes": [], "params": { "seconds": 0.2 @@ -7557,7 +7587,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a8ef5ddcddc0329eb7889aeaab02355", + "key": "96ba328ae199862f056a2dca270557ae", "notes": [], "params": { "forceDirect": false, @@ -7589,7 +7619,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0cc1d72e31da5ba649d73a981128240", + "key": "cf1dff8ca2fbb1d0ad20ba972ab95ed1", "notes": [], "params": { "correctionVolume": 0.0, @@ -7609,7 +7639,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae90d66cfc29f9ecf89282b4176d4209", + "key": "2171b8030edae8b0c0954ea95fcc3ef5", "notes": [], "params": { "seconds": 2.0 @@ -7623,7 +7653,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d660a4f423a72fcb726e54945e9a21e1", + "key": "febb96d4f10fbf94999c5333c8625946", "notes": [], "params": { "pipetteId": "UUID", @@ -7639,7 +7669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7a278e4f74a7daa7ab309b79466ab04", + "key": "2ffb7b5d34393000800b964aab63575e", "notes": [], "params": { "pipetteId": "UUID" @@ -7653,7 +7683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "03275d3fbc5f410dab752b80e7db09c8", + "key": "63319b93e91ff60c859308cc58b21cdc", "notes": [], "params": { "forceDirect": false, @@ -7685,7 +7715,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95923bd70049976bd91cc82ce68989b8", + "key": "40677ee69d73545ee084d710ccfe01b9", "notes": [], "params": { "forceDirect": true, @@ -7718,7 +7748,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b8e8c006cfe22646914e2c33e7aafa60", + "key": "2d5219818392e21e0328a1f4cecba59e", "notes": [], "params": { "correctionVolume": -1.21, @@ -7737,7 +7767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9645cae8cad228b5661637ee5c8a6d27", + "key": "10a490411b35c9ffb629d06f13178f04", "notes": [], "params": { "seconds": 0.2 @@ -7751,7 +7781,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e565bd6218921a8735e128e2a55ccd5", + "key": "3ede56f01bb21a28d25f6603152b5e74", "notes": [], "params": { "forceDirect": true, @@ -7784,7 +7814,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0632472ca00e2e95627e82395ada5d2c", + "key": "61c9dda2f59b348aebb6b47a72867082", "notes": [], "params": { "seconds": 0.5 @@ -7798,7 +7828,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6c31f8b68213542638366135de45fe6", + "key": "e56f2b531a77c25080d9acce2654e54a", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -7817,7 +7847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58701c11aba6a142019f19f92cc66ef0", + "key": "97ba9d3ffeb6ae86be127a5c86352a42", "notes": [], "params": { "seconds": 0.2 @@ -7831,7 +7861,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfa907757f016693fa31506622c6b14a", + "key": "d2f8de7d3f50a8ca964ecf04a4a38070", "notes": [], "params": { "forceDirect": false, @@ -7863,7 +7893,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e068b6251b53fd6107e84c1cde5ec4bb", + "key": "a8f47f96a19cce6092ab589f405f36de", "notes": [], "params": { "correctionVolume": -1.21, @@ -7883,7 +7913,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8d269366cc7bb4a79600c08e0850c65", + "key": "bc413571af8325af1d7747e98700fdba", "notes": [], "params": { "seconds": 2.0 @@ -7897,7 +7927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e295fdda405f3c24388821fc0f35a9c0", + "key": "afab48a00e827719481eb1272d0f7292", "notes": [], "params": { "forceDirect": true, @@ -7930,7 +7960,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "627b7dfe29d876cd4dd435d70fdf6e2f", + "key": "79b4238c9e94553506beaf9cafe45918", "notes": [], "params": { "correctionVolume": 0.0, @@ -7950,7 +7980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9609363a04beab4324a01d68550fd177", + "key": "66a38f1cbb1ac746043ef3c9fe8d8a26", "notes": [], "params": { "seconds": 2.0 @@ -7964,7 +7994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ed69133d868fbdc1401d30e3f9b6cac", + "key": "2a8037760d8008a13aa51eb4270342c8", "notes": [], "params": { "forceDirect": true, @@ -7997,7 +8027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc5879a1310da360fe0f43f20e0e9a07", + "key": "1d8bebf51e2f1919b547e7e740fc06b0", "notes": [], "params": { "seconds": 0.5 @@ -8011,7 +8041,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c32a8292dcbac3f4084912462a41230", + "key": "58f78b9e54c6dbcab24968dfcbc6a8af", "notes": [], "params": { "correctionVolume": -0.75, @@ -8030,7 +8060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1ba6621c74cf77359cb33b919424b3a", + "key": "11f4f905f817fcd0f7db7f7cfe0ed1f7", "notes": [], "params": { "seconds": 0.2 @@ -8044,7 +8074,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a3e599e76087e07d34aab26062ba207", + "key": "9a774e947701bc0fd01f967fe36c54a2", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -8073,7 +8103,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae35f11bd29b3ba1744ceba5b5e05eac", + "key": "75a28b12da14d58b4425758c94c5aec0", "notes": [], "params": { "homeAfter": false, @@ -8088,7 +8118,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea2edd5deaf9f77aaf5152ad7cbd470b", + "key": "2f3c526d1867a685679279e01cdb8838", "notes": [], "params": { "liquidClassRecord": { @@ -8459,7 +8489,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f048ad4d17ae0948e0edc9d7378de60e", + "key": "844b5ce78a2ed34457fcdd1747562498", "notes": [], "params": { "labwareIds": [ @@ -8483,7 +8513,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9d1fa10319caab7bab4c8061571a1ac", + "key": "51b2e7ef1b7e8367579d001788a4b492", "notes": [], "params": { "labwareId": "UUID", @@ -8516,7 +8546,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c214dc9ff97bd579895471fedb13750", + "key": "03f13ec829edaa788c5a540d2d632867", "notes": [], "params": { "forceDirect": false, @@ -8548,7 +8578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f0714996f3f9789b302330b26adbcec", + "key": "d0eaa8bc0f7fa1ae34a8ac25c314348f", "notes": [], "params": { "pipetteId": "UUID", @@ -8564,7 +8594,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c3d40d8492e32a2ec1e27dfbb985554", + "key": "c390aec46d769124726e3f8305061cfe", "notes": [], "params": { "pipetteId": "UUID" @@ -8578,7 +8608,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6317c49e02e80707adfadbbd8ebc20cd", + "key": "994babeebd573611b3f5137ad7c6f7af", "notes": [], "params": { "forceDirect": false, @@ -8610,7 +8640,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95c87045ef39266defb8c618ffa2a18d", + "key": "20f161b30d9eca36e480868a00daedfe", "notes": [], "params": { "forceDirect": true, @@ -8643,7 +8673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f3c4591baf5e2b3697470f6d14e7153", + "key": "7436d7c4a4f5f3e395f1b8ffb0251bab", "notes": [], "params": { "correctionVolume": 0.185, @@ -8662,7 +8692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49a3047da8bbb1a970e5ea4ca2c70883", + "key": "71d80138f3f36a579afee1696254f091", "notes": [], "params": { "seconds": 2.0 @@ -8676,7 +8706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d847303f1df62cd7537ab01dc77a0ac6", + "key": "8b45778aade0e7a3511c7a69273f25c8", "notes": [], "params": { "forceDirect": true, @@ -8709,7 +8739,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ebc3f0f4c011766fe0f5cbc265e4b4b", + "key": "4c50683618f4a625fa097b836b327fe2", "notes": [], "params": { "forceDirect": false, @@ -8741,7 +8771,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc901b02b240bca2381a8d6154464a24", + "key": "328ba4b81ce2d8cf2acaab3527ee575b", "notes": [], "params": { "forceDirect": true, @@ -8774,7 +8804,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c029614666121b67516ac09e802cf417", + "key": "1f6cbcf7f04ef446b926ac2dac614c2b", "notes": [], "params": { "correctionVolume": 0.0, @@ -8794,7 +8824,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "baff6785ed0449e4be302713e4b41615", + "key": "05cb47574d0cf061373a09cf11d439e9", "notes": [], "params": { "seconds": 1.0 @@ -8808,7 +8838,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ef92d2dddc7b7f0e09e1881da8f5cf7", + "key": "976c7f946219b7577f91dffc351e0084", "notes": [], "params": { "forceDirect": true, @@ -8841,7 +8871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d822569879205dfa54d98df14deaee23", + "key": "2610122fb692d77b2d1ffb4945338229", "notes": [], "params": { "pipetteId": "UUID" @@ -8855,7 +8885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a5a25e1e4e38aebd2ab2224f973b21e9", + "key": "0a8ff85e4baf733c368caa34592d9c48", "notes": [], "params": { "forceDirect": false, @@ -8887,7 +8917,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "242c1218dacba628388dd706181636bf", + "key": "bdad8f0d89b8fc37dbf652f415e2df94", "notes": [], "params": { "pipetteId": "UUID", @@ -8903,7 +8933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a3f247cdba1b535426fe44866cf83ac", + "key": "94fafaf233ec718275df136245cedc62", "notes": [], "params": { "pipetteId": "UUID" @@ -8917,7 +8947,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4bade0c98fcdcb3b5fb6a89b06507f4b", + "key": "30a7d99da7b2bcb796d5046c9380086a", "notes": [], "params": { "forceDirect": false, @@ -8949,7 +8979,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a9d7b21d320a520d840075eb4e53148", + "key": "ba43d77ee0ab37f48eb81ef1905c8f8c", "notes": [], "params": { "forceDirect": true, @@ -8982,7 +9012,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a52c99ec40d1b4a4a99ef1fe2907526", + "key": "3340133fef157c33b92d4baa243bc3c7", "notes": [], "params": { "correctionVolume": 0.185, @@ -9001,7 +9031,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a1df605564e2c30c611319f6b22f6dd", + "key": "557a53537fbf974164bd8420c4e47175", "notes": [], "params": { "seconds": 2.0 @@ -9015,7 +9045,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "506cbd277791d3293c412022cef5ed51", + "key": "e2a93884692b602bedf5114085091853", "notes": [], "params": { "forceDirect": true, @@ -9048,7 +9078,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "943e0cccef3d977141ab18ffa20dd96c", + "key": "9cd448863956e4bd75110a3dbff6412e", "notes": [], "params": { "forceDirect": false, @@ -9080,7 +9110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1c91162706f68f33511446b401b0d6e", + "key": "a1e9260d685f22880093b509a45c6c05", "notes": [], "params": { "forceDirect": true, @@ -9113,7 +9143,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "627ffed2d18ee6d43e06888b9074bf85", + "key": "af1442213b5f26d0efde3f75aeb691c9", "notes": [], "params": { "correctionVolume": 0.0, @@ -9133,7 +9163,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69bf897198dd647ea66419af5a165bd4", + "key": "57e379b89d1218f291dae52fb2e15573", "notes": [], "params": { "seconds": 1.0 @@ -9147,7 +9177,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e7d8c845a4a9a6b060ef5acef4b84cb2", + "key": "63d82246a96bd382318c00ecd27ab06f", "notes": [], "params": { "forceDirect": true, @@ -9180,7 +9210,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ff1b7850617c97ca8751d32a6e2a5a4", + "key": "fcbee60db89f9b3203d924c7afba4ac3", "notes": [], "params": { "pipetteId": "UUID" @@ -9194,7 +9224,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf52d13864bcc1d160c124b6bd9868d2", + "key": "b7e90ac5dd99e8e1630da05d174ac158", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -9223,7 +9253,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44ae050f5e9337cd52a45314fcb6ece8", + "key": "1159871b073d3cd0b5cfacc8b2424794", "notes": [], "params": { "homeAfter": false, @@ -9339,11 +9369,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -9564,7 +9594,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -9574,16 +9604,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13cc2361a9][Flex_S_v2_25_P50_P200_stacker_all_parts].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13cc2361a9][Flex_S_v2_25_P50_P200_stacker_all_parts].json index a37a47b6477..0b9d36937ed 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13cc2361a9][Flex_S_v2_25_P50_P200_stacker_all_parts].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13cc2361a9][Flex_S_v2_25_P50_P200_stacker_all_parts].json @@ -1,91934 +1,3 @@ { - "commandAnnotations": [], - "commands": [ - { - "commandType": "home", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50c7ae73a4e3f7129874f39dfb514803", - "notes": [], - "params": {}, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadPipette", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c3bb3b5f63458c1ff149d26e64d98b5", - "notes": [], - "params": { - "liquidPresenceDetection": false, - "mount": "left", - "pipetteName": "p1000_96", - "tipOverlapNotAfterVersion": "v3" - }, - "result": { - "pipetteId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "151e362dbbab7b55627529b0c8efedc6", - "notes": [], - "params": { - "location": { - "slotName": "B1" - }, - "model": "thermocyclerModuleV2" - }, - "result": { - "model": "thermocyclerModuleV2", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "593745772d5b73b33d06f074c856bc26", - "notes": [], - "params": { - "displayName": "Sample Plate 1", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 4 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "compatibleParentLabware": [ - "opentrons_96_wellplate_200ul_pcr_full_skirt" - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "bottomDiameter": 5.5, - "bottomHeight": 11.35, - "shape": "conical", - "topDiameter": 5.5, - "topHeight": 14.95, - "xCount": 1, - "yCount": 1 - }, - { - "bottomDiameter": 2.33, - "bottomHeight": 0.8, - "shape": "conical", - "topDiameter": 5.5, - "topHeight": 11.35, - "xCount": 1, - "yCount": 1 - }, - { - "bottomHeight": 0.0, - "radiusOfCurvature": 1.25, - "shape": "spherical", - "topHeight": 0.8, - "xCount": 1, - "yCount": 1 - } - ] - } - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackLimit": 4, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - }, - "opentrons_96_wellplate_200ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 3.68 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 4, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00218af81801271288c55c011277b6ba", - "notes": [], - "params": { - "displayName": "Sample Plate 2", - "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "slotName": "A2" - }, - "namespace": "custom_beta", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "custom" - }, - "compatibleParentLabware": [ - "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt" - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Stackable Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "custom_beta", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackLimit": 5, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - }, - "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 2.9 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 1, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d6f9b11f0b21b3dd489800f75d012ab", - "notes": [], - "params": { - "displayName": "Sample Plate 3", - "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "labwareId": "UUID" - }, - "namespace": "custom_beta", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "custom" - }, - "compatibleParentLabware": [ - "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt" - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Stackable Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "custom_beta", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackLimit": 5, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - }, - "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 2.9 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 1, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2843f79ae524d5bfdba28c8310d4009", - "notes": [], - "params": { - "location": { - "slotName": "A3" - }, - "model": "flexStackerModuleV1" - }, - "result": { - "model": "flexStackerModuleV1", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/setStoredLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb6a402f94b273303b76cdcb2031895b", - "notes": [], - "params": { - "initialCount": 6, - "lidLabware": { - "loadName": "opentrons_flex_tiprack_lid", - "namespace": "opentrons", - "version": 1 - }, - "moduleId": "UUID", - "primaryLabware": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "namespace": "opentrons", - "version": 1 - } - }, - "result": { - "count": 6, - "lidLabwareDefinition": { - "allowedRoles": [ - "labware", - "lid" - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "compatibleParentLabware": [ - "opentrons_flex_96_filtertiprack_1000ul", - "opentrons_flex_96_filtertiprack_200ul", - "opentrons_flex_96_filtertiprack_50ul", - "opentrons_flex_96_tiprack_1000ul", - "opentrons_flex_96_tiprack_200ul", - "opentrons_flex_96_tiprack_20ul", - "opentrons_flex_96_tiprack_50ul" - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.7, - "yDimension": 78.75, - "zDimension": 17 - }, - "gripForce": 10.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": { - "default": { - "dropOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "lidDisposalOffsets": { - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "metadata": { - "displayCategory": "lid", - "displayName": "Opentrons Flex Tip Rack Lid", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [], - "parameters": { - "format": "irregular", - "isDeckSlotCompatible": false, - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_flex_tiprack_lid", - "quirks": [] - }, - "schemaVersion": 2, - "stackLimit": 1, - "stackingOffsetWithLabware": { - "default": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_1000ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_200ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_50ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_1000ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_200ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_20ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_50ul": { - "x": 0, - "y": 0, - "z": 14.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": {} - }, - "newLidLabwareLocationSequences": [ - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ] - ], - "newPrimaryLabwareLocationSequences": [ - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ] - ], - "originalLidLabwareLocationSequences": [ - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ] - ], - "originalPrimaryLabwareLocationSequences": [ - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ] - ], - "primaryLabwareDefinition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "storedLabware": [ - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c56a1a29dea1345468e9d28062873ae5", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_adapter", - "location": { - "slotName": "A3" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [ - "adapter" - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": -14.25, - "y": -3.5, - "z": 0 - }, - "dimensions": { - "xDimension": 156.5, - "yDimension": 93, - "zDimension": 132 - }, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "metadata": { - "displayCategory": "adapter", - "displayName": "Opentrons Flex 96 Tip Rack Adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_flex_96_tiprack_adapter", - "quirks": [ - "tiprackAdapterFor96Channel" - ] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": {} - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ec37692fd6d17393d647d9dbb3d0f6a", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "labwareId": "UUID" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c08ed51b19739ee99128aac32c0692f", - "notes": [], - "params": { - "displayName": "Reagent Plate 2", - "loadName": "biorad_384_wellplate_50ul", - "location": { - "slotName": "B2" - }, - "namespace": "opentrons", - "version": 4 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Bio-Rad", - "brandId": [ - "HSP3801", - "HSP3805", - "HSP3901", - "HSP3905", - "HSP3xxx", - "HSR4801", - "HSR4805", - "HSR4xxx" - ], - "links": [ - "https://www.bio-rad.com/en-us/sku/HSP3805-hard-shell-384-well-pcr-plates-thin-wall-skirted-clear-white?ID=HSP3805" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 10.4 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 9.3, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A13", - "A14", - "A15", - "A16", - "A17", - "A18", - "A19", - "A2", - "A20", - "A21", - "A22", - "A23", - "A24", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B13", - "B14", - "B15", - "B16", - "B17", - "B18", - "B19", - "B2", - "B20", - "B21", - "B22", - "B23", - "B24", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C13", - "C14", - "C15", - "C16", - "C17", - "C18", - "C19", - "C2", - "C20", - "C21", - "C22", - "C23", - "C24", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D13", - "D14", - "D15", - "D16", - "D17", - "D18", - "D19", - "D2", - "D20", - "D21", - "D22", - "D23", - "D24", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E13", - "E14", - "E15", - "E16", - "E17", - "E18", - "E19", - "E2", - "E20", - "E21", - "E22", - "E23", - "E24", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F13", - "F14", - "F15", - "F16", - "F17", - "F18", - "F19", - "F2", - "F20", - "F21", - "F22", - "F23", - "F24", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G13", - "G14", - "G15", - "G16", - "G17", - "G18", - "G19", - "G2", - "G20", - "G21", - "G22", - "G23", - "G24", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H13", - "H14", - "H15", - "H16", - "H17", - "H18", - "H19", - "H2", - "H20", - "H21", - "H22", - "H23", - "H24", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9", - "I1", - "I10", - "I11", - "I12", - "I13", - "I14", - "I15", - "I16", - "I17", - "I18", - "I19", - "I2", - "I20", - "I21", - "I22", - "I23", - "I24", - "I3", - "I4", - "I5", - "I6", - "I7", - "I8", - "I9", - "J1", - "J10", - "J11", - "J12", - "J13", - "J14", - "J15", - "J16", - "J17", - "J18", - "J19", - "J2", - "J20", - "J21", - "J22", - "J23", - "J24", - "J3", - "J4", - "J5", - "J6", - "J7", - "J8", - "J9", - "K1", - "K10", - "K11", - "K12", - "K13", - "K14", - "K15", - "K16", - "K17", - "K18", - "K19", - "K2", - "K20", - "K21", - "K22", - "K23", - "K24", - "K3", - "K4", - "K5", - "K6", - "K7", - "K8", - "K9", - "L1", - "L10", - "L11", - "L12", - "L13", - "L14", - "L15", - "L16", - "L17", - "L18", - "L19", - "L2", - "L20", - "L21", - "L22", - "L23", - "L24", - "L3", - "L4", - "L5", - "L6", - "L7", - "L8", - "L9", - "M1", - "M10", - "M11", - "M12", - "M13", - "M14", - "M15", - "M16", - "M17", - "M18", - "M19", - "M2", - "M20", - "M21", - "M22", - "M23", - "M24", - "M3", - "M4", - "M5", - "M6", - "M7", - "M8", - "M9", - "N1", - "N10", - "N11", - "N12", - "N13", - "N14", - "N15", - "N16", - "N17", - "N18", - "N19", - "N2", - "N20", - "N21", - "N22", - "N23", - "N24", - "N3", - "N4", - "N5", - "N6", - "N7", - "N8", - "N9", - "O1", - "O10", - "O11", - "O12", - "O13", - "O14", - "O15", - "O16", - "O17", - "O18", - "O19", - "O2", - "O20", - "O21", - "O22", - "O23", - "O24", - "O3", - "O4", - "O5", - "O6", - "O7", - "O8", - "O9", - "P1", - "P10", - "P11", - "P12", - "P13", - "P14", - "P15", - "P16", - "P17", - "P18", - "P19", - "P2", - "P20", - "P21", - "P22", - "P23", - "P24", - "P3", - "P4", - "P5", - "P6", - "P7", - "P8", - "P9" - ] - } - ], - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "bottomDiameter": 3, - "bottomHeight": 5.35, - "shape": "conical", - "topDiameter": 3.1, - "topHeight": 9.35, - "xCount": 1, - "yCount": 1 - }, - { - "bottomDiameter": 1.46, - "bottomHeight": 0.35, - "shape": "conical", - "topDiameter": 3, - "topHeight": 5.35, - "xCount": 1, - "yCount": 1 - }, - { - "bottomHeight": 0.0, - "radiusOfCurvature": 0.94, - "shape": "spherical", - "topHeight": 0.35, - "xCount": 1, - "yCount": 1 - } - ] - } - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Bio-Rad 384 Well Plate 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12" - ], - [ - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13" - ], - [ - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14" - ], - [ - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15" - ], - [ - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16" - ], - [ - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17" - ], - [ - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18" - ], - [ - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2" - ], - [ - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20" - ], - [ - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21" - ], - [ - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22" - ], - [ - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23" - ], - [ - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9" - ] - ], - "parameters": { - "format": "384Standard", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "biorad_384_wellplate_50ul", - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "biorad_384_wellplate_50ul": { - "x": 0, - "y": 0, - "z": 1.95 - } - }, - "stackingOffsetWithModule": {}, - "version": 4, - "wells": { - "A1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 76.49, - "z": 1.05 - }, - "A10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 76.49, - "z": 1.05 - }, - "A11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 76.49, - "z": 1.05 - }, - "A12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 76.49, - "z": 1.05 - }, - "A13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 76.49, - "z": 1.05 - }, - "A14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 76.49, - "z": 1.05 - }, - "A15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 76.49, - "z": 1.05 - }, - "A16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 76.49, - "z": 1.05 - }, - "A17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 76.49, - "z": 1.05 - }, - "A18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 76.49, - "z": 1.05 - }, - "A19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 76.49, - "z": 1.05 - }, - "A2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 76.49, - "z": 1.05 - }, - "A20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 76.49, - "z": 1.05 - }, - "A21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 76.49, - "z": 1.05 - }, - "A22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 76.49, - "z": 1.05 - }, - "A23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 76.49, - "z": 1.05 - }, - "A24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 76.49, - "z": 1.05 - }, - "A3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 76.49, - "z": 1.05 - }, - "A4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 76.49, - "z": 1.05 - }, - "A5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 76.49, - "z": 1.05 - }, - "A6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 76.49, - "z": 1.05 - }, - "A7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 76.49, - "z": 1.05 - }, - "A8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 76.49, - "z": 1.05 - }, - "A9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 76.49, - "z": 1.05 - }, - "B1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 71.99, - "z": 1.05 - }, - "B10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 71.99, - "z": 1.05 - }, - "B11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 71.99, - "z": 1.05 - }, - "B12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 71.99, - "z": 1.05 - }, - "B13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 71.99, - "z": 1.05 - }, - "B14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 71.99, - "z": 1.05 - }, - "B15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 71.99, - "z": 1.05 - }, - "B16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 71.99, - "z": 1.05 - }, - "B17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 71.99, - "z": 1.05 - }, - "B18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 71.99, - "z": 1.05 - }, - "B19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 71.99, - "z": 1.05 - }, - "B2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 71.99, - "z": 1.05 - }, - "B20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 71.99, - "z": 1.05 - }, - "B21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 71.99, - "z": 1.05 - }, - "B22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 71.99, - "z": 1.05 - }, - "B23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 71.99, - "z": 1.05 - }, - "B24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 71.99, - "z": 1.05 - }, - "B3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 71.99, - "z": 1.05 - }, - "B4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 71.99, - "z": 1.05 - }, - "B5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 71.99, - "z": 1.05 - }, - "B6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 71.99, - "z": 1.05 - }, - "B7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 71.99, - "z": 1.05 - }, - "B8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 71.99, - "z": 1.05 - }, - "B9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 71.99, - "z": 1.05 - }, - "C1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 67.49, - "z": 1.05 - }, - "C10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 67.49, - "z": 1.05 - }, - "C11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 67.49, - "z": 1.05 - }, - "C12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 67.49, - "z": 1.05 - }, - "C13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 67.49, - "z": 1.05 - }, - "C14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 67.49, - "z": 1.05 - }, - "C15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 67.49, - "z": 1.05 - }, - "C16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 67.49, - "z": 1.05 - }, - "C17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 67.49, - "z": 1.05 - }, - "C18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 67.49, - "z": 1.05 - }, - "C19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 67.49, - "z": 1.05 - }, - "C2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 67.49, - "z": 1.05 - }, - "C20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 67.49, - "z": 1.05 - }, - "C21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 67.49, - "z": 1.05 - }, - "C22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 67.49, - "z": 1.05 - }, - "C23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 67.49, - "z": 1.05 - }, - "C24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 67.49, - "z": 1.05 - }, - "C3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 67.49, - "z": 1.05 - }, - "C4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 67.49, - "z": 1.05 - }, - "C5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 67.49, - "z": 1.05 - }, - "C6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 67.49, - "z": 1.05 - }, - "C7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 67.49, - "z": 1.05 - }, - "C8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 67.49, - "z": 1.05 - }, - "C9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 67.49, - "z": 1.05 - }, - "D1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 62.99, - "z": 1.05 - }, - "D10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 62.99, - "z": 1.05 - }, - "D11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 62.99, - "z": 1.05 - }, - "D12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 62.99, - "z": 1.05 - }, - "D13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 62.99, - "z": 1.05 - }, - "D14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 62.99, - "z": 1.05 - }, - "D15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 62.99, - "z": 1.05 - }, - "D16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 62.99, - "z": 1.05 - }, - "D17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 62.99, - "z": 1.05 - }, - "D18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 62.99, - "z": 1.05 - }, - "D19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 62.99, - "z": 1.05 - }, - "D2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 62.99, - "z": 1.05 - }, - "D20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 62.99, - "z": 1.05 - }, - "D21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 62.99, - "z": 1.05 - }, - "D22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 62.99, - "z": 1.05 - }, - "D23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 62.99, - "z": 1.05 - }, - "D24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 62.99, - "z": 1.05 - }, - "D3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 62.99, - "z": 1.05 - }, - "D4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 62.99, - "z": 1.05 - }, - "D5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 62.99, - "z": 1.05 - }, - "D6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 62.99, - "z": 1.05 - }, - "D7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 62.99, - "z": 1.05 - }, - "D8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 62.99, - "z": 1.05 - }, - "D9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 62.99, - "z": 1.05 - }, - "E1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 58.49, - "z": 1.05 - }, - "E10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 58.49, - "z": 1.05 - }, - "E11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 58.49, - "z": 1.05 - }, - "E12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 58.49, - "z": 1.05 - }, - "E13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 58.49, - "z": 1.05 - }, - "E14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 58.49, - "z": 1.05 - }, - "E15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 58.49, - "z": 1.05 - }, - "E16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 58.49, - "z": 1.05 - }, - "E17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 58.49, - "z": 1.05 - }, - "E18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 58.49, - "z": 1.05 - }, - "E19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 58.49, - "z": 1.05 - }, - "E2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 58.49, - "z": 1.05 - }, - "E20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 58.49, - "z": 1.05 - }, - "E21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 58.49, - "z": 1.05 - }, - "E22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 58.49, - "z": 1.05 - }, - "E23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 58.49, - "z": 1.05 - }, - "E24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 58.49, - "z": 1.05 - }, - "E3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 58.49, - "z": 1.05 - }, - "E4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 58.49, - "z": 1.05 - }, - "E5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 58.49, - "z": 1.05 - }, - "E6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 58.49, - "z": 1.05 - }, - "E7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 58.49, - "z": 1.05 - }, - "E8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 58.49, - "z": 1.05 - }, - "E9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 58.49, - "z": 1.05 - }, - "F1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 53.99, - "z": 1.05 - }, - "F10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 53.99, - "z": 1.05 - }, - "F11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 53.99, - "z": 1.05 - }, - "F12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 53.99, - "z": 1.05 - }, - "F13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 53.99, - "z": 1.05 - }, - "F14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 53.99, - "z": 1.05 - }, - "F15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 53.99, - "z": 1.05 - }, - "F16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 53.99, - "z": 1.05 - }, - "F17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 53.99, - "z": 1.05 - }, - "F18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 53.99, - "z": 1.05 - }, - "F19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 53.99, - "z": 1.05 - }, - "F2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 53.99, - "z": 1.05 - }, - "F20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 53.99, - "z": 1.05 - }, - "F21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 53.99, - "z": 1.05 - }, - "F22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 53.99, - "z": 1.05 - }, - "F23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 53.99, - "z": 1.05 - }, - "F24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 53.99, - "z": 1.05 - }, - "F3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 53.99, - "z": 1.05 - }, - "F4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 53.99, - "z": 1.05 - }, - "F5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 53.99, - "z": 1.05 - }, - "F6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 53.99, - "z": 1.05 - }, - "F7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 53.99, - "z": 1.05 - }, - "F8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 53.99, - "z": 1.05 - }, - "F9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 53.99, - "z": 1.05 - }, - "G1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 49.49, - "z": 1.05 - }, - "G10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 49.49, - "z": 1.05 - }, - "G11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 49.49, - "z": 1.05 - }, - "G12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 49.49, - "z": 1.05 - }, - "G13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 49.49, - "z": 1.05 - }, - "G14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 49.49, - "z": 1.05 - }, - "G15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 49.49, - "z": 1.05 - }, - "G16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 49.49, - "z": 1.05 - }, - "G17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 49.49, - "z": 1.05 - }, - "G18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 49.49, - "z": 1.05 - }, - "G19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 49.49, - "z": 1.05 - }, - "G2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 49.49, - "z": 1.05 - }, - "G20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 49.49, - "z": 1.05 - }, - "G21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 49.49, - "z": 1.05 - }, - "G22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 49.49, - "z": 1.05 - }, - "G23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 49.49, - "z": 1.05 - }, - "G24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 49.49, - "z": 1.05 - }, - "G3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 49.49, - "z": 1.05 - }, - "G4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 49.49, - "z": 1.05 - }, - "G5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 49.49, - "z": 1.05 - }, - "G6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 49.49, - "z": 1.05 - }, - "G7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 49.49, - "z": 1.05 - }, - "G8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 49.49, - "z": 1.05 - }, - "G9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 49.49, - "z": 1.05 - }, - "H1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 44.99, - "z": 1.05 - }, - "H10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 44.99, - "z": 1.05 - }, - "H11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 44.99, - "z": 1.05 - }, - "H12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 44.99, - "z": 1.05 - }, - "H13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 44.99, - "z": 1.05 - }, - "H14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 44.99, - "z": 1.05 - }, - "H15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 44.99, - "z": 1.05 - }, - "H16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 44.99, - "z": 1.05 - }, - "H17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 44.99, - "z": 1.05 - }, - "H18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 44.99, - "z": 1.05 - }, - "H19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 44.99, - "z": 1.05 - }, - "H2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 44.99, - "z": 1.05 - }, - "H20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 44.99, - "z": 1.05 - }, - "H21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 44.99, - "z": 1.05 - }, - "H22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 44.99, - "z": 1.05 - }, - "H23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 44.99, - "z": 1.05 - }, - "H24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 44.99, - "z": 1.05 - }, - "H3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 44.99, - "z": 1.05 - }, - "H4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 44.99, - "z": 1.05 - }, - "H5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 44.99, - "z": 1.05 - }, - "H6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 44.99, - "z": 1.05 - }, - "H7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 44.99, - "z": 1.05 - }, - "H8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 44.99, - "z": 1.05 - }, - "H9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 44.99, - "z": 1.05 - }, - "I1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 40.49, - "z": 1.05 - }, - "I10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 40.49, - "z": 1.05 - }, - "I11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 40.49, - "z": 1.05 - }, - "I12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 40.49, - "z": 1.05 - }, - "I13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 40.49, - "z": 1.05 - }, - "I14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 40.49, - "z": 1.05 - }, - "I15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 40.49, - "z": 1.05 - }, - "I16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 40.49, - "z": 1.05 - }, - "I17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 40.49, - "z": 1.05 - }, - "I18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 40.49, - "z": 1.05 - }, - "I19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 40.49, - "z": 1.05 - }, - "I2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 40.49, - "z": 1.05 - }, - "I20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 40.49, - "z": 1.05 - }, - "I21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 40.49, - "z": 1.05 - }, - "I22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 40.49, - "z": 1.05 - }, - "I23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 40.49, - "z": 1.05 - }, - "I24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 40.49, - "z": 1.05 - }, - "I3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 40.49, - "z": 1.05 - }, - "I4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 40.49, - "z": 1.05 - }, - "I5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 40.49, - "z": 1.05 - }, - "I6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 40.49, - "z": 1.05 - }, - "I7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 40.49, - "z": 1.05 - }, - "I8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 40.49, - "z": 1.05 - }, - "I9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 40.49, - "z": 1.05 - }, - "J1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 35.99, - "z": 1.05 - }, - "J10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 35.99, - "z": 1.05 - }, - "J11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 35.99, - "z": 1.05 - }, - "J12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 35.99, - "z": 1.05 - }, - "J13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 35.99, - "z": 1.05 - }, - "J14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 35.99, - "z": 1.05 - }, - "J15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 35.99, - "z": 1.05 - }, - "J16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 35.99, - "z": 1.05 - }, - "J17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 35.99, - "z": 1.05 - }, - "J18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 35.99, - "z": 1.05 - }, - "J19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 35.99, - "z": 1.05 - }, - "J2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 35.99, - "z": 1.05 - }, - "J20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 35.99, - "z": 1.05 - }, - "J21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 35.99, - "z": 1.05 - }, - "J22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 35.99, - "z": 1.05 - }, - "J23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 35.99, - "z": 1.05 - }, - "J24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 35.99, - "z": 1.05 - }, - "J3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 35.99, - "z": 1.05 - }, - "J4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 35.99, - "z": 1.05 - }, - "J5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 35.99, - "z": 1.05 - }, - "J6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 35.99, - "z": 1.05 - }, - "J7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 35.99, - "z": 1.05 - }, - "J8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 35.99, - "z": 1.05 - }, - "J9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 35.99, - "z": 1.05 - }, - "K1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 31.49, - "z": 1.05 - }, - "K10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 31.49, - "z": 1.05 - }, - "K11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 31.49, - "z": 1.05 - }, - "K12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 31.49, - "z": 1.05 - }, - "K13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 31.49, - "z": 1.05 - }, - "K14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 31.49, - "z": 1.05 - }, - "K15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 31.49, - "z": 1.05 - }, - "K16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 31.49, - "z": 1.05 - }, - "K17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 31.49, - "z": 1.05 - }, - "K18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 31.49, - "z": 1.05 - }, - "K19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 31.49, - "z": 1.05 - }, - "K2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 31.49, - "z": 1.05 - }, - "K20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 31.49, - "z": 1.05 - }, - "K21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 31.49, - "z": 1.05 - }, - "K22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 31.49, - "z": 1.05 - }, - "K23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 31.49, - "z": 1.05 - }, - "K24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 31.49, - "z": 1.05 - }, - "K3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 31.49, - "z": 1.05 - }, - "K4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 31.49, - "z": 1.05 - }, - "K5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 31.49, - "z": 1.05 - }, - "K6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 31.49, - "z": 1.05 - }, - "K7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 31.49, - "z": 1.05 - }, - "K8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 31.49, - "z": 1.05 - }, - "K9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 31.49, - "z": 1.05 - }, - "L1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 26.99, - "z": 1.05 - }, - "L10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 26.99, - "z": 1.05 - }, - "L11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 26.99, - "z": 1.05 - }, - "L12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 26.99, - "z": 1.05 - }, - "L13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 26.99, - "z": 1.05 - }, - "L14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 26.99, - "z": 1.05 - }, - "L15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 26.99, - "z": 1.05 - }, - "L16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 26.99, - "z": 1.05 - }, - "L17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 26.99, - "z": 1.05 - }, - "L18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 26.99, - "z": 1.05 - }, - "L19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 26.99, - "z": 1.05 - }, - "L2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 26.99, - "z": 1.05 - }, - "L20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 26.99, - "z": 1.05 - }, - "L21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 26.99, - "z": 1.05 - }, - "L22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 26.99, - "z": 1.05 - }, - "L23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 26.99, - "z": 1.05 - }, - "L24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 26.99, - "z": 1.05 - }, - "L3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 26.99, - "z": 1.05 - }, - "L4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 26.99, - "z": 1.05 - }, - "L5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 26.99, - "z": 1.05 - }, - "L6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 26.99, - "z": 1.05 - }, - "L7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 26.99, - "z": 1.05 - }, - "L8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 26.99, - "z": 1.05 - }, - "L9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 26.99, - "z": 1.05 - }, - "M1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 22.49, - "z": 1.05 - }, - "M10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 22.49, - "z": 1.05 - }, - "M11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 22.49, - "z": 1.05 - }, - "M12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 22.49, - "z": 1.05 - }, - "M13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 22.49, - "z": 1.05 - }, - "M14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 22.49, - "z": 1.05 - }, - "M15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 22.49, - "z": 1.05 - }, - "M16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 22.49, - "z": 1.05 - }, - "M17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 22.49, - "z": 1.05 - }, - "M18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 22.49, - "z": 1.05 - }, - "M19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 22.49, - "z": 1.05 - }, - "M2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 22.49, - "z": 1.05 - }, - "M20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 22.49, - "z": 1.05 - }, - "M21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 22.49, - "z": 1.05 - }, - "M22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 22.49, - "z": 1.05 - }, - "M23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 22.49, - "z": 1.05 - }, - "M24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 22.49, - "z": 1.05 - }, - "M3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 22.49, - "z": 1.05 - }, - "M4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 22.49, - "z": 1.05 - }, - "M5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 22.49, - "z": 1.05 - }, - "M6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 22.49, - "z": 1.05 - }, - "M7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 22.49, - "z": 1.05 - }, - "M8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 22.49, - "z": 1.05 - }, - "M9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 22.49, - "z": 1.05 - }, - "N1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 17.99, - "z": 1.05 - }, - "N10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 17.99, - "z": 1.05 - }, - "N11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 17.99, - "z": 1.05 - }, - "N12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 17.99, - "z": 1.05 - }, - "N13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 17.99, - "z": 1.05 - }, - "N14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 17.99, - "z": 1.05 - }, - "N15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 17.99, - "z": 1.05 - }, - "N16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 17.99, - "z": 1.05 - }, - "N17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 17.99, - "z": 1.05 - }, - "N18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 17.99, - "z": 1.05 - }, - "N19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 17.99, - "z": 1.05 - }, - "N2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 17.99, - "z": 1.05 - }, - "N20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 17.99, - "z": 1.05 - }, - "N21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 17.99, - "z": 1.05 - }, - "N22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 17.99, - "z": 1.05 - }, - "N23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 17.99, - "z": 1.05 - }, - "N24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 17.99, - "z": 1.05 - }, - "N3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 17.99, - "z": 1.05 - }, - "N4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 17.99, - "z": 1.05 - }, - "N5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 17.99, - "z": 1.05 - }, - "N6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 17.99, - "z": 1.05 - }, - "N7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 17.99, - "z": 1.05 - }, - "N8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 17.99, - "z": 1.05 - }, - "N9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 17.99, - "z": 1.05 - }, - "O1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 13.49, - "z": 1.05 - }, - "O10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 13.49, - "z": 1.05 - }, - "O11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 13.49, - "z": 1.05 - }, - "O12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 13.49, - "z": 1.05 - }, - "O13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 13.49, - "z": 1.05 - }, - "O14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 13.49, - "z": 1.05 - }, - "O15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 13.49, - "z": 1.05 - }, - "O16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 13.49, - "z": 1.05 - }, - "O17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 13.49, - "z": 1.05 - }, - "O18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 13.49, - "z": 1.05 - }, - "O19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 13.49, - "z": 1.05 - }, - "O2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 13.49, - "z": 1.05 - }, - "O20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 13.49, - "z": 1.05 - }, - "O21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 13.49, - "z": 1.05 - }, - "O22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 13.49, - "z": 1.05 - }, - "O23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 13.49, - "z": 1.05 - }, - "O24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 13.49, - "z": 1.05 - }, - "O3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 13.49, - "z": 1.05 - }, - "O4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 13.49, - "z": 1.05 - }, - "O5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 13.49, - "z": 1.05 - }, - "O6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 13.49, - "z": 1.05 - }, - "O7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 13.49, - "z": 1.05 - }, - "O8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 13.49, - "z": 1.05 - }, - "O9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 13.49, - "z": 1.05 - }, - "P1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 8.99, - "z": 1.05 - }, - "P10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 8.99, - "z": 1.05 - }, - "P11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 8.99, - "z": 1.05 - }, - "P12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 8.99, - "z": 1.05 - }, - "P13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 8.99, - "z": 1.05 - }, - "P14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 8.99, - "z": 1.05 - }, - "P15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 8.99, - "z": 1.05 - }, - "P16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 8.99, - "z": 1.05 - }, - "P17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 8.99, - "z": 1.05 - }, - "P18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 8.99, - "z": 1.05 - }, - "P19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 8.99, - "z": 1.05 - }, - "P2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 8.99, - "z": 1.05 - }, - "P20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 8.99, - "z": 1.05 - }, - "P21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 8.99, - "z": 1.05 - }, - "P22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 8.99, - "z": 1.05 - }, - "P23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 8.99, - "z": 1.05 - }, - "P24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 8.99, - "z": 1.05 - }, - "P3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 8.99, - "z": 1.05 - }, - "P4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 8.99, - "z": 1.05 - }, - "P5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 8.99, - "z": 1.05 - }, - "P6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 8.99, - "z": 1.05 - }, - "P7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 8.99, - "z": 1.05 - }, - "P8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 8.99, - "z": 1.05 - }, - "P9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 8.99, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33f1e1d4e6a9e096acfb76a763a2f4b7", - "notes": [], - "params": { - "location": { - "slotName": "B3" - }, - "model": "flexStackerModuleV1" - }, - "result": { - "model": "flexStackerModuleV1", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/setStoredLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d91a6dda717b0a7376567c5cb32b049c", - "notes": [], - "params": { - "initialCount": 6, - "lidLabware": { - "loadName": "opentrons_flex_tiprack_lid", - "namespace": "opentrons", - "version": 1 - }, - "moduleId": "UUID", - "primaryLabware": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "namespace": "opentrons", - "version": 1 - } - }, - "result": { - "count": 6, - "lidLabwareDefinition": { - "allowedRoles": [ - "labware", - "lid" - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "compatibleParentLabware": [ - "opentrons_flex_96_filtertiprack_1000ul", - "opentrons_flex_96_filtertiprack_200ul", - "opentrons_flex_96_filtertiprack_50ul", - "opentrons_flex_96_tiprack_1000ul", - "opentrons_flex_96_tiprack_200ul", - "opentrons_flex_96_tiprack_20ul", - "opentrons_flex_96_tiprack_50ul" - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.7, - "yDimension": 78.75, - "zDimension": 17 - }, - "gripForce": 10.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": { - "default": { - "dropOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "lidDisposalOffsets": { - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "metadata": { - "displayCategory": "lid", - "displayName": "Opentrons Flex Tip Rack Lid", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [], - "parameters": { - "format": "irregular", - "isDeckSlotCompatible": false, - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_flex_tiprack_lid", - "quirks": [] - }, - "schemaVersion": 2, - "stackLimit": 1, - "stackingOffsetWithLabware": { - "default": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_1000ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_200ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_50ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_1000ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_200ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_20ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_50ul": { - "x": 0, - "y": 0, - "z": 14.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": {} - }, - "newLidLabwareLocationSequences": [ - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ] - ], - "newPrimaryLabwareLocationSequences": [ - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ] - ], - "originalLidLabwareLocationSequences": [ - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ] - ], - "originalPrimaryLabwareLocationSequences": [ - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ] - ], - "primaryLabwareDefinition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "storedLabware": [ - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLidStack", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "badb5f7b594849606009138e8293353b", - "notes": [], - "params": { - "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", - "location": { - "slotName": "B3" - }, - "namespace": "custom_beta", - "quantity": 5, - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [ - "labware", - "lid" - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "compatibleParentLabware": [ - "armadillo_96_wellplate_200ul_pcr_full_skirt", - "biorad_96_wellplate_200ul_pcr", - "custom_opentrons_tough_pcr_auto_sealing_lid", - "opentrons_96_wellplate_200ul_pcr_full_skirt", - "opentrons_flex_deck_riser", - "opentrons_tough_pcr_auto_sealing_lid", - "protocol_engine_lid_stack_object", - "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt" - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.7, - "yDimension": 85.48, - "zDimension": 12.8 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 7.91, - "gripperOffsets": { - "default": { - "dropOffset": { - "x": 0, - "y": 0.52, - "z": -6 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 1.5 - } - }, - "lidDisposalOffsets": { - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "lidOffsets": { - "dropOffset": { - "x": 0.5, - "y": 0, - "z": -1 - }, - "pickUpOffset": { - "x": 0.5, - "y": 0, - "z": -5 - } - } - }, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "metadata": { - "displayCategory": "lid", - "displayName": "Custom Opentrons Tough PCR Auto-Sealing Lid", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "custom_beta", - "ordering": [], - "parameters": { - "format": "irregular", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", - "quirks": [] - }, - "schemaVersion": 2, - "stackLimit": 5, - "stackingOffsetWithLabware": { - "armadillo_96_wellplate_200ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 8.193 - }, - "biorad_96_wellplate_200ul_pcr": { - "x": 0, - "y": 0, - "z": 8.08 - }, - "custom_opentrons_tough_pcr_auto_sealing_lid": { - "x": 0, - "y": 0, - "z": 6.492 - }, - "default": { - "x": 0, - "y": 0, - "z": 8.193 - }, - "opentrons_96_wellplate_200ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 8.193 - }, - "opentrons_flex_deck_riser": { - "x": 0, - "y": 0, - "z": 34 - }, - "opentrons_tough_pcr_auto_sealing_lid": { - "x": 0, - "y": 0, - "z": 6.492 - }, - "protocol_engine_lid_stack_object": { - "x": 0, - "y": 0, - "z": 0 - }, - "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt": { - "x": 0, - "y": 0, - "z": 8.193 - } - }, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "version": 2, - "wells": {} - }, - "labwareIds": [ - "UUID", - "UUID", - "UUID", - "UUID", - "UUID" - ], - "lidStackDefinition": { - "allowedRoles": [ - "system" - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 0, - "yDimension": 0, - "zDimension": 0 - }, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "metadata": { - "displayCategory": "system", - "displayName": "Protocol Engine Lid Stack", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [], - "parameters": { - "format": "irregular", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "protocol_engine_lid_stack_object", - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_deck_riser": { - "x": 0, - "y": 0, - "z": 34 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": {} - }, - "location": { - "slotName": "B3" - }, - "locationSequences": [ - [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - ], - "stackLabwareId": "UUID", - "stackLocationSequence": [ - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02f85273b6a12a2f1f107554f0cc7b1c", - "notes": [], - "params": { - "location": { - "slotName": "C3" - }, - "model": "flexStackerModuleV1" - }, - "result": { - "model": "flexStackerModuleV1", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/setStoredLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc9b1016925cd435a12e07a99a5e5c70", - "notes": [], - "params": { - "initialCount": 6, - "lidLabware": { - "loadName": "opentrons_flex_tiprack_lid", - "namespace": "opentrons", - "version": 1 - }, - "moduleId": "UUID", - "primaryLabware": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "namespace": "opentrons", - "version": 1 - } - }, - "result": { - "count": 6, - "lidLabwareDefinition": { - "allowedRoles": [ - "labware", - "lid" - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "compatibleParentLabware": [ - "opentrons_flex_96_filtertiprack_1000ul", - "opentrons_flex_96_filtertiprack_200ul", - "opentrons_flex_96_filtertiprack_50ul", - "opentrons_flex_96_tiprack_1000ul", - "opentrons_flex_96_tiprack_200ul", - "opentrons_flex_96_tiprack_20ul", - "opentrons_flex_96_tiprack_50ul" - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.7, - "yDimension": 78.75, - "zDimension": 17 - }, - "gripForce": 10.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": { - "default": { - "dropOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "lidDisposalOffsets": { - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "metadata": { - "displayCategory": "lid", - "displayName": "Opentrons Flex Tip Rack Lid", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [], - "parameters": { - "format": "irregular", - "isDeckSlotCompatible": false, - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_flex_tiprack_lid", - "quirks": [] - }, - "schemaVersion": 2, - "stackLimit": 1, - "stackingOffsetWithLabware": { - "default": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_1000ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_200ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_50ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_1000ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_200ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_20ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_50ul": { - "x": 0, - "y": 0, - "z": 14.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": {} - }, - "newLidLabwareLocationSequences": [ - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ] - ], - "newPrimaryLabwareLocationSequences": [ - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ] - ], - "originalLidLabwareLocationSequences": [ - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ] - ], - "originalPrimaryLabwareLocationSequences": [ - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ] - ], - "primaryLabwareDefinition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "storedLabware": [ - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4a278eb6d09f741b7050e9a37d2cdd1", - "notes": [], - "params": { - "location": { - "slotName": "C1" - }, - "model": "temperatureModuleV2" - }, - "result": { - "model": "temperatureModuleV2", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50ff53c23355d2ccac2984990fe51b0b", - "notes": [], - "params": { - "displayName": "Reagent Plate 1", - "loadName": "biorad_384_wellplate_50ul", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 4 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Bio-Rad", - "brandId": [ - "HSP3801", - "HSP3805", - "HSP3901", - "HSP3905", - "HSP3xxx", - "HSR4801", - "HSR4805", - "HSR4xxx" - ], - "links": [ - "https://www.bio-rad.com/en-us/sku/HSP3805-hard-shell-384-well-pcr-plates-thin-wall-skirted-clear-white?ID=HSP3805" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 10.4 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 9.3, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A13", - "A14", - "A15", - "A16", - "A17", - "A18", - "A19", - "A2", - "A20", - "A21", - "A22", - "A23", - "A24", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B13", - "B14", - "B15", - "B16", - "B17", - "B18", - "B19", - "B2", - "B20", - "B21", - "B22", - "B23", - "B24", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C13", - "C14", - "C15", - "C16", - "C17", - "C18", - "C19", - "C2", - "C20", - "C21", - "C22", - "C23", - "C24", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D13", - "D14", - "D15", - "D16", - "D17", - "D18", - "D19", - "D2", - "D20", - "D21", - "D22", - "D23", - "D24", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E13", - "E14", - "E15", - "E16", - "E17", - "E18", - "E19", - "E2", - "E20", - "E21", - "E22", - "E23", - "E24", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F13", - "F14", - "F15", - "F16", - "F17", - "F18", - "F19", - "F2", - "F20", - "F21", - "F22", - "F23", - "F24", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G13", - "G14", - "G15", - "G16", - "G17", - "G18", - "G19", - "G2", - "G20", - "G21", - "G22", - "G23", - "G24", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H13", - "H14", - "H15", - "H16", - "H17", - "H18", - "H19", - "H2", - "H20", - "H21", - "H22", - "H23", - "H24", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9", - "I1", - "I10", - "I11", - "I12", - "I13", - "I14", - "I15", - "I16", - "I17", - "I18", - "I19", - "I2", - "I20", - "I21", - "I22", - "I23", - "I24", - "I3", - "I4", - "I5", - "I6", - "I7", - "I8", - "I9", - "J1", - "J10", - "J11", - "J12", - "J13", - "J14", - "J15", - "J16", - "J17", - "J18", - "J19", - "J2", - "J20", - "J21", - "J22", - "J23", - "J24", - "J3", - "J4", - "J5", - "J6", - "J7", - "J8", - "J9", - "K1", - "K10", - "K11", - "K12", - "K13", - "K14", - "K15", - "K16", - "K17", - "K18", - "K19", - "K2", - "K20", - "K21", - "K22", - "K23", - "K24", - "K3", - "K4", - "K5", - "K6", - "K7", - "K8", - "K9", - "L1", - "L10", - "L11", - "L12", - "L13", - "L14", - "L15", - "L16", - "L17", - "L18", - "L19", - "L2", - "L20", - "L21", - "L22", - "L23", - "L24", - "L3", - "L4", - "L5", - "L6", - "L7", - "L8", - "L9", - "M1", - "M10", - "M11", - "M12", - "M13", - "M14", - "M15", - "M16", - "M17", - "M18", - "M19", - "M2", - "M20", - "M21", - "M22", - "M23", - "M24", - "M3", - "M4", - "M5", - "M6", - "M7", - "M8", - "M9", - "N1", - "N10", - "N11", - "N12", - "N13", - "N14", - "N15", - "N16", - "N17", - "N18", - "N19", - "N2", - "N20", - "N21", - "N22", - "N23", - "N24", - "N3", - "N4", - "N5", - "N6", - "N7", - "N8", - "N9", - "O1", - "O10", - "O11", - "O12", - "O13", - "O14", - "O15", - "O16", - "O17", - "O18", - "O19", - "O2", - "O20", - "O21", - "O22", - "O23", - "O24", - "O3", - "O4", - "O5", - "O6", - "O7", - "O8", - "O9", - "P1", - "P10", - "P11", - "P12", - "P13", - "P14", - "P15", - "P16", - "P17", - "P18", - "P19", - "P2", - "P20", - "P21", - "P22", - "P23", - "P24", - "P3", - "P4", - "P5", - "P6", - "P7", - "P8", - "P9" - ] - } - ], - "innerLabwareGeometry": { - "conicalWell": { - "sections": [ - { - "bottomDiameter": 3, - "bottomHeight": 5.35, - "shape": "conical", - "topDiameter": 3.1, - "topHeight": 9.35, - "xCount": 1, - "yCount": 1 - }, - { - "bottomDiameter": 1.46, - "bottomHeight": 0.35, - "shape": "conical", - "topDiameter": 3, - "topHeight": 5.35, - "xCount": 1, - "yCount": 1 - }, - { - "bottomHeight": 0.0, - "radiusOfCurvature": 0.94, - "shape": "spherical", - "topHeight": 0.35, - "xCount": 1, - "yCount": 1 - } - ] - } - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Bio-Rad 384 Well Plate 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1", - "I1", - "J1", - "K1", - "L1", - "M1", - "N1", - "O1", - "P1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10", - "I10", - "J10", - "K10", - "L10", - "M10", - "N10", - "O10", - "P10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11", - "I11", - "J11", - "K11", - "L11", - "M11", - "N11", - "O11", - "P11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12", - "I12", - "J12", - "K12", - "L12", - "M12", - "N12", - "O12", - "P12" - ], - [ - "A13", - "B13", - "C13", - "D13", - "E13", - "F13", - "G13", - "H13", - "I13", - "J13", - "K13", - "L13", - "M13", - "N13", - "O13", - "P13" - ], - [ - "A14", - "B14", - "C14", - "D14", - "E14", - "F14", - "G14", - "H14", - "I14", - "J14", - "K14", - "L14", - "M14", - "N14", - "O14", - "P14" - ], - [ - "A15", - "B15", - "C15", - "D15", - "E15", - "F15", - "G15", - "H15", - "I15", - "J15", - "K15", - "L15", - "M15", - "N15", - "O15", - "P15" - ], - [ - "A16", - "B16", - "C16", - "D16", - "E16", - "F16", - "G16", - "H16", - "I16", - "J16", - "K16", - "L16", - "M16", - "N16", - "O16", - "P16" - ], - [ - "A17", - "B17", - "C17", - "D17", - "E17", - "F17", - "G17", - "H17", - "I17", - "J17", - "K17", - "L17", - "M17", - "N17", - "O17", - "P17" - ], - [ - "A18", - "B18", - "C18", - "D18", - "E18", - "F18", - "G18", - "H18", - "I18", - "J18", - "K18", - "L18", - "M18", - "N18", - "O18", - "P18" - ], - [ - "A19", - "B19", - "C19", - "D19", - "E19", - "F19", - "G19", - "H19", - "I19", - "J19", - "K19", - "L19", - "M19", - "N19", - "O19", - "P19" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2", - "I2", - "J2", - "K2", - "L2", - "M2", - "N2", - "O2", - "P2" - ], - [ - "A20", - "B20", - "C20", - "D20", - "E20", - "F20", - "G20", - "H20", - "I20", - "J20", - "K20", - "L20", - "M20", - "N20", - "O20", - "P20" - ], - [ - "A21", - "B21", - "C21", - "D21", - "E21", - "F21", - "G21", - "H21", - "I21", - "J21", - "K21", - "L21", - "M21", - "N21", - "O21", - "P21" - ], - [ - "A22", - "B22", - "C22", - "D22", - "E22", - "F22", - "G22", - "H22", - "I22", - "J22", - "K22", - "L22", - "M22", - "N22", - "O22", - "P22" - ], - [ - "A23", - "B23", - "C23", - "D23", - "E23", - "F23", - "G23", - "H23", - "I23", - "J23", - "K23", - "L23", - "M23", - "N23", - "O23", - "P23" - ], - [ - "A24", - "B24", - "C24", - "D24", - "E24", - "F24", - "G24", - "H24", - "I24", - "J24", - "K24", - "L24", - "M24", - "N24", - "O24", - "P24" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3", - "I3", - "J3", - "K3", - "L3", - "M3", - "N3", - "O3", - "P3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4", - "I4", - "J4", - "K4", - "L4", - "M4", - "N4", - "O4", - "P4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5", - "I5", - "J5", - "K5", - "L5", - "M5", - "N5", - "O5", - "P5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6", - "I6", - "J6", - "K6", - "L6", - "M6", - "N6", - "O6", - "P6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7", - "I7", - "J7", - "K7", - "L7", - "M7", - "N7", - "O7", - "P7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8", - "I8", - "J8", - "K8", - "L8", - "M8", - "N8", - "O8", - "P8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9", - "I9", - "J9", - "K9", - "L9", - "M9", - "N9", - "O9", - "P9" - ] - ], - "parameters": { - "format": "384Standard", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "biorad_384_wellplate_50ul", - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "biorad_384_wellplate_50ul": { - "x": 0, - "y": 0, - "z": 1.95 - } - }, - "stackingOffsetWithModule": {}, - "version": 4, - "wells": { - "A1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 76.49, - "z": 1.05 - }, - "A10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 76.49, - "z": 1.05 - }, - "A11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 76.49, - "z": 1.05 - }, - "A12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 76.49, - "z": 1.05 - }, - "A13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 76.49, - "z": 1.05 - }, - "A14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 76.49, - "z": 1.05 - }, - "A15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 76.49, - "z": 1.05 - }, - "A16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 76.49, - "z": 1.05 - }, - "A17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 76.49, - "z": 1.05 - }, - "A18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 76.49, - "z": 1.05 - }, - "A19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 76.49, - "z": 1.05 - }, - "A2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 76.49, - "z": 1.05 - }, - "A20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 76.49, - "z": 1.05 - }, - "A21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 76.49, - "z": 1.05 - }, - "A22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 76.49, - "z": 1.05 - }, - "A23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 76.49, - "z": 1.05 - }, - "A24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 76.49, - "z": 1.05 - }, - "A3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 76.49, - "z": 1.05 - }, - "A4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 76.49, - "z": 1.05 - }, - "A5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 76.49, - "z": 1.05 - }, - "A6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 76.49, - "z": 1.05 - }, - "A7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 76.49, - "z": 1.05 - }, - "A8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 76.49, - "z": 1.05 - }, - "A9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 76.49, - "z": 1.05 - }, - "B1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 71.99, - "z": 1.05 - }, - "B10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 71.99, - "z": 1.05 - }, - "B11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 71.99, - "z": 1.05 - }, - "B12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 71.99, - "z": 1.05 - }, - "B13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 71.99, - "z": 1.05 - }, - "B14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 71.99, - "z": 1.05 - }, - "B15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 71.99, - "z": 1.05 - }, - "B16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 71.99, - "z": 1.05 - }, - "B17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 71.99, - "z": 1.05 - }, - "B18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 71.99, - "z": 1.05 - }, - "B19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 71.99, - "z": 1.05 - }, - "B2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 71.99, - "z": 1.05 - }, - "B20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 71.99, - "z": 1.05 - }, - "B21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 71.99, - "z": 1.05 - }, - "B22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 71.99, - "z": 1.05 - }, - "B23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 71.99, - "z": 1.05 - }, - "B24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 71.99, - "z": 1.05 - }, - "B3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 71.99, - "z": 1.05 - }, - "B4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 71.99, - "z": 1.05 - }, - "B5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 71.99, - "z": 1.05 - }, - "B6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 71.99, - "z": 1.05 - }, - "B7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 71.99, - "z": 1.05 - }, - "B8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 71.99, - "z": 1.05 - }, - "B9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 71.99, - "z": 1.05 - }, - "C1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 67.49, - "z": 1.05 - }, - "C10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 67.49, - "z": 1.05 - }, - "C11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 67.49, - "z": 1.05 - }, - "C12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 67.49, - "z": 1.05 - }, - "C13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 67.49, - "z": 1.05 - }, - "C14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 67.49, - "z": 1.05 - }, - "C15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 67.49, - "z": 1.05 - }, - "C16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 67.49, - "z": 1.05 - }, - "C17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 67.49, - "z": 1.05 - }, - "C18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 67.49, - "z": 1.05 - }, - "C19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 67.49, - "z": 1.05 - }, - "C2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 67.49, - "z": 1.05 - }, - "C20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 67.49, - "z": 1.05 - }, - "C21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 67.49, - "z": 1.05 - }, - "C22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 67.49, - "z": 1.05 - }, - "C23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 67.49, - "z": 1.05 - }, - "C24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 67.49, - "z": 1.05 - }, - "C3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 67.49, - "z": 1.05 - }, - "C4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 67.49, - "z": 1.05 - }, - "C5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 67.49, - "z": 1.05 - }, - "C6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 67.49, - "z": 1.05 - }, - "C7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 67.49, - "z": 1.05 - }, - "C8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 67.49, - "z": 1.05 - }, - "C9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 67.49, - "z": 1.05 - }, - "D1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 62.99, - "z": 1.05 - }, - "D10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 62.99, - "z": 1.05 - }, - "D11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 62.99, - "z": 1.05 - }, - "D12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 62.99, - "z": 1.05 - }, - "D13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 62.99, - "z": 1.05 - }, - "D14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 62.99, - "z": 1.05 - }, - "D15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 62.99, - "z": 1.05 - }, - "D16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 62.99, - "z": 1.05 - }, - "D17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 62.99, - "z": 1.05 - }, - "D18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 62.99, - "z": 1.05 - }, - "D19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 62.99, - "z": 1.05 - }, - "D2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 62.99, - "z": 1.05 - }, - "D20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 62.99, - "z": 1.05 - }, - "D21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 62.99, - "z": 1.05 - }, - "D22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 62.99, - "z": 1.05 - }, - "D23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 62.99, - "z": 1.05 - }, - "D24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 62.99, - "z": 1.05 - }, - "D3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 62.99, - "z": 1.05 - }, - "D4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 62.99, - "z": 1.05 - }, - "D5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 62.99, - "z": 1.05 - }, - "D6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 62.99, - "z": 1.05 - }, - "D7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 62.99, - "z": 1.05 - }, - "D8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 62.99, - "z": 1.05 - }, - "D9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 62.99, - "z": 1.05 - }, - "E1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 58.49, - "z": 1.05 - }, - "E10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 58.49, - "z": 1.05 - }, - "E11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 58.49, - "z": 1.05 - }, - "E12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 58.49, - "z": 1.05 - }, - "E13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 58.49, - "z": 1.05 - }, - "E14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 58.49, - "z": 1.05 - }, - "E15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 58.49, - "z": 1.05 - }, - "E16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 58.49, - "z": 1.05 - }, - "E17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 58.49, - "z": 1.05 - }, - "E18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 58.49, - "z": 1.05 - }, - "E19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 58.49, - "z": 1.05 - }, - "E2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 58.49, - "z": 1.05 - }, - "E20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 58.49, - "z": 1.05 - }, - "E21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 58.49, - "z": 1.05 - }, - "E22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 58.49, - "z": 1.05 - }, - "E23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 58.49, - "z": 1.05 - }, - "E24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 58.49, - "z": 1.05 - }, - "E3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 58.49, - "z": 1.05 - }, - "E4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 58.49, - "z": 1.05 - }, - "E5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 58.49, - "z": 1.05 - }, - "E6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 58.49, - "z": 1.05 - }, - "E7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 58.49, - "z": 1.05 - }, - "E8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 58.49, - "z": 1.05 - }, - "E9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 58.49, - "z": 1.05 - }, - "F1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 53.99, - "z": 1.05 - }, - "F10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 53.99, - "z": 1.05 - }, - "F11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 53.99, - "z": 1.05 - }, - "F12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 53.99, - "z": 1.05 - }, - "F13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 53.99, - "z": 1.05 - }, - "F14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 53.99, - "z": 1.05 - }, - "F15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 53.99, - "z": 1.05 - }, - "F16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 53.99, - "z": 1.05 - }, - "F17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 53.99, - "z": 1.05 - }, - "F18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 53.99, - "z": 1.05 - }, - "F19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 53.99, - "z": 1.05 - }, - "F2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 53.99, - "z": 1.05 - }, - "F20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 53.99, - "z": 1.05 - }, - "F21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 53.99, - "z": 1.05 - }, - "F22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 53.99, - "z": 1.05 - }, - "F23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 53.99, - "z": 1.05 - }, - "F24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 53.99, - "z": 1.05 - }, - "F3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 53.99, - "z": 1.05 - }, - "F4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 53.99, - "z": 1.05 - }, - "F5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 53.99, - "z": 1.05 - }, - "F6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 53.99, - "z": 1.05 - }, - "F7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 53.99, - "z": 1.05 - }, - "F8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 53.99, - "z": 1.05 - }, - "F9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 53.99, - "z": 1.05 - }, - "G1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 49.49, - "z": 1.05 - }, - "G10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 49.49, - "z": 1.05 - }, - "G11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 49.49, - "z": 1.05 - }, - "G12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 49.49, - "z": 1.05 - }, - "G13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 49.49, - "z": 1.05 - }, - "G14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 49.49, - "z": 1.05 - }, - "G15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 49.49, - "z": 1.05 - }, - "G16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 49.49, - "z": 1.05 - }, - "G17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 49.49, - "z": 1.05 - }, - "G18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 49.49, - "z": 1.05 - }, - "G19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 49.49, - "z": 1.05 - }, - "G2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 49.49, - "z": 1.05 - }, - "G20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 49.49, - "z": 1.05 - }, - "G21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 49.49, - "z": 1.05 - }, - "G22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 49.49, - "z": 1.05 - }, - "G23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 49.49, - "z": 1.05 - }, - "G24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 49.49, - "z": 1.05 - }, - "G3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 49.49, - "z": 1.05 - }, - "G4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 49.49, - "z": 1.05 - }, - "G5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 49.49, - "z": 1.05 - }, - "G6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 49.49, - "z": 1.05 - }, - "G7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 49.49, - "z": 1.05 - }, - "G8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 49.49, - "z": 1.05 - }, - "G9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 49.49, - "z": 1.05 - }, - "H1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 44.99, - "z": 1.05 - }, - "H10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 44.99, - "z": 1.05 - }, - "H11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 44.99, - "z": 1.05 - }, - "H12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 44.99, - "z": 1.05 - }, - "H13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 44.99, - "z": 1.05 - }, - "H14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 44.99, - "z": 1.05 - }, - "H15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 44.99, - "z": 1.05 - }, - "H16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 44.99, - "z": 1.05 - }, - "H17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 44.99, - "z": 1.05 - }, - "H18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 44.99, - "z": 1.05 - }, - "H19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 44.99, - "z": 1.05 - }, - "H2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 44.99, - "z": 1.05 - }, - "H20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 44.99, - "z": 1.05 - }, - "H21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 44.99, - "z": 1.05 - }, - "H22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 44.99, - "z": 1.05 - }, - "H23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 44.99, - "z": 1.05 - }, - "H24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 44.99, - "z": 1.05 - }, - "H3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 44.99, - "z": 1.05 - }, - "H4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 44.99, - "z": 1.05 - }, - "H5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 44.99, - "z": 1.05 - }, - "H6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 44.99, - "z": 1.05 - }, - "H7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 44.99, - "z": 1.05 - }, - "H8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 44.99, - "z": 1.05 - }, - "H9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 44.99, - "z": 1.05 - }, - "I1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 40.49, - "z": 1.05 - }, - "I10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 40.49, - "z": 1.05 - }, - "I11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 40.49, - "z": 1.05 - }, - "I12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 40.49, - "z": 1.05 - }, - "I13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 40.49, - "z": 1.05 - }, - "I14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 40.49, - "z": 1.05 - }, - "I15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 40.49, - "z": 1.05 - }, - "I16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 40.49, - "z": 1.05 - }, - "I17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 40.49, - "z": 1.05 - }, - "I18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 40.49, - "z": 1.05 - }, - "I19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 40.49, - "z": 1.05 - }, - "I2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 40.49, - "z": 1.05 - }, - "I20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 40.49, - "z": 1.05 - }, - "I21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 40.49, - "z": 1.05 - }, - "I22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 40.49, - "z": 1.05 - }, - "I23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 40.49, - "z": 1.05 - }, - "I24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 40.49, - "z": 1.05 - }, - "I3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 40.49, - "z": 1.05 - }, - "I4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 40.49, - "z": 1.05 - }, - "I5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 40.49, - "z": 1.05 - }, - "I6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 40.49, - "z": 1.05 - }, - "I7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 40.49, - "z": 1.05 - }, - "I8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 40.49, - "z": 1.05 - }, - "I9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 40.49, - "z": 1.05 - }, - "J1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 35.99, - "z": 1.05 - }, - "J10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 35.99, - "z": 1.05 - }, - "J11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 35.99, - "z": 1.05 - }, - "J12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 35.99, - "z": 1.05 - }, - "J13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 35.99, - "z": 1.05 - }, - "J14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 35.99, - "z": 1.05 - }, - "J15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 35.99, - "z": 1.05 - }, - "J16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 35.99, - "z": 1.05 - }, - "J17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 35.99, - "z": 1.05 - }, - "J18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 35.99, - "z": 1.05 - }, - "J19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 35.99, - "z": 1.05 - }, - "J2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 35.99, - "z": 1.05 - }, - "J20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 35.99, - "z": 1.05 - }, - "J21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 35.99, - "z": 1.05 - }, - "J22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 35.99, - "z": 1.05 - }, - "J23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 35.99, - "z": 1.05 - }, - "J24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 35.99, - "z": 1.05 - }, - "J3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 35.99, - "z": 1.05 - }, - "J4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 35.99, - "z": 1.05 - }, - "J5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 35.99, - "z": 1.05 - }, - "J6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 35.99, - "z": 1.05 - }, - "J7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 35.99, - "z": 1.05 - }, - "J8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 35.99, - "z": 1.05 - }, - "J9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 35.99, - "z": 1.05 - }, - "K1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 31.49, - "z": 1.05 - }, - "K10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 31.49, - "z": 1.05 - }, - "K11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 31.49, - "z": 1.05 - }, - "K12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 31.49, - "z": 1.05 - }, - "K13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 31.49, - "z": 1.05 - }, - "K14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 31.49, - "z": 1.05 - }, - "K15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 31.49, - "z": 1.05 - }, - "K16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 31.49, - "z": 1.05 - }, - "K17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 31.49, - "z": 1.05 - }, - "K18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 31.49, - "z": 1.05 - }, - "K19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 31.49, - "z": 1.05 - }, - "K2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 31.49, - "z": 1.05 - }, - "K20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 31.49, - "z": 1.05 - }, - "K21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 31.49, - "z": 1.05 - }, - "K22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 31.49, - "z": 1.05 - }, - "K23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 31.49, - "z": 1.05 - }, - "K24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 31.49, - "z": 1.05 - }, - "K3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 31.49, - "z": 1.05 - }, - "K4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 31.49, - "z": 1.05 - }, - "K5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 31.49, - "z": 1.05 - }, - "K6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 31.49, - "z": 1.05 - }, - "K7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 31.49, - "z": 1.05 - }, - "K8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 31.49, - "z": 1.05 - }, - "K9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 31.49, - "z": 1.05 - }, - "L1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 26.99, - "z": 1.05 - }, - "L10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 26.99, - "z": 1.05 - }, - "L11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 26.99, - "z": 1.05 - }, - "L12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 26.99, - "z": 1.05 - }, - "L13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 26.99, - "z": 1.05 - }, - "L14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 26.99, - "z": 1.05 - }, - "L15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 26.99, - "z": 1.05 - }, - "L16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 26.99, - "z": 1.05 - }, - "L17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 26.99, - "z": 1.05 - }, - "L18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 26.99, - "z": 1.05 - }, - "L19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 26.99, - "z": 1.05 - }, - "L2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 26.99, - "z": 1.05 - }, - "L20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 26.99, - "z": 1.05 - }, - "L21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 26.99, - "z": 1.05 - }, - "L22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 26.99, - "z": 1.05 - }, - "L23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 26.99, - "z": 1.05 - }, - "L24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 26.99, - "z": 1.05 - }, - "L3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 26.99, - "z": 1.05 - }, - "L4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 26.99, - "z": 1.05 - }, - "L5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 26.99, - "z": 1.05 - }, - "L6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 26.99, - "z": 1.05 - }, - "L7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 26.99, - "z": 1.05 - }, - "L8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 26.99, - "z": 1.05 - }, - "L9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 26.99, - "z": 1.05 - }, - "M1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 22.49, - "z": 1.05 - }, - "M10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 22.49, - "z": 1.05 - }, - "M11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 22.49, - "z": 1.05 - }, - "M12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 22.49, - "z": 1.05 - }, - "M13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 22.49, - "z": 1.05 - }, - "M14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 22.49, - "z": 1.05 - }, - "M15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 22.49, - "z": 1.05 - }, - "M16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 22.49, - "z": 1.05 - }, - "M17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 22.49, - "z": 1.05 - }, - "M18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 22.49, - "z": 1.05 - }, - "M19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 22.49, - "z": 1.05 - }, - "M2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 22.49, - "z": 1.05 - }, - "M20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 22.49, - "z": 1.05 - }, - "M21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 22.49, - "z": 1.05 - }, - "M22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 22.49, - "z": 1.05 - }, - "M23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 22.49, - "z": 1.05 - }, - "M24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 22.49, - "z": 1.05 - }, - "M3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 22.49, - "z": 1.05 - }, - "M4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 22.49, - "z": 1.05 - }, - "M5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 22.49, - "z": 1.05 - }, - "M6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 22.49, - "z": 1.05 - }, - "M7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 22.49, - "z": 1.05 - }, - "M8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 22.49, - "z": 1.05 - }, - "M9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 22.49, - "z": 1.05 - }, - "N1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 17.99, - "z": 1.05 - }, - "N10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 17.99, - "z": 1.05 - }, - "N11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 17.99, - "z": 1.05 - }, - "N12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 17.99, - "z": 1.05 - }, - "N13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 17.99, - "z": 1.05 - }, - "N14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 17.99, - "z": 1.05 - }, - "N15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 17.99, - "z": 1.05 - }, - "N16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 17.99, - "z": 1.05 - }, - "N17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 17.99, - "z": 1.05 - }, - "N18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 17.99, - "z": 1.05 - }, - "N19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 17.99, - "z": 1.05 - }, - "N2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 17.99, - "z": 1.05 - }, - "N20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 17.99, - "z": 1.05 - }, - "N21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 17.99, - "z": 1.05 - }, - "N22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 17.99, - "z": 1.05 - }, - "N23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 17.99, - "z": 1.05 - }, - "N24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 17.99, - "z": 1.05 - }, - "N3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 17.99, - "z": 1.05 - }, - "N4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 17.99, - "z": 1.05 - }, - "N5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 17.99, - "z": 1.05 - }, - "N6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 17.99, - "z": 1.05 - }, - "N7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 17.99, - "z": 1.05 - }, - "N8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 17.99, - "z": 1.05 - }, - "N9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 17.99, - "z": 1.05 - }, - "O1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 13.49, - "z": 1.05 - }, - "O10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 13.49, - "z": 1.05 - }, - "O11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 13.49, - "z": 1.05 - }, - "O12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 13.49, - "z": 1.05 - }, - "O13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 13.49, - "z": 1.05 - }, - "O14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 13.49, - "z": 1.05 - }, - "O15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 13.49, - "z": 1.05 - }, - "O16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 13.49, - "z": 1.05 - }, - "O17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 13.49, - "z": 1.05 - }, - "O18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 13.49, - "z": 1.05 - }, - "O19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 13.49, - "z": 1.05 - }, - "O2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 13.49, - "z": 1.05 - }, - "O20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 13.49, - "z": 1.05 - }, - "O21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 13.49, - "z": 1.05 - }, - "O22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 13.49, - "z": 1.05 - }, - "O23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 13.49, - "z": 1.05 - }, - "O24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 13.49, - "z": 1.05 - }, - "O3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 13.49, - "z": 1.05 - }, - "O4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 13.49, - "z": 1.05 - }, - "O5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 13.49, - "z": 1.05 - }, - "O6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 13.49, - "z": 1.05 - }, - "O7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 13.49, - "z": 1.05 - }, - "O8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 13.49, - "z": 1.05 - }, - "O9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 13.49, - "z": 1.05 - }, - "P1": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 12.13, - "y": 8.99, - "z": 1.05 - }, - "P10": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 52.63, - "y": 8.99, - "z": 1.05 - }, - "P11": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 57.13, - "y": 8.99, - "z": 1.05 - }, - "P12": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 61.63, - "y": 8.99, - "z": 1.05 - }, - "P13": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 66.13, - "y": 8.99, - "z": 1.05 - }, - "P14": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 70.63, - "y": 8.99, - "z": 1.05 - }, - "P15": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 75.13, - "y": 8.99, - "z": 1.05 - }, - "P16": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 79.63, - "y": 8.99, - "z": 1.05 - }, - "P17": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 84.13, - "y": 8.99, - "z": 1.05 - }, - "P18": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 88.63, - "y": 8.99, - "z": 1.05 - }, - "P19": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 93.13, - "y": 8.99, - "z": 1.05 - }, - "P2": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 16.63, - "y": 8.99, - "z": 1.05 - }, - "P20": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 97.63, - "y": 8.99, - "z": 1.05 - }, - "P21": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 102.13, - "y": 8.99, - "z": 1.05 - }, - "P22": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 106.63, - "y": 8.99, - "z": 1.05 - }, - "P23": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 111.13, - "y": 8.99, - "z": 1.05 - }, - "P24": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 115.63, - "y": 8.99, - "z": 1.05 - }, - "P3": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 21.13, - "y": 8.99, - "z": 1.05 - }, - "P4": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 25.63, - "y": 8.99, - "z": 1.05 - }, - "P5": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 30.13, - "y": 8.99, - "z": 1.05 - }, - "P6": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 34.63, - "y": 8.99, - "z": 1.05 - }, - "P7": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 39.13, - "y": 8.99, - "z": 1.05 - }, - "P8": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 43.63, - "y": 8.99, - "z": 1.05 - }, - "P9": { - "depth": 9.35, - "diameter": 3.1, - "geometryDefinitionId": "conicalWell", - "shape": "circular", - "totalLiquidVolume": 50, - "x": 48.13, - "y": 8.99, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "temperatureModuleV2C1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32843d4570fd7da19ede014e64de1499", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "C2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ca40e5289ae21c1f09276fc724de794", - "notes": [], - "params": { - "displayName": "ETOH Reservoir", - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "slotName": "C3" - }, - "namespace": "opentrons", - "version": 4 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "503001", - "503501" - ], - "links": [ - "https://www.nest-biotech.com/deep-well-plates/59253726.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.3, - "zDimension": 41 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 21.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "bottomHeight": 1.67, - "bottomXDimension": 7.4, - "bottomYDimension": 7.4, - "shape": "cuboidal", - "topHeight": 38.05, - "topXDimension": 8.2, - "topYDimension": 8.2, - "xCount": 1, - "yCount": 1 - }, - { - "bottomHeight": 0.0, - "bottomXDimension": 2.63, - "bottomYDimension": 2.63, - "shape": "cuboidal", - "topHeight": 1.67, - "topXDimension": 7.4, - "topYDimension": 7.4, - "xCount": 1, - "yCount": 1 - } - ] - } - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deep Well Plate 2 mL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "nest_96_wellplate_2ml_deep", - "magneticModuleEngageHeight": 6.8, - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "nest_96_wellplate_2ml_deep": { - "x": 0, - "y": 0, - "z": 2.75 - }, - "opentrons_96_deep_well_adapter": { - "x": 0, - "y": 0, - "z": 16.3 - }, - "opentrons_96_deep_well_temp_mod_adapter": { - "x": 0, - "y": 0, - "z": 16.1 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 2.66 - } - }, - "version": 4, - "wells": { - "A1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "B1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "C1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "D1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "E1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "F1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "G1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "H1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30f073be15b1cf78d23d25b494a65ecb", - "notes": [], - "params": { - "location": { - "slotName": "D3" - }, - "model": "flexStackerModuleV1" - }, - "result": { - "model": "flexStackerModuleV1", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/setStoredLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "933418951c0a360c7632a73c4c0b67e5", - "notes": [], - "params": { - "initialCount": 6, - "lidLabware": { - "loadName": "opentrons_flex_tiprack_lid", - "namespace": "opentrons", - "version": 1 - }, - "moduleId": "UUID", - "primaryLabware": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "namespace": "opentrons", - "version": 1 - } - }, - "result": { - "count": 6, - "lidLabwareDefinition": { - "allowedRoles": [ - "labware", - "lid" - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "compatibleParentLabware": [ - "opentrons_flex_96_filtertiprack_1000ul", - "opentrons_flex_96_filtertiprack_200ul", - "opentrons_flex_96_filtertiprack_50ul", - "opentrons_flex_96_tiprack_1000ul", - "opentrons_flex_96_tiprack_200ul", - "opentrons_flex_96_tiprack_20ul", - "opentrons_flex_96_tiprack_50ul" - ], - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.7, - "yDimension": 78.75, - "zDimension": 17 - }, - "gripForce": 10.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": { - "default": { - "dropOffset": { - "x": 0, - "y": 0, - "z": 0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - }, - "lidDisposalOffsets": { - "dropOffset": { - "x": 0, - "y": 5.0, - "z": 50.0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - "groups": [ - { - "metadata": {}, - "wells": [] - } - ], - "metadata": { - "displayCategory": "lid", - "displayName": "Opentrons Flex Tip Rack Lid", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [], - "parameters": { - "format": "irregular", - "isDeckSlotCompatible": false, - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_flex_tiprack_lid", - "quirks": [] - }, - "schemaVersion": 2, - "stackLimit": 1, - "stackingOffsetWithLabware": { - "default": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_1000ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_200ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_filtertiprack_50ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_1000ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_200ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_20ul": { - "x": 0, - "y": 0, - "z": 14.25 - }, - "opentrons_flex_96_tiprack_50ul": { - "x": 0, - "y": 0, - "z": 14.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": {} - }, - "newLidLabwareLocationSequences": [ - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ] - ], - "newPrimaryLabwareLocationSequences": [ - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ] - ], - "originalLidLabwareLocationSequences": [ - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ] - ], - "originalPrimaryLabwareLocationSequences": [ - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ], - [ - { - "kind": "notOnDeck", - "logicalLocationName": "systemLocation" - } - ] - ], - "primaryLabwareDefinition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "storedLabware": [ - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - }, - { - "lidLabwareId": "UUID", - "primaryLabwareId": "UUID" - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9031117fec4f9628bdc49b8c342beb2", - "notes": [], - "params": { - "displayName": "Liquid Waste Reservoir", - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "slotName": "D1" - }, - "namespace": "opentrons", - "version": 4 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "503001", - "503501" - ], - "links": [ - "https://www.nest-biotech.com/deep-well-plates/59253726.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.3, - "zDimension": 41 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 21.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "bottomHeight": 1.67, - "bottomXDimension": 7.4, - "bottomYDimension": 7.4, - "shape": "cuboidal", - "topHeight": 38.05, - "topXDimension": 8.2, - "topYDimension": 8.2, - "xCount": 1, - "yCount": 1 - }, - { - "bottomHeight": 0.0, - "bottomXDimension": 2.63, - "bottomYDimension": 2.63, - "shape": "cuboidal", - "topHeight": 1.67, - "topXDimension": 7.4, - "topYDimension": 7.4, - "xCount": 1, - "yCount": 1 - } - ] - } - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deep Well Plate 2 mL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "nest_96_wellplate_2ml_deep", - "magneticModuleEngageHeight": 6.8, - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "nest_96_wellplate_2ml_deep": { - "x": 0, - "y": 0, - "z": 2.75 - }, - "opentrons_96_deep_well_adapter": { - "x": 0, - "y": 0, - "z": 16.3 - }, - "opentrons_96_deep_well_temp_mod_adapter": { - "x": 0, - "y": 0, - "z": 16.1 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 2.66 - } - }, - "version": 4, - "wells": { - "A1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "B1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "C1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "D1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "E1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "F1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "G1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "H1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "D1", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleLeftSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2bee29b415b697cbe12dac4a03faf48", - "notes": [], - "params": { - "location": { - "slotName": "D2" - }, - "model": "magneticBlockV1" - }, - "result": { - "model": "magneticBlockV1", - "moduleId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e137ae397bb0e548c3635469310bbed", - "notes": [], - "params": { - "displayName": "Cleanup Plate 1", - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 4 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "503001", - "503501" - ], - "links": [ - "https://www.nest-biotech.com/deep-well-plates/59253726.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.3, - "zDimension": 41 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 21.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "bottomHeight": 1.67, - "bottomXDimension": 7.4, - "bottomYDimension": 7.4, - "shape": "cuboidal", - "topHeight": 38.05, - "topXDimension": 8.2, - "topYDimension": 8.2, - "xCount": 1, - "yCount": 1 - }, - { - "bottomHeight": 0.0, - "bottomXDimension": 2.63, - "bottomYDimension": 2.63, - "shape": "cuboidal", - "topHeight": 1.67, - "topXDimension": 7.4, - "topYDimension": 7.4, - "xCount": 1, - "yCount": 1 - } - ] - } - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deep Well Plate 2 mL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "nest_96_wellplate_2ml_deep", - "magneticModuleEngageHeight": 6.8, - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "nest_96_wellplate_2ml_deep": { - "x": 0, - "y": 0, - "z": 2.75 - }, - "opentrons_96_deep_well_adapter": { - "x": 0, - "y": 0, - "z": 16.3 - }, - "opentrons_96_deep_well_temp_mod_adapter": { - "x": 0, - "y": 0, - "z": 16.1 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 2.66 - } - }, - "version": 4, - "wells": { - "A1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "B1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "C1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "D1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "E1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "F1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "G1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "H1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96de1d2071eb561b2b4f036f4fd6e346", - "notes": [], - "params": { - "displayName": "Cleanup Plate 2", - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 4 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "503001", - "503501" - ], - "links": [ - "https://www.nest-biotech.com/deep-well-plates/59253726.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.3, - "zDimension": 41 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 21.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "innerLabwareGeometry": { - "cuboidalWell": { - "sections": [ - { - "bottomHeight": 1.67, - "bottomXDimension": 7.4, - "bottomYDimension": 7.4, - "shape": "cuboidal", - "topHeight": 38.05, - "topXDimension": 8.2, - "topYDimension": 8.2, - "xCount": 1, - "yCount": 1 - }, - { - "bottomHeight": 0.0, - "bottomXDimension": 2.63, - "bottomYDimension": 2.63, - "shape": "cuboidal", - "topHeight": 1.67, - "topXDimension": 7.4, - "topYDimension": 7.4, - "xCount": 1, - "yCount": 1 - } - ] - } - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deep Well Plate 2 mL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "nest_96_wellplate_2ml_deep", - "magneticModuleEngageHeight": 6.8, - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "nest_96_wellplate_2ml_deep": { - "x": 0, - "y": 0, - "z": 2.75 - }, - "opentrons_96_deep_well_adapter": { - "x": 0, - "y": 0, - "z": 16.3 - }, - "opentrons_96_deep_well_temp_mod_adapter": { - "x": 0, - "y": 0, - "z": 16.1 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 2.66 - } - }, - "version": 4, - "wells": { - "A1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "B1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "C1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "D1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "E1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "F1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "G1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "H1": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H10": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H11": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H12": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H2": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H3": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H4": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H5": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H6": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H7": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H8": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H9": { - "depth": 38, - "geometryDefinitionId": "cuboidalWell", - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterCovered", - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7df3fcec3d72b5e4a834c6e32a73ed1", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/setTargetTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d183e231e48cb79061e322df9e3d2355", - "notes": [], - "params": { - "celsius": 4.0, - "moduleId": "UUID" - }, - "result": { - "targetTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/waitForTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50a2e1a877314c33ff7176694b6e53d4", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd2983d3ba8917e795732e84800f576f", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e75efe83fd67a7de47fac7d748562ef6", - "notes": [], - "params": { - "message": "--> Aliquoting EPH3" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd800551adfb059053bc8ee0135cb431", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a0aa903f50e4c5c270728f5b1f480e0", - "notes": [], - "params": { - "message": "--> Adding EPH3" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed9ab536042920fd419d87a9399db952", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A1", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e5763df74e4e23c7d0ad0d11537b229", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cad7a67bc157af7a505c294f789aedc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "609a81aa02b7b96222d65b48b0216eb8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae2c7ddfb4aea64a62dc4186f83b3a15", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a36b395706f81a7111da2e1a61af37ae", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7254a6d3ebd5b892b9c19e1b0c16d9f5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7413ebbd00d8d7b49d90b9566eedfbc5", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8c67b2f52599a7d41413f10a318dcb3", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "509f7fdc87b221c6546761bd8ad7c21e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fe25853a9b14d9e995a31ddc181a099", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3e1431d1d92ac5630200494f9eefefb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3a8c58c1bd26163e4a2a94511837a04", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27813e6fd04364d8b1b3effd2ecd9e91", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05a92a6b94a0420881d1e0a3aa279069", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f04cfc83227cde96fb3ba50056a7ec0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d342a7f31a99f8332e486f0e1c0e5e91", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1044568c8b8d625b98edeab4056e8bc6", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccb5ca695cba33b548b03699de5632c3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87068826ff8adcf380957f18305a4558", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8a91883be3cbe1e49c1a27e64c2fa36", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1585f611647c8338f3a48b43d9c5653e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b37fed16adacc5836aa37ca7be2d89a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "540e8656d423bf59275dd73871dad228", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3db11a31f420db607ea7073f435dafbf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9c09f1def809a16a23277e285fd537c", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dffd8db33fef373b015de33c0c13464", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73e5252ebeef906da5a66719ba0adf05", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fec55eeedb6d64518848fa31c572dde", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb617b8da9319620a7fdaa1b86dfe67f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0819b90d97a6756c9574d4cbcb297205", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ffa107795917f25ae6391bc66be314f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fefeba7df6f586a3cbb6be93bd46cae", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf3ab747286ea2b0d39d0234da1cff99", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d76cc9a811dcf6ab9257509d121729b", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "681756d721a9ae1e84f3e0d120cbae37", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f82002d36b004f7da7b6956c4ad00652", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c56fc48413ebd6c5ab11f4693efec6d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bc226cf42ee61c91e8d2db59710d6c3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "230e4a820e4297396b170e179fb2d0fb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bb51d242f4440928c529a41bf8742f0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e9385628f4b8f57c2b65217efb1d9af", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "262e89744a75c448ab8bdb48b0c5fbf9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b30451f8d238f932c7494b9f1313d16", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc67d76a66c6baa2d038eb6760d77a78", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ffb4a5b42421504c56764e6aba9bd57", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b89f8ae81c938eca39c91a2289cad94", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf6849a5dd45165f9b3bf7c80c785fef", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c91dd362f0266153b98a7f7e1c06b08", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acee88dfe67ad4362fe23b6a02acab15", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a15316bbd896913c31c68d3eef9efe86", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af1d981393560c57b60e1bc30edf9dee", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c5fba30fd5ae4b0cf186bc058357ea6", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09bb37e4d517b583a73c1e1e4831fcce", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53416889a7388fb651b1a243a70adc03", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43ba5142831743c21ffc01ecbabc97e5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "622c03b4b0ed882a4cf6e34e5933f559", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89a6a9ad805428689a0d3962a313710d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "940a05520708d8f8e830e72d3facfb71", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9fbc145159c5f1b3071223502ca6b4b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "803e0c9b66dde4855d0693452170aaa8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26f1bf7be3f210185a686371fd5d98d8", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca73fe5381405518e0699242181ab670", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b5a8289a0a2e0ce971995f1b841d0ab", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2c8a33a063440c074708bc2c8f8f662", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e56b48b5486135c187c567428211a037", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88e1a9c30df59209718285cfc3888811", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18f47df1fc41265eeb17b91b9a2550fa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a55a845d298cb328c7a924bcbf564ed", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8382dacdcc207a8616af5ce32399a29", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f64e80ddda32891459727506a0836b9", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c60e0434366e4507968184864752e1fc", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b75067b0ea3d5f6b992d766b8c4675e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd1f9819392a08b466d50a5ea480c463", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f53b4644463d676720c8ee3c9530a37d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cb8bd7b297514c0d375f89e91028d84", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfc88863573e1bc601951edc91388640", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7eae5e38586a4eefbf3b8e5abab048c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a919585d6bb143afcc511f71209aa480", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7936374c9c7019ac1612cc2875a86d8", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22dbd69c1ca979b6a2f0684cdc00a15f", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "220d4540c1b519a5c3d5c3c23b83208e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01ab55f1d667158322293f86b2c1aa54", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d5b03d60b669bd0d6663119c1ce7c0a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32247d5a16a44cfb10a0139f5d1b54f4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e636717025bd27aa2948c4787441a77", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d6fec55530dafcde944a8b93300f7da", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43f1e15b370831f532cd7cc55185df23", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ab19f19901ce06f9f29a7140245ebe3", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d895ed1b94689cac651ef88e604a150e", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2abd5679b19895e8a72b94d949f77baf", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd5ed8b6e814075571a032fe6dc48c2f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93121d31aa115bc6de00a121c2c25217", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83630fcc5d95e1429704dee1beddde22", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79f73f8581dba1a1d246396ca7dae032", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c58962944a1b353eb8ae6e381d05a8d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2e5c2c8f081ffa886f0dffdca49ffcb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ad4a8f02ccea34d085c10a5f4b71158", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5d052406132a076186a2f0e0b3e0afe", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34ff438f494d5df7f1437780178870dd", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f488b0ddc7a66679695cf30a6a21d889", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32a12641be02d872e6120d26532ef248", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f77b8c96a6a7265cc7fab32f124dc23e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 8.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57d3a63d904ef6d269a3c822b0cea2f5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a3a37eeda5ac4fff1f7f9345bc7dd69", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a867458460b47b5509bc8f3f96a2c6f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78e658ef309d9d9640a8ce1f7e1b7dc0", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a35ac6dd7120661978cc2ced3bf351f4", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23b8c50fe003a12465b5a69dd9b4a840", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "814aec309bde6c43db364b1835c74b90", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = Plate Lid Stack --> sample_plate_1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f98a09ff955e4f7c7c9f1174bb34f8c5", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "441849daeadd9fdecf8b75a9f2f51d82", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9649d98012a4912f9f6dfa021ff0f54", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5741fd6e47bd9c03ff5a13f3f8a4edba", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = sample_plate_1 --> lids[1]" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e9de5598f81ca8e9576e0ba7423b22f", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a050a9c3e9771dd80745d0cb83e3ff9", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2958beb284b681b8a8724e90efd632a8", - "notes": [], - "params": { - "message": "--> Aliquoting FSMM" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "402a4a6cbb01bcdc6958094af8b28628", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "223ac30cfa3f817ea5ae63882a5b9464", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_1 = SCP_Position --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c68692c0f39ddc368c400f78477e16a2", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover", - "stagingAreaSlotWithWasteChuteRightAdapterNoCover", - "wasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "529fcd8cf876943045a9e9cf0a48c55b", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_2 = D4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64e367f069bf5976690bcf1012346ca6", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6c7d198b3e7c4988976fccfe3430b8a", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78d024b75b1ac809e79486bea7c7ff85", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2958aa68b183a31ad52d98e18890f1ee", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "246c4adcc7db3131aac1e6f631abc61a", - "notes": [], - "params": { - "message": "--> Adding FSMM" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73e0d49a7fd5f32552e5a642461b98ab", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A1", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2a1aa79494c66e15bde1526d79e8a14", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "125607185134d5f69e63a0a2a08fc055", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "550b0e6e6298d6a929839c41d5a3331d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64e28140a3b610522f3f4985cb0246ac", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1559ec87c01a791fd59fe80e78453571", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2a1d05716f3f1d75c374cdc46db158b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34069efa5a179acecd4448e42ebc3667", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7836af1ab415366f95b9362f655757a", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d3ef769ca1158e5f7d02f56c1b6bc65", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c50cde9db30589de781780993726714f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ddd48901503f835a8b5191d03752a74", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21d6eee8397d26351140b800d86433b6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd93592201c0dc3a502a96d4b525aadc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edcbdd00a8171646b214cba7b3051523", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8db06c10c26d7bdb9bec95916cadfc4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89f37c24caf2e0edee2d8501d316a608", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce9327decce4a9087e38d7e108301fc6", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26ef89f8db6884fd5a34712cfeb338c8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ada2fe3ed39e69fa785180a086705a9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5611dc88a4c9daeff5ec61759d380cb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba7767c5e9b96c4015cb31a42b355709", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4c61ed9bc94184ea3c947fa2a73f921", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2796617e9f2a8af2d77e3650b122fb14", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fcaadc3db23b7c4e19b3ccbc75241bc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3675f25ff2665f491b244bdff9899be5", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ef76cd408220922ba3e6576e163a3b6", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bd18c3b91227f0ca11adbee6dee5332", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e82d7efef31d578ec6652a6bfaa75c70", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f85f402f715676c7f67c972463ccd98", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ff8536492cb41abc89c5e7ba9e26d6b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00105b6d955a9a77cfffed1b9633f87f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0af3328f7309ac3e97bcd242742c92be", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c041fc7e419984ec15a4dfc6601469dd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1849089038ec327e8a6904890bf39d02", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a03b7b3c14118f614978c8431a8560ad", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58703de6b465e97ebdfea28f4cc98900", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d66aea9f59da43193e58cb2ee8d53d7c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b12627ac1e643ca3d404bca67d6e6b96", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1915bde667fc5b831f53d4c82ae628fb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d81555c4f588aa73770b980f895fb8f2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afc431bef2f030d3593fe6551559b850", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d0554341cffab35fabd2c99a76d3d9c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f5ccaadb27ab9ad9d7f32eb6139b82e", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c7b1ff7c128fff470761c6ff12f0f17", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfa82e3d59b6f9eaac3c448b6ef62fb5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4abf14518f7697d61d04188e5aa8d81f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9b3835462c888c3701f3a91d07ae0ae", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efc5d5a9f392b9f989fbc5b65afb8820", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2979e44cbdb17ef8adb9f6bafdd9eb49", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "535bb9c061275c5b14965b8bbfedf620", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8847da8ab3ee6aca11f5953bb7c8e0a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6b42d688a6bfa60e0d77b91af499be1", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "951c2f3a3a76a0e69df15468bd8ceaf4", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39ab6c7b12130dfa48b020522d951788", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98125e7897905f8521f24fbdafe4c8d6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "540913767204dd052002ba6b62b3144f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "760a357f38bf479f4666d3da89efb9ff", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "741351b05665991147c488b7f249d6cb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea13436d6a11b5c1716674340eeb06f0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8993f0ac7757c82d92edaeca34724c90", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33c2cb7633fa57019d756c6f9774ae6e", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f886fc99fc54ebf267d8238593a61ba", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83fc8d9e3e026d402d554af2a3366d8b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b32bc771de7833505976ca2e602c9b2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "081dd0cba54ad498b5aa1c51c0413a84", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06a71ad48991b0e17d87fb2d4fbe92c4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49a3421b2f0ff8f242f6885a54187fb2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b74b6fd9f3ee3224ba80868e40b4b198", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "489384592451112cd819b6b1dc0409c1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6361c51f8b2431092123d5b968689485", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cf1e01173d983d35455a0687107d8c7", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e330e131ccd96902711cdcedb55bfa8a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4b234b87a5c91c627b8b665bc6dd8a2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "559a3ce6bc5a8b49061ffbab13ac95dd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5674c3963d49a09df958047cafcb19c2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fddb1bb93d2203a14a8c0b0a53caa30", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fccd79925ed9ecfc91f7bc432814343a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4e5e5e43c725ac98f03fec93e9e2c32", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92459023681812fc4a1b93e791f7e37c", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f48fbcf8445a37af219b7ed0a4c337c5", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b301a3b8273019f3c304587a5c402a0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70f9f938fcb9b40b8293277ef44e6762", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ec1f2a9e034dbfb6137acfc34aa8831", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "133c09a80666b51a3f5b52f837f04cb6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c88bb2bd343d16a01da7d59a65b2230", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a211ef2765a33d59a5ee4054fcf76a9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c35168299ecc2b6594777feb651cbf5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83d2b6a0d0797edc9bff3be2ee9f309c", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c595d5c07ea312540be381054587158", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0c469a029cf6bb232607a210dd56a09", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1312e94a855f24921b0023a3d52a5ffb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10c98652661590985f0fc4c19b6c11d7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cae1bbbbbfb7e31a9cc99c2f78b568e4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1068584a5dcb42c406dfaf9991ca851", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2376c4be71eeecaa8f4f97ac052f849a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4da8a620bd05c76a4f6ae673a994aced", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b44ea7acba122abbfe7f46e8ce2290df", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ff9a95cf7bfe1929ed7976dbff7b900", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f70e9128f630cda6f934b79b08bc65f2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b3e0e5c871358f62b4c88d66e12958b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df044dfac5b08725623c44cceef2d28c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43f3b263b2976d3098c6a7c295e9fdeb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 8.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 8.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4022d51b34b42243ac9088bfa4c8f215", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "642ae46475c3ee74a30819b59e46836c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db29d2f00a20ed45842e078c29b64999", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd06ddebe146d599da821e54690b3ff0", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d81e6b160e62cdf64bc452a8376005c", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33a56c7745f5ad3ab2c1bf6512880dbf", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcb0b62ed8b63627ad3dc8cbf670512e", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = lids[1] --> sample_plate_1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8e2bc80f759158a5d0f504c6c103dd2", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccde6bef737316cee143b18905486279", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcdf8f4ec52f56578aee7093a30bff9b", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb1c37c0a161faef157b09c318ecaf8a", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = sample_plate_1 --> lids[1]" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06971e14afeb60a3f9a7f614eff6dbd5", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fa8ecfd762439fbec61e068fb6cc92e", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91d50f22b3bc5224092e71bf65168d41", - "notes": [], - "params": { - "message": "--> Aliquoting SSMM" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "956fe4684130f4d8e0ca725c112b5439", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01b727ee6fb905b1885347d33b48162d", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_2 = SCP_Position --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3e0f609d0956d18801c097cc71b58dd", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ceb23daddd3a6d99a4b368c82ba4019", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_50_SCP_3 = #1--> D4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68864033f940c01174aea2756d1c546e", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc4f050a75a11ecd1833e9686620ed84", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb77dbaf47c7888e3afc428facc3d760", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_3 = D4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "874103fa15abc7fc1d9a440a16bcfc57", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98afa3be1c8749da716685ce4add2224", - "notes": [], - "params": { - "message": "--> Adding SSMM" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee46ef7e481910aa0b669debab874915", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A1", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "742c0cbcffceca59e429fb6d65159e7b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75827bee1295008aa8c403f45f60987e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 21.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "122db99478f66a89d7eb1b88fab63c57", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f40ba18e1fa51a8f26f3289837769c48", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd3f3a93ce2a8918711cca567c9418e1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "829495df7c1b2575432c594127313eab", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bfec2d718979f18fb54f0f091968a16", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9adb90922f5461e6e182cba6af151046", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5648fa6f915286735a5920a96e2f2e15", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3df7f2bd4c118aacadf1b8f8eb82223a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "926f4689bae1a148e92e1ff84555b1e8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 25.63, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "825656f369eefc569feb6143120fa17a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28a307fc96182380aa282d2717a1c50a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b39ae3a37c40ea109ecddaf3212b51e7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19eed2c8161e61c7a67fda7e17c73066", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a1014b6be99c5a7399ffc72897a8472", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86107faf5781f52beca726b1805cd788", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc47c063d85a0f592bbf09c9a0c138cd", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7619f68f01a60ead34675b510fd65e9d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32c4c8afe5621c9af38e93d981ce6e3f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 21.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25534d2aab38789a376440ff6467b88f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b933746d5577ed3cf582f2e7ceaafc7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e398af4b80ddf2fdf1434438e8e261d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84066680905d2ff6f1479fd590096698", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "834fcb62be49e9967d27d91d5d58b394", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a769a57937cdb1e38a2659d3cd1efc53", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd748e774234f3c06092973364c79abc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "542409e6b12a42966791f67721bdb4ba", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30b88d325aa589ef253872e90fd358f5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 25.63, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f13e6cf8969f0dae3c331161c9ffb770", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f06183845ecf73d6c9a70f3a5f3d13c9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f3fc144c4bb387a695c60b058b21d19", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5a8f89992b5fcd667aae2f2ad3f1f04", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dda27fa4a289128bcd20b9ff825206e1", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc8dc5577066c6f643291fdffd3e1943", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5729100ae461793967111f24c432b5e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e56a5e4d94b11905f1eecb46003240b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "624ac2e5132f54d1e33f14235409389a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 21.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e0d2986dbd61a64d0f13ad4ef791062", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcd68f7f8da5c9f1ce1d5175ae7cc8b5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af24de95861c5d77ae72bd99b8f35076", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc70deab059002a757bba56d292093df", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edc4dc3715ad5243ab582a97f242b11d", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9c1b07543328e12c167cb96f9ed39cc", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72ba8e75af88ba0ba4cdb14fb9753491", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba5c54b7fa83422d88353134723f1fb1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f920bb155f45267b8d03f574664d882d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 25.63, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95704b7d4e701b5f3809e014fbdf605c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5051a3280f884a529b7f6e9d66fc65a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45fa71c2e64bafe7d574269ba2cf8e10", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47b307b562c82bc686f2aa48792eceec", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adf80f5395f620277b08ed8e6d6d00d4", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "505308ab0092b48c30ff96ac55ffbd02", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "711b0a20ec4589bafc489d5622bb346e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e94a3e14333bbacbef19814b370a8cf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b018ac67fb9d3321ab55c663a097c6d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 21.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b9ec9e01a6e6c184e478c7e83634553", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a55ba66a0d45a63647357c202439b554", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3667055ab529bc84f45992a295060cd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea3b30b8df30363a7ecd284b758e206b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5322673fb8cb8644d0f2d48657e50984", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc3dc210481d05e0d65a41aef504d60a", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e99ae8339a3c83e1e45f435a5be9cd7b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b57f61e13476e20f50d0755fecd13eb2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd2e17386c49a7d442bf314c74b489a8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 25.63, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be6a9eda47d6038c7dbb189065491dc6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5828055353abf9c21bdcc459a5fe8d18", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6562cc9a748ba5abb7bba7f2d207895", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "073cf4f301f09ca747905520c227cdd2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94a1fa08a108ccb6e509868a03926ebd", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61a6e6f482ad718400bdfdb792084e7c", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "050f0e5512a225789f26859e4931fbd5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90f0fb821e5cb981b286f1ff27e0c374", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b2920b41f852629236b18e828f3a1a1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 21.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc19ac524f8f9110abaa6d3b22fc56bb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0290fe3a7e4af7d1de990f2a755df5e9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "539055fd3668c1acd0d8ca69fc7b84d6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf2bd0a0864eb0eedd4a9e35462557dd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ba8c966c1a90d1ba2011e33e3e5ccaa", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a67cf3c276385d5af6a9f7f5cd9e7669", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a9c8482f1b48f14060cfb51221345ac", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "599f7991c8376719ea7d2d1ddfd0db32", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20ac7d3f47fd5697aa5027f2e4a51ab6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 25.63, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "199028b837cd835fd6b22724e9144f44", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1767c277df699abe19bcbd6fd8150a7d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "550092ede03b04a872726f5c361fed12", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "004cb72829f454b6460aa7466e22aead", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e25d2023bf6b562f556d0eb666d23ee", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b7d13f0b80e26c3f64bed8ff348121b", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25e1ea81c4f817aa0f8beb7b410fa811", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b04263ed35fb8289d34e4ebea01b6c82", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f700f5ac076c04b3a947b13bc039f878", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 21.13, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73ffa44464bf59b786ae2065c2aa9640", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3553d8c601ef2ad1e6919abc35f0ba66", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6736444ccdb7599ab1916faf69e91ac6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2b5009dd25f9c00058179fcec8ca1dc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a37bcbcf5ce593e62b2937ff54006e6", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9f782d38a62201831e61cf3a6c4a820", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41258f7afe043de2aa49af86c5d0de0a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e439d924f610bf5e4493f37b8db9190", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff5f33f41e22ab31288a216734f8a448", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -6.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 25.63, - "y": 183.49, - "z": 13.049999999999999 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91f2d168a4a2f860d27b14dea958ce98", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "464f382ee71e4efb1329f1d1f08f0d2b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 4.310000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec67fc14b1dd04669bd52b8af297f984", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1574506c706894d28e76abce888e642c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -11.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 4.310000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6dd0feceee7e109872d89c0cdb59d9a", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 11.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d78fb30719edcf15dae272eeb5133c8", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af57c0b4100c5062d14f676c5eca3ff5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b3215e43cd16555126c961a10fc3ac3", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = lids[1] --> sample_plate_1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74b1693dc2d9f4ef1cc9b8d21a151d09", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dacf3198a8602d02e43ad82ebde71d3e", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bce91d2fff5cafcff94722f3c7a23fc", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "182b4b94cd6ea226569679eb2a21a6aa", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = sample_plate_1 --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5fed751232c64c34a6125ab974cea97", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f0ef9a69eb58856dfff92462a1d52ce", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bb8ce2b0a341b79172d886b6e4f313c", - "notes": [], - "params": { - "message": "--> Post RNA Cleanup" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a1d4a7f6a2b621300d17a2003d61a21", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5c8db429bb37ea7ba1a904b1eefa5ac", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_3 = SCP_Position --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f0ded6910631bce970126ec3156377a", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f77eeaea388f729ff5c795b2fef2943", - "notes": [], - "params": { - "message": "MOVING: CleanupPlate_1 = mag_block --> D4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e803c111719561ed84b4370c112c9344", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bf01dea12a7cfcf777a596d2ccfb47f", - "notes": [], - "params": { - "message": "--> ADDING AMPure (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae422f0b70fc51e5a0a402060e832d18", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0aa879dff87538433918b25c313ee1bd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a0d655b922b19f04129d3a948b96178", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 12.05 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52fd183b09b96987cecea77d00bf9a1d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 12.05 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b0feed544eecd09844700de8242d2d8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 12.05 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c63799d183ff1da4e8d7c9aa9583a41f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 12.05 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "425f6a069098cd4b450f5c46705e7065", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 12.05 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf18605aeecb448cc81e7c8ed82d0c82", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 12.05 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a013d157e8be625b3ae5810d91fe18ad", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 12.05 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e848b37239dd0592acf7185394f709cc", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 12.05 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e078a2a99ccaf1669accb1357b68650", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "910db0e4e8234fb28be59adc01ed69a5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9117827c3d6e431828fc12bcc04bd32f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a3c6ebc2a52d806ed5cff916ffd33db", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "267f3a186af9911126aeef1c56c8a0fe", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ab9a35587a5bdea2d7617b8283dc959", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89201267cc246b81b9e3d1800be80298", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc6f310a1b1606e4d361cc9fe82956b6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b193f6e80527fc8c7e3fcc84894390ec", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6458fffa4be463179fc416dd8eb63efc", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fddeb58a6e0eff5c9b180787a8a6d16f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ff2a1b5aedf22da5487a45a49ec26e7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d13cbd0b20e09f5f4fe9becf413b57c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29ecdb57fef7f255c3e8e97a14c6143e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbb0e4d903cbc0c580e068ea4e302177", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9631337fcdda5d0541683c82fbd304b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a52cac84c6f1ec3897fd56ca6b3f80c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "787532650895a2229c893a9010acb8b4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db4e0057266ddbe3d3b05e35eabe23e6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ef3947053de6fd2990592c9c290f4a6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5214569c6fbbcabd31c2ce37200faca", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "caa51dcb4f3c72186884109f92b31317", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 4.060000000000001 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2ae56775a84d87c1799c6f3beb6678d", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f23fad6fc42ab03cd17799fd0d3e774", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c56a70c9a4105865c205c515cd986af2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b37b4416271aeaffbaa028fe81dbb75f", - "notes": [], - "params": { - "message": "MOVING: sample_plate_1 = thermocycler --> mag_block" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc0dc0fc76d612930d5fe88626cbc2d9", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32337961964b619c39ed9decd2ee5462", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_1 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c05db4d8bb636a5b4c198a19f1e9f2fa", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0d415712b5a3d89eee781b1e9136a5c", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_2 = A4 --> tiprack_A3_adapter" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2536ca0e41776b178d9e66e84905ef6", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c317827898036b69893ed0e7122c51f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f4ee3e61a6ee3aebddbdd999b5f909d", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11fbf220642a1a9cf48bf6bd0bb05004", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31a3b8043dbb9681bcb82574560bc9f2", - "notes": [], - "params": { - "message": "--> Removing Supernatant 1A" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8f1b9b99c5aca0b89b2b810fa75fd94", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35403d637343af573e1cd98557c269e5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ff5312db72a4e95e6db28b8854dfff0", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 39.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "960ecbe4b61b0ec3dd783af7e0b24b37", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7d6b825a18c5e1ed73a11d753e74d3c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfe2371f3d399a61faae1db23c9a0f66", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 52.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8fc29533c27e562d422186e2cb2c604", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31485e694e71418d6f4ceb0d9271beee", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6200831270710b0ed1fd4317b3e708b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2178d1620ba3ee4f797b4a6133ca8621", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b842a662edd5162a8632e82c9f7a91d6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8dc28ac8c181ccefd28e921344162f95", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05ae10587decc50b526c1d50649bd10a", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_2 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4be0967ba668b66e62454576240b72b7", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ca288c0d88e6a237dbf428d8ad36467", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_X = B4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ccecdc6941fed9e41fc102b1f1ffc8d", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "958b685a0253fcfb0bbbc9b6b0e0f263", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0213646d0d867645736f713db8d574c0", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8caeb2b2bbdb60af15bd25376b785e2", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6672ce240617ffa919e8683e4d18876a", - "notes": [], - "params": { - "message": "--> ETOH Wash 1A" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90d44b9cd999e7dda478ea167acfe2d9", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a27269a683551152c3ad8418eb9fd05a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e663047cbcf692b74aafbd909627b4d4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bbb179711f1ac9b5433d133aec903da", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40d02832109c0257a323da0e0846519c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9352984b3ffbf3d17349a7e74ef437f5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8472cee031a8803a23b728b10033aa8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c450b483a462a3b3be573e895cba662f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "455cfa1e25677c878d440d2f1d22c034", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffc3778b93b5c12499c00546cb4674c3", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a83813513606c7833fadf5e4b07d08d7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4aaaf806b9ba03e21c1fbe2621fa5536", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c55c26ebf1cb1c4eec65b8020c7390c4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c3ed9d200d1086ba17d989452b6142c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8219d617931f5c83115da101e28a7377", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31a2d5d798f3c1a07641d1de16d374cf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9748336bfd1a5c72f25637ff15a29c93", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb8fb75dcf3c41f96cbcf946d8ce25be", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "459935ee0932a8716f3dcf88f9ed050e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c30b9755ce96bbf879e9d8e65ccadbac", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abc14446dfd9a268a9f16fdafc84b934", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f478c1b58cdf6c20f49bc3697bb6b6b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69bc9e2358ca4a7e5a454030332e7eb4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ed7d227850a2c7019188728ac5e155a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46824010df26fd206d3baab6ec8756ce", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ece1619ab14a6c43b14bfda59d2db39", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff428ff2d9e2a02b70730b366af8d6c4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e33e209b0aa7ad8284c67f7b598ac41", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d07039cff582ab7d30e268d1a80adf8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e63731976f7865e300b5b7ec6d6f924", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fa51627b8d67cdfccba70c1865c4e58", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6af91e2d057dcf25ca9904dd7d7f58b", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c402ce7356adf815bb32c3c7dab2102", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10d60dafd5982e09a848ada0d15b4bdb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a978abcaffd22ae90de278e9bf7d189", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6503fbd484babb6186f7a715c856e37", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd6506239a94e8ec010c80e2f3f706a5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b825cf0e338299ba480c53185704eae", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02deb42fd00610db46e82d922e5644ab", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f25a8d01941004c4f4282785eabbc7e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15373b9a32d4b8b4bf8dcb2bcd6fcc57", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "530118d939baf91064a821a876a629e6", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "207ac0643466080a6bd3bd7ee074e8fd", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97de52d6d06934180a50691dceff57f8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58e967bb588fa7842ed7ac54abd8acdf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb1013a14905b746a9af7902d18fd386", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b276475637c769b1c2299102ecd99997", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e58358d95754d1ed5745053596e5ddc4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1502242bc45c1043967b9123ba0aebe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90a7b2e0c32ace75701923f7148104d7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "151009b8086d0437fc3975a58bc4e7fa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "605be92ba5c9b95ef9cd9556cfad7882", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ca86e177c3cdf18220344f4a922c577", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "374e2e13b09978c445ca4183e0fc1c9d", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f1be77016a652d45d0a92ec122a142f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5673fdbc5168a178fae98e36255b9d46", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7297af05452938b4c8f878538c6a373", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bb654419f20926135cf3cd17dcb512c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c41c74e95ad497e31250bca94806483f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e2272faa4d8fe8fb1468b26084232dc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90cad7da77f9d4d21e872149ec69eeb3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41201903d8f406108f5bab609b1e0b76", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "818ca5ad162420f8e8cfe04fdb19e765", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1632f6e958a19e584f7979889ad1a4ec", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4100c62070ca2f1d49eec8b8829d8a5", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "839f13243c86753eec2944cad7118594", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "075e31a147adc8912477b864f943c96c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52bf23543ed4f5e61d7758d57d6172e9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de397289fd88893c90741136da698e21", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "502151553ebe9d43ecff9a7a914a1443", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e38db92a8cbe407459ab12913e113a25", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20ef91566927bd023503ccb03dfe0c45", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78c51d73f23268446d8ab9811334f8de", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7648518b2946aafb0ab287692d735efe", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87aa489d5ce0c9702393ec032c020ca1", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f43b3252d4b3dcbcc513fe22aa89d397", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e0048bcf81acf757027bfe4638f4ebb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b40acd27f654884d05b70dfe56f65343", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95d07649d7ab175f6db2938812fc2c3f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da6d93cd16573d48bfb7f94eb9163c3f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8154bb2f0ddaa16efa03fed7dc2becb1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "890bcf934c31d746485594b9d0110802", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "529a4fb5ed653dc553f69caffb6fa8b2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e885ebf0341b44b0020abcf69e7aee67", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb6075c3c5b787c3d138d5ed84e4be9e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f82b4d935ac83c264542cb02b64916d7", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f6964a576b5b6b72d0a50fee4fd6d68", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3714c02a02f913c1e9e013d57071beb9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfd60dd262018302372d6eaf24a255c2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c6257e11854b36f3287cd4152f3ea75", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a563882f865b422277ef717ac3123734", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1e605159db54b0f5874c0e78f572f2e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1033c8df279a8478055f58c3eae8d72d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "591211997febfcc6bd29b96639b331ef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e688ff14b305d9bfd23053c9168c318", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76fee5975c75e4f3976bb4c5b4351554", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f4b3433961885ffd7d74d91b75250b1", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2adb82a5b5e5afd142e1f4da5fe444d3", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e47593a60cc0d4de73eb543e95abce3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0eaa88dd93a1c5ecc540957307defd71", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86a10978dff4d739c341797aea2a7db9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8e37b6c105867774a4474a6fb91da47", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcca03dc1ea924ca67ff752103d3ee4c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d484ea43a0a56004caae5a490265465", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e289b5d1ca15e3e8ed2b8ad4f389f26", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c94bff6468202cd92140a35e86cb457", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9539778c03cbf4f603e05c5e8fd3e282", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a64fa0fc5aa9b0c0d53c462e4374ee35", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b6a8b03be0198410e6c736d2590ea14", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "583c169d7abfcbb44c8ff8ab977d87c0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff3e4646deb1d8f889ecc7dd91a46636", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6316604d1c2a979b7d2dc492e29eb9b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e7b53502e777f88c34f292d5e39e781", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64b003412b92d441254270402343e2b4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "472a74df357c22a5eaf05550480351d8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82e6e97a1298fab96d9045b3e5938175", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b41175702d8460dbbc76c21bc0b4a8c7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce44a1ba6b1915a249ad69e52e0c138e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c90f8f36229d0f994f51d25f143fba38", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d68eb283715dbce366245540a8826a21", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f32c94074aa0af8231708b183018daaf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc25081762005a998744ecc46c975051", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "965f0650ebe9c5464698d56246dc9886", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a9b936995427e20a82023a22e9f7c1e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cfeb6aed49d02b2bf4a45fb12709d2f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70a865f58b8b457af972bef18c07f07d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c13d81576dc6598bf00f9feefa676045", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24ea5ba69a616b41079e1ef818d7724a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fe9d36a1792aa488bb054017819d83b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98e365db8285605c3cb9d696978961eb", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d811aa8c1fd82ddcd0c14f58f087a77", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3cf9b6daac53807311efc8ff531e9d0a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a98d3594b21ea319b8c61aa257df31cb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59adf38e01a3842b6824980f48185bc3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d7467fca082b5c495dd851094e92d80", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8030ee9370d0374f342e86ef0396ef80", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5c6a290b622acfcfacb6c636e2e471b", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_200_3 = #2--> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54045d7039f38170ab06c1d8078832c9", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_3 = A4 --> tiprack_A3_adapter" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "093fc661e5860a014a642714c4f24555", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aab38779f2acc0573da83b1b04b9afbd", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6ae164149eb45304d7784f64ddec0c6", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3701c9b265b8bc6a8d30924cd107e008", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23c30038e5c42d833f265c9fdaa74d51", - "notes": [], - "params": { - "message": "--> Removing Supernatant 1B" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b650810c8e8e9249cd148d981992d63f", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eef172c8759a3a2100c7fee4c5d2efe9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f72336b391132e65e3c52770bf3aa6d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 39.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee5ddfd56d7d559b2b4b6720f1bb2e1a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e84c05cd3d6de07a324ec55afc5da6c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa968ba3e801dddba0f6265cda229c34", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 52.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5c7c4f8beaa792dc1be097177fe05ef", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb6078aa5fac4afd9afa9c631b9ab1eb", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf4aa746df6f12f63e1d96622798e4bd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "691a1813a79797508374fa14c255118f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edb7d8d978ad4ef18889abd8f371e7ea", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "451ee5609d02946410672fd8390edff8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d1ba704280fbcd3b9e3e79f24e34f57", - "notes": [], - "params": { - "message": "--> ETOH Wash 1B" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27650fcfc8c670a0e345a8a5363c9d52", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e8a8ff0719fe883c877e64965f665f2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74c0419f9cccfab2919ef96b78d015b8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b6d656222d73a00f9bf9c0a61592598", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b49b783ff7560ac69a3b43c0f80a78ad", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f805602208f327f77c0fdde4a8e86afb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "046dd90c3402dbbbf6406d21bdacb521", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e742667542051786331d8d311073198e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf7ec23f02806a8019548229ce673a20", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3aab91cceac4e6ed6ba64a8e29a1955", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3ed9c5df42177699d15726e8466ba47", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a65a8b5513fa0fc5adf4485bc373f80", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39290f172009b35402b87d7336c42c14", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51e855303c0026e169f2ae0739cd667d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cef66f8ca042d70a0ec5cf5af49777a0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a385fda490f3a9c9289de009c297f27c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7743b22afa83c84298ea60c618b4633d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ae9fb1e65503d510035a0a58de6fa12", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6eb70e1b2d385064fda0fc587f5c35b3", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4cdbc8b186f49ff6f4688fc7db6e46f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab6b1b525e5dbb66a4bb93fcf2a8bf07", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57addee9c5e6a311c070219137cb4f88", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f9344eeb2a4239826cc44377741d7d3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81cc46dba5d5581cf48cdb8a0a333c44", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b871ed491daef94cc146891f5e726d5", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a23f78de2cbc2bdfa5e462f64e497a1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "139ff8a817b5c0829de23d43defc9513", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2533c87113ec8521bf95cf210cdbfc96", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6710fdc9d21b46ffbe2932697e01c8d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a683ef8308003f908e5e0f51cb783f8d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "416ca91e79ac17aa6ff416a12fb30a2e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d0fbfb3e66e4003f3bd9652268fa345", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3571b0273116bc1f23f3779093d4fd92", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4613d121b59f66ebaf95a4f16c9c83f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f9c51b64a49fd5a3c37d4197d75fe65", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3e23bce555c4e8803307df73d9cf4fb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2430924a6dada7a9fa74a1f4cc34ca40", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bcb317483d983261a0160688df728a4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ac56f57690f1315aea5388c3de61699", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "311f1a5aa3712b36f9877000535bd11b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d5926568c1a2c589d02f8f4c95176ef", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56359bb487c8f3068f438800d41eeca6", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da2a319a3095931ed3c67b6ac2c05bf2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55098f7d0e8056b0ae19e5eec60ae7a3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "064284670e1a3f6c1cb5b4584d2beb5a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d018ea3c7d57879e1e9c9b7c623d0af", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4871a9be3a0ff3fd7ff37969f38da2cf", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d70a52e39e806ffd77f74975a233b881", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b78ea99f541c2a7afbb22492b32a6d5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "995460732d08fcaf8f5d51641099ba20", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33d83386ab5718ef314309003dec15cb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2503e115a8120893f346a3fa6e0c833d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ac9828a60084253e34395f1fbb49549", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f149158ee222a2fc3d38956b9f659bf", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50a6c7cd6fd3b1425b4c5abe37da60a3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd1bfb12e67acbc62ef98d647fed97bd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9df402a2f30d07e94c53881bd79a9b94", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c5194191a522ebf8d4d96d65fd97f38", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "196e8b6cbe95aab55ebc201595e752e8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "327924053d5cfa86495c3e9dc0ddce19", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75cc4472b7aa2595f63df3aaa5a58bed", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc3ef4c0aae9945ee7c4141d4e254edb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8711f86444cf8603b6e3fb27245e78bf", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22ed0492f147ba569ae92f37c6176151", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "287bdf2668d111c2ff1e2e10bb448d2a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6cc3937c15ed26da074d19e51f76dfc0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a31c38f1fcaffed936ef169793ab515", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbd40bbcb596ecfbe5cea8e5a31a4904", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "650fa6dc7573ac5230fca8f13d16c730", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fcb40d9533739b10b3c7be264f27425", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5f51196246c5d8ca723bf89e0a15637", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f01c0f1e75217ce549f316b56d92124e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de0c10f6716fd8c16a7f4c2f9750d551", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00aa9c26928f357ad3bbdae2f9721fdb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "123582a32775618e317388fc0d64d7de", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e09eafe6c7e11aa00a6037a4ba033a04", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8f302b7175a129d7177e101ca6fab1d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f54ab715e8b67f8c8d30af35f99c7097", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f5d0bcd6134654c5b702edde8b21ab9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "030a2029ebe93de150c6ab59a31094a8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f8a526b5249ab61835b4a4ff6a5cda5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b59bf211e4b5aaa409d6dcd327186e7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d2b9b46a686a4fb9f83e8cbe63d4393", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "831c8db04abe81a78e428b490b92f2d8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9a6b91ba3d68b1cb7ba8413c756a81d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcadf9c4c1e810110b098b5e707457a0", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b47e1a5f3df097bcbf156cc6bf438c4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b56ce2cddb64f3b65ca85bf927c72809", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a56b17e479b58d4c92c593ee2dad2d3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4777704d5e988b3a1c352ed57d4897f7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15cf740814dac5c06fdb31188d48331c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbbe9165c31fe3c36d48639e232c8ebb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1edba34580ed7ded615bee0e755dfce2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95fe9c6006d8987e8cd01fecac88847d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11169200739a429b1c2311db5d848460", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acc1c2338f010dfa3a4e687c21a40010", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "358d18c7becd0470b94621f79c66b89e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bb97bee6a7c1a17249268c0cc18984c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bce9e27d5f5a35e6d1a3462b5e0011f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32b610f359b540f7ee6db4e91a4eec51", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5597d6e7251922da8bae190415ab0184", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4c55e60adf3f622b8952a219480bb63", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1ebf7205de3863d62566dce552d1c1b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf81ae6404dcdeb50d17a35715bfc3e6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1eac0adef07ba182180d88eafeec8cad", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "064e9e2607e18b012c59d062d03af769", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f236534f353f0b48f47abba4e0aff3b7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "590f0ad071183fe472502835d9547383", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d788f9641bb1a65f632e4388241c3a80", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd819f40d8079e33e5ace90807173413", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf5de9ac83bd1535b3ed219edc7cc8a2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ec817498eb366a104dea26acd3a9ded", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db7fe06974d0e2b9745375a95d9245d0", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5c5a51efe57a7083e3124e5611466fd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62c1ed10d101b3b61e9db69f3de22436", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d1a5c44db13c06f08954487c71b3aa8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "714a9a0ead684eff525fa2d661e7c49d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16615ebacf86128927198c3142c6e266", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a5090d55e8f79aeee7d4d6f2290efa8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2915c44bc9e1ec53c7c7f7349610afa", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cce8629a0003fd3c7b14040a6f7d529", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0b4659ea265422864f4d7ca018dc8a9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99e1a6b8b62fc3caf63612c4f43a22fa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f65460ae59135c330e37167888f7d09", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -35.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 6.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a09f0c42c49e20383e58e90def04f884", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24f91d9e73b207e0947ee567afb81405", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "180ebb11b721457fc687da4fd3dd0909", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a33731e4fac93a0a3ffc410c1a37caca", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f9175ea8ca61310c82a89f78c2888c9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0466da0ef020cb80f7c300ce089eb2b3", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd8133ef502b099b2d4c03e6a86d7c13", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cf44d90fea5cf7fc32403dd2f6510cf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc1b3b3f44fc789837c1d74b79038754", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 50.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a61c301537e43a9b5db67046687988f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 55.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b76007918a1ed4269aa5c4e8747ea188", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43115ecb7b89051ace9b139095262c9d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "522bc5f1e2adff917e88722e9f702c83", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_3 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d48cc57e1b6bf0b9a0b24bff03882216", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecd5e5160b9bb647b478cbf7d28c7402", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_200_4 = #3--> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e2827eb4ae97941a637263e9f35b7d2", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3895cd906cefd42de4f2835a030f962", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eddd51e95a6e73de005688795eec9b08", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_4 = A4 --> tiprack_A3_adapter" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c9a5a9cb1bd2b6f1717eefc6ec18ed8", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0139ce7e8a010b7b5a08342d94d9c166", - "notes": [], - "params": { - "message": "--> Removing Supernatant 1C" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d68a32918a25c2f07cfd69c4333a05a3", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af7485abb6994acc6719df5019aa1efe", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "918e9348cc877e11d5e589cb870d6afd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 39.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d2ed079ea96ce48ad73443d14ae8a48", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "803bc85e9a3f161ab552ea165793931e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4f550a61fce4a1999c73110c8f194e2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 52.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0af44ceb064b3016377017776739d5f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b7b784505ce49ce9f4bc03a3a758706", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6c511534de8aea5609c7e01a1af9c15", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2640db19fa4d5f676bad47dcf6789e23", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b07cd49084d569bb5ff2c82ad53cea4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "035559fd2b0153155a22d591721bfff8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d799f95f9bf5a9629afdc6fb8be94573", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_4 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "771ee9a1883a88738c4994b7b4e05f4d", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11e0d7119b62ac92dd892b7afc0b6090", - "notes": [], - "params": { - "message": "MOVING: CleanupPlate_1 = D4 --> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d86bb88d7907fcde2bd6e177b1db16e", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "454770fb5e9f8d0fcf3b94f97cc63790", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_X = SCP_Position --> B4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c73a246c4fc0137b958f1cdb76ed8ea1", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45171f7ceef9453bafb0d4de578105c3", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_50_SCP_4 = #3--> D4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b42dbd8a60a1373d7b7fe8c8cd986fc5", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f263c6c07f0a9442089a99adfcd58785", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b87af3ffbc97926475af3bd6c26183ed", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_4 = D4 --> tiprack_A3_adapter" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47ad88310a4900a97de01a38bddbc497", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb73c675f1c88a2dfb37c70fd9e09b36", - "notes": [], - "params": { - "message": "--> Adding RSB" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b316d85da7b1e339d46acae5b8f3d5ca", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f54bbebae1f6ed063551468c2da614d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c209c350dfc6eafa3576e0126df456a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 34.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dea71f5ca4fbcef96eb257df9223232", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd07ba3216db74c3c6557b1b8ec5dabe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ef5f1817d32784b7e6b67f4abb4ecb2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad45924a38af2215c9c885ba67de626f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8359010da2a08abb0531418ca220400a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6627daf1615e7b02374d09fdf8d1884f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1fb9f03bef36264d5109639770f9a0d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21c38355c26f4b0849096f17197898ae", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b033066e7e836df3e78257477608a657", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c6db4391ceb8e4744f38dabacb28bb7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cecb774714ec06e671cb1038493bf34", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f272663d354f0b4d65942ff03b4aa7b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc86c9382e565af92f912eee1684e34a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3fa2a1c6eeb10ae5f502ad7d1b86868", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f9ffd0f6afac36ea11b75cd17e42bf0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3dbe8e26df97c748f126c00bb1db45ab", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48b142f76ea133ae54690e928b72f718", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81d8f22da9ea8312315a191aeedd604d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f980f0bba655d83e8e390db98b03f1cb", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40fa7f8b90fde378bb7a0d95fe69f853", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69d430ba3947b01f34dfc73faf7de2c7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "456e16f06e7810cf7a43f1cf27bbed72", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0de8127d65cb109666d52557062822e9", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33fe722afcc0a420e205967245aaf55d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8c57b9d890073409f3296e5f616a640", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26338effb526b59d0911e6e54849bf34", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 39.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "613ed423a018fdceddf76600b5daeca2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e321a3924392d946ec6f0b8eaec66da5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "593845431d7b3de2177e8a9b5322caee", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9daf8d621a1a524bd710c7338cf45bac", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af1b9ffc969635acc574858fdc4cf343", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "845a53c4ea1d1dd044116e2ea2ecae36", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79bda82cb3e6ceb724d20df021157140", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00aeef43fb64d5561fbc65fa15033ec0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44b107f9ee9d6d155f2f3ac40e7558c2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6695990f5b7a222c5a8872733b50fee6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61422adb669a9481a7d6900e1acb28d0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "444d9c58aa9ea32742d6550a87543872", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "198609c925acd5fb8d76a5ede58ae3f3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a32cdb1f0db9cbedfde4ec8afffc5340", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8342c586b1149a72efce0941a02b62c4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd6109a3e075f4644d5eb9c8b2bbf3df", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c18c05b66df348998311a59a21dc9f72", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ccc6f4737544b646c8e94b76509d398", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed69dd1bac5bc432856685a99f81901d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b57f273107d259ddb96c5cf4ebd29ea6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f8e171421ea56edbc4002d3cb8498ca", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3702f6a2235273a86d306d33527e802a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59dab80e60e7747ef2f078d56eab0294", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e92921b4db2e82cc74824faa879eeef1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d83e16ee75c03f433ba49a3a5a2c9c6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7410f45b2a7eef7a84962c2f96511ae", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 43.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "581a2d9b48a1785040737a2475d04416", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7dcffafa5185429d73c8d4514e40458", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "facce7114e3ecacc24944de066fafbca", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7ae33eb110eab12ca7a1f76e37ece9a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7e444ad8d74b21b710f76eb043bf2a8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18001e5355feb2b091302d63463675dc", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2a0abc0d2934862805fbafd1f8b1af4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34cee1a9d92cd6e8467503f09a9fd909", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8527408eab93bbc7c5f9608f10bd155c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ed2fa95085ae844c52aa765f99bba6f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c3d843c6e62f3acc60277841f979fda", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "603555a716677362a1f68a0e354cacac", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d13fce8aa7441b4e517585ec56209f5b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a868294f2a6cb4309fbcbd7387d63f88", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "726fc584ac86868767f872c648f32f25", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d30b6b159831bc6361b9a0fe8da74ea5", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51b39ac9a7ca4fa27276c29c4babce10", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "656f37a6bef1534cd39ea8193aa2e011", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79967f8a84bfe1b7d0b9d5018ab7fcf4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4deb0cd209ce4c6cc2bc52b22cc1d6dc", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbf30cde7ab809bd5fd91817c8d59ec0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a59385ef9d7cab7c98bc38bc18b295a1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a142d8be07e354c5ceaedebf67d0db2", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47965a498781c4bb3587c0ad20d1135d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ec0a5dc886c9f2ee7cb2da31377a54b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a978456f6ed1a22931769435ea964d77", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 34.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5eadab4e74b23fbc8fa10ed1029b3ff", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14ecaeff07e3b157f071aab19e59ea4a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "248ff5bd89ef85c1e1104f222af821ac", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24ed6123b88672a3ef5c171b86ce9b38", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c9133c0d6163a19a018c27d12d73040", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a88f5fac25c85cd49816c69c2be16b0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff67f9b6799915cd3383b7125f3d5756", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e350621e0dcb0d1e288db52d4e97c343", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56fe087925c1c4437de4f9d6ef3d6ac3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c01750fd9d0e95fe1e6f6f522723e68b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e323b76161aa4ec8b932dcf669307bc", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98c53d0690d9bb850ac5d59972ebf966", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c75376a13fbfe62be1e5fdf37ab366c4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f1f4199252e99ae4a635abb23960b7f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73cd5d5c719f6228b92a44bc5cb77382", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8666c6717d2ce467a9e89d1de24022f0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a2090eb526dbd6f57769f5b39322b01", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "398296513cb7e04256d1e338e8b90a1a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f541f11f0f07b256600f3c561351e6d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ea23df9dbdfde14d3d2c857de3e61f2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "532f1bce4029dec802f8f6314411a918", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94586db93a0b9719675dab9ff4dad4b1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1522aed6271fc1ba57b7273d8f86c7ac", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42e165849260e1499759fe1a7b83c5b8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b53956e75746a2f1b37501b93c0aefe8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f151f409a041cd9cb852cd7cc199ae12", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 39.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de5160a5ffe6694a714d4a1b7638c64e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8bc9d4a6c648fe04fc45c20034a35cf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b44e2c8c8a6d571135fa98cf2e34dc52", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "362eca495024e50e70a966482bd1b9b3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c908b047e8a00a5a247f46b41e2e2cc", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "632a909f222d3b2329ee118a9e24e99a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49a263381397e7826adb23826e6c36aa", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "316b4dfc69f41eab6fbb26b50f9bc81f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d81a6ecfffb879a4fc67997bac437f4a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65fb110d8b3eae218ab16a68364b7bb2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a66643c8affaadd3013bab9b96a1a8c5", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ff0394174eb378ff06ebc9656e39dd9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63ec22482ab23be2c7bf3832705cfea7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b636cbdd16168f24cfc402c6ef074dd0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4e9776e9a2f62d6a3f18e4d054f2687", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a567f6fd35e6a0089248eb82bbebae43", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de1270aeec579f0c58b80636508f6f11", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c02b7b485a821ec710457cfc6b797bf", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c796e3e5cf64f83aca26ea53a6a16b28", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e951a7e4585f61309406349dc82b3b30", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dea46c0d0f0c723dda1b3d0ac5e56cd6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcb40e34d38c60351ef354489964cab2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f44998ec9a1d248777f5b01cf3e5d51c", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7e6c748495301c1b301f98c20749b49", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1124cf883f45cac095fa6b68e2c096ca", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b0a563a61205f5736dee604c91cd2ce", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 43.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f54b6626ed2453fb3908827f3da1cf4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe5d355a9b4a44bcfc7ac81c8b62659f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "183b8338f5b1b4323ac769775f6a52c8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88132574730f54757ca781c719bc301f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9c81e0c27565efde7370193b4b074bb", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c726abaf48845f7ba62dc301f7e8a36d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62ee83daa2389b6819afc70b7f6f9948", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ef0caeaaca4c88e48b1716e47eb8d6e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c62afd9a57752933762cccec62d41eb", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9683ccb176f517be892dcab1daff8a7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "893d7fb43dc33c29333b67474a86d9ad", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0755da61e5cd445a1c439d02d7cce80", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7d544809b21ee02b5f5dc0308ce1c5a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb43872862cab75393eba00576967e43", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15e007d7c0da949f10cce37ac357f7ac", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f60b239c721eef0e313d921e186cb21c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b0ed1d08c29a04bbf494fd6097a04de", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "818ee045d568d06f4763d782d66d28aa", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec611d79dfe800e2c93f673c5fb9010c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "077b4e4272ae9dc20cfa1cb79076e2cf", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7195d62b0d24b3e3138317110447bf3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c554896e27692d1070b08773135df441", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39811c4c01176f372defce89260c9a16", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95b1a0d4b99657910d19539f015cf253", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be91e6ab8f5b778c8c0e6b8d8e38d13d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "684147ff230ba0558901a574dc7b1f84", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 34.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8840d5ea77fecdb8e6f83522f442ee8b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f68965df6d8baf009f7cf15b14d5c30f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69def1b00b55606242c63876a7f28fc5", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4aecd0d342532202c6d62239e67e2518", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c74261804b77d7ec1335db931e43a3e6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db7ac9f61f5447862722c61a71bd49c1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26f9864c0ec29fc1d659656fafbe358a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30b8c7b21b286455e043baa5149a44cd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de3680c2114daf489026e3396245a0d1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89f489c5b783681129eacb3cdd87b197", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82c58160663017cac907cb437e1a9144", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18ccd1b0453a8de762ddd8b9c1334870", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e226c0940fb135702870f3c540948ab", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d6c7435bdff67ecc004eb302e66b38f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "718ea862df338414aac3999f4ab609ad", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6b15a932c080c82ee034753df348e10", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21e12fdd9303e5affb4df388f70eef2a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "141e78a4027fafc686bf9ab70dca27ae", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44d3b82e4bfbe6315cb0c46e308c84c0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03a566046fbed1562d8d191a4181b174", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01c6b1312ae1075850091cc6b7a54db8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84db00973247f8d0b5080a908eaf4cc1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ebfbe0f66a8767229afb9f95d0ca26a", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "604042003752c41c49d49cc2aaf13d4c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8021a63ea584c9d2e0576a373071a2ce", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8c49e7f851928cff92367e14f1de844", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 39.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ce9d014cfc67d416ac7a20db4e9b2f6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c0cede01376f953b2ed1f020cf03ea3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eeaf664b74d9bc65def161038f94ab6d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b87df6d10f068e22ed2d666d0cb2faf", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62cfd45726a66aa61e97fda994cb5cc3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fad0092de6fffb9e9bfcaee2c51f9d46", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40da3fca8bd1a106377c360ed91f1f78", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb91cbbb9e738f653c2c4a4d9d15b416", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9be6d41c507192df33e05a1c5280f455", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5da88da4c49f723dfb7dc2df93cbeab7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "937a43b35c50b51f333aa7f2fdaac968", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0066b1a23990a989570de6f55023199", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e590eaa47e2a2f01c9e6357fa4ba36f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b564d648b01b16ffaeddcead169115f3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86c5b17cfc3e87b6fb7c47568fd83338", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b802fd27198f18dcd696914ac08e1790", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa8443c4f9f7f813f38eb689daa97320", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53d4537c22d89f2cead8df7ee189d3cc", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b03c64dbe800fa2cba4276413b9b54f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbb691c95480ffe58bc24e30438001e7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bde20e18fb8c99cf931c5a38073fd58", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36dc7f2daa950aff06bbac9f870c2169", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3517a00b11915dfe8ed316cc652d7fb", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "857a932cbf00be14c50c2640146f6680", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5077ef3e00a3fd45114fc820849bd058", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a93879bdcaea7c207c2da2b3b394c5e5", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 43.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f80d903c4c609a30b8e4d608675bc12", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "923f334e1a789dd0afe261bd5d0a37d8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ae9da4cfc7401542944c99e51402164", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "922b6ff250f4e0a3d0ede44cd461c372", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e33a141af3fbfff4ce27a9754f39ba41", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d79ee8c9525dc18e7c31e49f8f66d0d7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0f6088fc6cf4f645e078da045727b6d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03c475ce09b88e28cd90e4977458a896", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fcd2ac844317d6f7d16831c699c8868", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f108e696c4f8862894007972c6bc7626", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d76154203969ae5c8963578d08c181b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e6fce3a4a597b7d6dc45ecc8b46a8f4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8866f26d055a05923f03a962ee180250", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dad2a534a41b6958b86c8b44eafc5e7a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85af36e3b336452c4c8ff274b7db999e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a70b119a14fd8957efcb56e6df474d84", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0c925c1f9f9340770c00686c753e850", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f39f66aa21ee103921078d38d1f9d7e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d48ec92faaba9b3b838db82141b8764", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3045f26debc738ed971619f83a40460a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2658364070f173cab2d39cf7861aa834", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d739404529cfd7bf169c68fbeb64fe7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04f8611e67dca2aed8a975ad3fef2159", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d27b8536ecc99591405397ab6596a17", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19a1acf6af88041d940460f947a0ccb4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f8bae9edad3b9fc63657f12510f560b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 34.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4abf27511670971b758551d40a2c8349", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3ba812c64a52592ae4255b6bb38e98b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e90242835826a20a7060135e66f2b4c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f03fc0de6c8cbdcce71022caec37ff88", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bff1c7a662e137174eb4b56ac0fcd97c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdc22dd2f44ef6df50ecb54a84d5c043", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97b4d169d426ff6d81d434e8e8c86b30", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26e5e408ffc173c28f78f10b22fd6acc", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1846e5424d2fa7d48d4300d02937cf8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e01cfc180cf376c3f782a3fc42b71f0a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94d3c51e4b12a01c6dbdfad85d66eb76", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ada5a99d6ca520e14b82a24aafe4909", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4aa61b53e0c6a61bf7ef99da9c9effc", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69d254e9940c460b2660a251392f2962", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d11e20ea7ae2c0919f7d12a6cd64599b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eda30098d83383bf5954fb9802f1697e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3439f3d6361ae44795afde2f5506a1f0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7b234b375a357a785ab5dffa05ffcf6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b30f7ca87f28ec85e6811263dd46d1e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75048f1916e7ffab02a05818a0453cf6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "523428166216edfb6cdc3108ed57cafe", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc4cdefc91488b9614be4e0d4d55f4a0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a650b4d07c80d655e9c5d67b50e32dc8", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcdadd8dbbfb5593ceae9117c8bbb64c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31f355f7bb75764dcc73e1af4344236e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6451a44792f15a9f3ad046f54cf40a54", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 39.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2812e08f56a92de21b7656f98b1e3e6a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c72c572819d82acc7c8023a1feb7e07e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ad9addbbc7bd82056c898a337db4e2a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f89ceef91ff422d621b0723aceba410", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c6c1718ca4f488019e9bbc324efa411", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97792e36a4e14b207f4fe963c75f978f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "288526d3bc74d7601a134a9834ec7a1e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bfc287800c2b43173df27595c523ad8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4e1b723a5f1cad38e40e47d4996659e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0dcc2f01c5a91a264f05e4f976f1f7dd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6823908dd39819bdd9263d0d2549b68", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab0dbe0ed3bc090818a547a1eaa1f028", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c86f35f5d7f018636b26b3b408e0a386", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "909e771fdb32a652657f59f4ced94cec", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14934306adf76db1a1d57cbc754972b3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43cb3ca342a94a57b6392fd996105023", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c29b002e18636d3210c1c0c546fcb9f7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33b8bc7b6f0be1ba7b4492be6765438d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83a80210a1d8123a7e93f86a72973752", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbe07964c1f8ce01f2da7fde72bf4f65", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7ee113e53713146a36c59858bf81784", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "902371deb2ec351a35ff170fc6671c07", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a03b236bd6fef045153fb344e4dbf1f3", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86696ce7c9c3f7500395de6e5d4b82f5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3bab9ead5da5de320251c22219a9541", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c32e395d920b9c5e49dce650f7287b6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 43.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f4fdeab5c4abd325cfa9f1561a46442", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f6f2f38d574c0058841c57b083dc69e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32b69804d8d028e08ef3bd75a1297c91", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57163c796b619d1cf1a792e07ef9e070", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72510496c72cd7b43a5daf1ffe3eed66", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c8a69ab06f7a595909b404badb6cc77", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0235ac4d08643db83f1e94c99760d1f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea0aa8e1da24e67be45f5a7840e4eeb8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70dd2e051d89931336c6c595661d277b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c08f4c281b1cb2f750537f1c145350fa", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5d45dfc6732e27b0d343ef2be11aef8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f81d853cc48044e0c250d3ea1993006", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f58bbcfc4fad3dd68e97bbea98eb794", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf1ae64cb7508cd09c75722224eac9a8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d1cc84158cef0ecf06099086f4088ed", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e68798ee7cd50b9a590ae8e5b9dac0b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a40494280f07d0d97635f1e6273a79c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbd06342f8af217432415a531f2a1de9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a799cc7be370eeae286ee3e664498a40", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8306deaafb50742c9dba2ba249e6311f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7322cdf13a415d73e8f357f3ed1257d6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4606e9264daf2535c87da3581d6ece24", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 38.260000000000005 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4585600c2f1e20ea8cc32f5a9a80bd80", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e567f571895ce00a4aaa7868224d0cd3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6811bc895fb09f10e97c261eb486b041", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_4 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4d4378b3cf5e4985ed3f220662d1b20", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0383425f7ec659e562e928740ed3accd", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_X = B4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38b6d3ec1b2bbbe5b6d1d8e6e05db619", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71af4c04032d71c2f64cf72c5449f878", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_50_5 = #4--> D4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6f89edba462160edc51878749b56fd5", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d03aeaf8211cd07e3f4123619d7ed3e8", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c03fd6bfc03c50db4f7f767806a66963", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_5 = D4 --> tiprack_A3_adapter" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1215b6851e18191f892a991f63d67fae", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afdb8bd79e84dfe23fae886913ccbbe6", - "notes": [], - "params": { - "message": "UNSTACKING: sample_plate_2 = --> A2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b60306abc6054f2346a3dbbfa235a28f", - "notes": [], - "params": { - "message": "MOVING: sample_plate_2 = A2 --> thermocycler" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5857937471fe96e4052163040635d4f", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9632ceccc60d4ad40bb2ea775ced1e43", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dde0f75debed03cae6ed006cda4bcc2", - "notes": [], - "params": { - "message": "--> Tagment" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2ab99b3d19268477d7b3d654be546c8", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca0638b417c27a07c4e5161a1f0ee8ca", - "notes": [], - "params": { - "message": "--> ADDING TAGMIX" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6032e2008d82584e0ac9b9aa88b98a8", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "586b7911340b2bcb724f1c0790d0bfa9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfd8d06adac800a2f06cc8ee9537ae6e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 12.13, - "y": 178.99, - "z": 12.049999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b7a658d19ef609ab4d8d6e03c47a77d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a970cde46851dcb35147d8f5da61d25c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c6c42613adaf30e50e06ecf7e72ea35", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d88a26ae11d4e9f401ec0e1bf39981d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 75.26 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b25d45db22d1009bbd21ae47b274552", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = Plate Lid Stack --> sample_plate_1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb92eaf0da61d9e85d72b3cd6a1c260d", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0f5495cb31a6860b9004aabeed2f032", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb9acefe61f72fb0a2002808bf92306b", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e962b8663cd6ff288ef971dd889f455", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = sample_plate_1 --> lids[2]" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "145357d2912e862681bcfa43b25912d5", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd18ca19226357884e3fb98088830960", - "notes": [], - "params": { - "message": "MOVING: sample_plate_1 = mag_block --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "824be0bec445ba1a48565f56998add26", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0575ef53d436a7870d484539d26b889f", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_5 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c20c1dbc3f400b73a97ab84a66b3a9a", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8bd50f44a0088dd91f4110258865caa", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_X = SCP_Position --> tiprack_A3_adapter" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e9071d284900ce26360a6b776f8b74d", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcdf762396aeb3d9bc44eaa65a6ca255", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_50_SCP_6 = #4--> D4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18c4a5f25a03a7393f9e248a240063b2", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efb1ae950dd67f38aff2340967846ea7", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86a8192ca230fae1095106f3bf4b42d5", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_6 = D4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5162de5e6715d53f03632f1cc37d411", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d81eea948182d5cdd74ad8d41d520c0", - "notes": [], - "params": { - "message": "--> Adding TAGSTOP" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f7c48c32a5871d5c1e5acb8313f5d1b", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A1", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00345e5e1ee0796d34161f23b604f104", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "112c7ba7598b7e40fd90dd4bc1ffe8c8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9928467dffcb1a711202845a194fa62", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8370d8584d50560f21f67bc4953326a0", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a91b0e176419d70d18430c65323e60c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "530b18585638398aa154da07fdf390a1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd194306f279d876257506b215554a99", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "010bb12f1b3edd3fb35f1012a8bc41c3", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d4f6ad677b48039b255a48cc86429c9", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5b7755001f7b8904493e1eb69ef9b3b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44577df1a03b93ee162b9b530db11065", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18d7ab818cfaad7810deb5f6964d3ca7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2218549b2babb9581143989fe2e45343", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e417b568dcc4797b0f05d08f6386622", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2506f62c5947290040fc14d4186ed685", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "380dabe27e664fc8bf32ec2b7315b99c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a0695c2fb06c367d654af66f629b0c4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c32ec74ab60d091467310013e70e20c8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4fc417a69fb90ce6eb794aa63c7889d", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1cb980d4e8539cb3b0b941ba1ba9d1b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0a093854469188d796f0162e2fe1124", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfa5a6a13bafbdca558080a17b76b3b2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01cdecac1827dc68d850458e66a7b326", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af4298aefd88c37e3a50bb9f4c563c1d", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2006b6da6477ae83a5dcb4671f0a042", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42542b92c36fe732a08c16719816fe61", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a77b41c3a1778889fbb0e82cb9047a41", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8be2ec1005eaef3ec114d14c233a8ea9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0b1300036bf2800622026b8c42b8a6d", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1dc45f3ebfd3a7dad73cb0eaa23b0c87", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "273982547e93945f409e1b5d6558f6a7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dda6c63f168ef4c95bbfcee61716b354", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0816557c7e34d064f1aa1a0450ae3234", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9e064a772b97a6e9a34642ff59a7c38", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "893998b6a3cec881c44be0fb804ab7a1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5131b09abc27e37b143e22c990cd5daa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67a9e3cabd0df1aecb2084804793ef6c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f695ea4f2332a824e03ac9c8bc1c746", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b4b508830404998dafb16ff1d590ac9", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "432b801b132b57455b8dd0b6d0177e91", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec472badf4160b6aa00f916d654848d6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97c46cceaf91254248efaf01caeb70b8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6856a978d6b0926993b1b451b5505313", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c64f4f2f265edecc1eaa90b4f20e10c", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ede8a23b4817c52302757c9f1cb8f7e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e4e9bc83fddf21889b61f0952f6108f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63645cccf900c4f1dbcbb42826794c68", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df3e9beeb337ecd024547488d87120b4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47fd3daab943e777c86be0e77e1191b5", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df480be161f893cd9bf3153dd4fbf6b5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec8b78812e1094c31d70f1261949a198", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d620ea0da2fa3009e4425ebd4de84f1", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "101f9f54ae6ae988b00cb4e0f8f343da", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "224f76d9bf653452b5cf9adcf2665521", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2890ea35ff6fb6a68c4ede3e23c30a4b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f423370531f8b92c2d5cad6d2a6be54", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6e6cd2021f0f05b3424c3417000cc10", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7cd27c78e3d3207b8c7f66ee8c5f830", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23a5c3beaa5feffe8dc692c74ca002d2", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b26a78483240d681c789c9b262d50392", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15f3d1c7adc5e68a02174947f0d09dfe", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = Plate Lid Stack --> sample_plate_2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0da6a2c3d090afcc94648f3e7aead5f", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "735f649dcecc9d3ba0d23bf02dd92ef1", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7677e0403e1c9175fe61dfa23bf471f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2f9032d04605966234a36ba5f7d7080", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = sample_plate_2 --> lids[2]" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd0c05257e3d0257eee25c72afd2ab3c", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92b4e2ab40ddeee563cbdb749f7e02ba", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1c191696e84a8b204aa3d26019a45ee", - "notes": [], - "params": { - "message": "--> Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4de602afd42b40217c6f68fbd3cd5a5", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73bb0410084bf8c384a9834f919dffe3", - "notes": [], - "params": { - "message": "MOVING: sample_plate_2 = thermocycler --> mag_block" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a3465c00beca0b34177886c3bd36d6f", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1277422be7c6b2cf27c88b9905c45212", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_6 = SCP_Position --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9bd3ad88e1c46c4215674bf6110ada8", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41dca6700d6e1bfa6661b9b13a805ac3", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_X = tiprack_A3_adapter --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7ebb22d948c24d5ef7de84d9cabe1aa", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a398b17dccab573eeb66623025597cd1", - "notes": [], - "params": { - "message": "MOVING: CleanupPlate_1 = A4 --> D4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a9100b2e6d725b64ea15c032184818c", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb7f8626b860833c5dbc79d05415bda0", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_200_5 = #3--> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9f6bffca46ee4a654c862c080fc1625", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce1d214fdfa7df8471b8ccf9c188e150", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bee8b5148da085d78a5dfb0b708458d", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "943524c54361e84d7735d23016c8f887", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8499dbf5b6581704ed94899842c9a5b4", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d974f6f8c6fbbb9b905106b905f6cee5", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb1bb609df5cc109bc93a31cac501661", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c4a9548acbf7ecc8a6ebdf41b4906ab", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d23b9ea79701c1e301a5ad034ba308b2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "490badcc91cd3f6daf1ad2047db16b7d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b782b36bdc6cdfdac7fe22faf4a2ca2a", - "notes": [], - "params": { - "message": "--> Wash 1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bd48609cbb9251f6acbdc35ed488790", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cb57086e7cd53e2dee272230dad1c45", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26779ffb32ed417a9a764c54cedacabb", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed89eeddf140e1ef7e0feff926bf1e82", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5f61169d319c5749f844a4acc8c0351", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7c3d2707ca7f61495580acb7319136d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0566365381d52fa0802a281aab197758", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1e322966593eaab986d886d8cc36461", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d360809208791bc034e8c20c9744d73b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84c39e4643758305b698c5ccce8921cc", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7462990e23702ce0aea251fd9d9d4be", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7cf342845a038d28c9b5b6ab9833108", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a141a83d57c421afb23e5920ff4e5a46", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d3db0875f4cad0d0ddca71b415ae8bb", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3220df6484c89f208493e47c0e1cb85", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7f4ba909c421c1a8289e30097e93533", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a396332c9627135e7d46e7cf8ad3196", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b13db8097112fe69e22c2cf3e79f8193", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "452de7c9eacea388185591c11bac979f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52f7b992af9ea0e5190e066b49a33d26", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7df0eb768e15188f552e6f3dfd4a8d2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a562db295c4d87baef4891df9201efa", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fec58f850c9678210e9f30298ff657eb", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a620aa4284af2b287599ba5492f208f7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f05414da8827e287284c1b2d0d071821", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b7eb84a7a69e1f840d7e4f43d3af95c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c52013b2b42741ea4abba7befc829e7", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33beb7899be310d5ca7ed53779f8be5d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c068460905599de51299d7ac5079c8d5", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_5 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff7ef47f87e6c36f91260ecd18d2e829", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "247943338c0b63cbe63c36a6bfc86886", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_200_6 = #4--> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fbf5ee83881a2dac689db02e1f4f371", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c56643e49b642e5c5a4dbf13a1f0a5b", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f47429257c83265ad5fee774f8f4e139", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a737fa0444aae436ebe6525e88910bb", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a41f77a9dae987144b98fc245367454", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "631ac36d8daf17d06ea8d82bf7d44166", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3192e5d66b7791a7feaccb46f0814dc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd93d373343a2de31852c5ec75f0b31f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6234e009853ec9f96c26237bde702469", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66cedc9ebe08a15787815e2ec74d0282", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b31dae95ce07a1fbb2aafae0395abbb9", - "notes": [], - "params": { - "message": "--> Wash 2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "870515b2e7a0a2559c9131c29fbc6043", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27b1d1cea4bcd19b0e562485856d0778", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "949b71092696006e764d1cc4ab805ca8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "daedb789f9fc4c8b03e205cb7a245fe4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f34035f5aa639174efb57f600fee704c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27a1c43dffe86fcc53357c8390c5461d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6cffc9124ad7919aeb7893e63ee57074", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a44f6a0d4918edbbfcd6963973b63f2e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d18e29801bbd8f4503b4bcd3cd5c665", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3752bed465f614b2df09aae2071ac580", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af06c0b969745afc6c363470a191f996", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac6a655d82c61ff1a05cc8c47e8d0413", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "723348218743ef2c6a029b420a4417db", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1768748381e6e8775c47c3b0fb328291", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b16f3890081d367c847157bccd2549f3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af3743a4047b7ac9864fc9ce3ea30d7c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "290de1e7c895e7f06009e917d339a621", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81e01cddf5bf7510ea7c7a24061021a1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "458a06818eb842d014520e5cf71c79e8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ed564c868ce3b387bc2521cd833ac24", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8c80da0b33390e56ec287629ae5815d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9a007eae1830803530c603ae38bbde4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b107b374ca0e7ac005b6448728a85cb9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc4cdd4a67d8326ad3dd50f0c8ea8d80", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "251657cb3848e25a1c0339ca9b8a48ab", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16e93f8e00bf052f2774be883fa10a43", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d2c3a8604849725e6a055cefdd4bb76", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f6faa6451873536536524c0ce4e6476", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2d7793c59062e33d833660b83b1ca9b", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_6 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44209e6552d7108940e65c3a86c3ffe5", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2e08e126d8e6d8c07506637f76ad643", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_200_7 = #5--> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b18cb761cf4cc8fb4f2988e16c988aae", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1f8a44ad72649c208b6a84da00810a7", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14c14012e77405f6eaacaa9165d4872f", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fced5e2c10e4f3cc62009ec2f1eda4ef", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0e68efb367aceea9291d37ea3c2bf17", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "405bba938130c4a38cb79e7d6a5bad10", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55d431ed76a3b56a0078b640e66943fb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "857375584e429c8f7f867ae2eb2160d7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2e72a0fa7200c4e8fb8f93c9e4a48c2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "274f19298b3a0f4cf238f996e2a6a0e5", - "notes": [], - "params": { - "message": "--> Wash 3" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99819380b56849f20ca9ffd55cb40170", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "138b85970199bad2220a321335d648d4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7fccdfab3dc3b48484ff7538438a6e9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "020abf52ec3bb9393ab4ba23e36d3ab2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7661df83ae2d5f14f749b6cf9754f9fe", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6368c78defe3d81a6c3cf86b6da93985", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16c40155d3e2c8fc45ebacb2a0dc3904", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e6668e35c7e35eb6d2f0b2ef138e39a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e86a5ca9945a68538218baf82859d16d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89b4aa04c88b6cf5ea9a2d04a06d79e6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d8c988313e4343690a90df22eb10148", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "664b568d2eb39ad6b05f74ae2c933a71", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8a8617db48f7efb4f685c8dfe0c56c1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f8382ad584aa80c4b98d99ef2e29b2e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a86a865bc8917935abe07d20cd319d14", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd2b9efdb0b89713dfdeb713969c526c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd92024c848ca6d9c141f7a2673f92ab", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c63f24659f132836f851c5e95d665c3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74c79967ee13b77f81dfaef3ea3390fd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f87ea1482232d98ebc1e281725dab8f5", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8ab2edae3b775e6a1957dd1054b9cc8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e71fa3564d3c32b4918f75d1688aaa39", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd7994244cd9b54052a039f2b0bb4d0e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 180.63, - "y": 290.49, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0297b57d96d958afdaf73b4412f7c5d0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ab22a63ba866a0ca182e9705a8c00a4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.6500000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 180.63, - "y": 285.99, - "z": 12.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a09f52ca07b780162939ffba55078029", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c77cdee566505a91d4e71e009932164", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b28ea47bd5f11907669e5bb8c1287499", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd92fd77d4c08eae16699eff80d1af32", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_7 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "018e0786be01ff5dc0bd4635b4e35730", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e472458fc6fa652e0373ffbcbc43cc9", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_200_8 = #6--> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e13369abdee4d12149dcc9f052e2e54", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f34a7c9e30e8cf7f20d92267be45420", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a43c4357cb681821d52e60a05c630baf", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b05cee1f3c90dfbd31f7b6748c8c2a7", - "notes": [], - "params": { - "message": "DISPENSING: STACK A4 now EMPTY" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4255d2d9ee9df9f37c536aa81b86e25", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1beabd49a9bc99fc18d7c1bc1f79325e", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2fc620e4e4530b531e7753d0bd05b43", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adaa8bb99256db0590f268cf37657428", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3500296d878784f9e10006d6959286f8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1390356a955f9b449eb2b7cb09d0526", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f5842d5ba5d50dc65f324886ef9e55d", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_8 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f52fc7f066e9982db8b7c8cb999c3d2", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9de35be98fb3d822f2f99b3359a42fe3", - "notes": [], - "params": { - "message": "MOVING: CleanupPlate_1 = D4 --> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1009f56209a3c894010f7b01187d8e2b", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a4233d875ab6ad825c4857634437c77", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_50_7 = #6--> D4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b49071de46454acc5d20e24632f732f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c4532e898cb79e93d7d1342e2572988", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b41750c275dd316e0eda25cdcd89e374", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_7 = D4 --> tiprack_A3_adapter" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc7fe903b1d1a475eecaefc9631ee089", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4aff88626b2ffcbf56b7d4f05633b7d9", - "notes": [], - "params": { - "message": "MOVING: sample_plate_2 = mag_block --> thermocycler" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac60fa3a4e1252f3d1b8df987725aec2", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c8f213730a0e29654ee4fe3a86372e3", - "notes": [], - "params": { - "message": "--> Adding EPM and Barcode" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "608ab071525b4e6b23509a337e35b5db", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbf62d64808f4a9a2b44e3019db0d2c2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e53dc514864ddcf3c94afc9978a7b5a5", - "notes": [], - "params": { - "message": "--> Adding Barcodes" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17866cc9ad2dd161348c627205132b69", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.3500000000000005 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 176.13, - "y": 285.99, - "z": 3.049999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a53580842b4fbaeb383f7dd0f95770f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c8e49dc9699d3aa47e3401fc362a134", - "notes": [], - "params": { - "message": "--> Adding EPM" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "583b154fd05792a1dd9bb395dd85852c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 16.63, - "y": 178.99, - "z": 12.049999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49040a764717856be35d188aa57a0bf9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d4afe8474672df9e992ce5f01411028", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 75.26 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bacf8d61f77e64296016ec198464738", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = Plate Lid Stack --> sample_plate_2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c8c5f2461962d3b0590b4bfd9217250", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bc2d8b166208356618208c679da7fc0", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49ac568a8c7f8ff7b717855c58434add", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ee79a565baa0675f70f8d2515341c1d", - "notes": [], - "params": { - "message": "MOVING: Plate Lid #1 = sample_plate_2 --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3ae40261a905e7e24bf534045f47dde", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec5bc8b9e413d60c296b4e5e97dc13e3", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c73d0af97d991396d382559440133202", - "notes": [], - "params": { - "message": "--> Cleanup 1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29468547c1cf31d7c8ad6f94e15cd3c9", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df62d6a5a9e290953d98df8561d13e49", - "notes": [], - "params": { - "message": "MOVING: CleanupPlate_1 = A4 --> mag_block" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c83e383a6c58a4ee911e120ca2b1e9a0", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "510f47945ee89e7fa883f318de3f2e7e", - "notes": [], - "params": { - "message": "--> TRANSFERRING AND ADDING AMPure (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ff9af4eca66ceda70343a524bb92b6d", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4dc588d491987a293aa916856a915251", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0290522b275f5c8a780f2c25da001b95", - "notes": [], - "params": { - "message": "--> ADDING AMPure (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de0fd53377ec8d360eecfd582fefe6ec", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.3500000000000005 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 3.049999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9b009b52c2baa3de6f8b169129a84d6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67de6c4c049332dfd68ba32277cde524", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d6a1d5740601852b32c69c73d01abd1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 3.3100000000000014 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e876d7fc56b57ca6c22b4ed1bf9a1e2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13ffb42627df61a0ecf4c760f83bf128", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 75.26 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1711710f8a731c37bd3b546b13188257", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_8 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdd7aa48cc58c5c02878237d0c6610ff", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8032b59e561db69d1d264f27ab7696dd", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_200_9 = #2--> B4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1023764244f0e7111a26f9a6bf9a307b", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "381e16f0b6555fee7e88b262b8f7ebf2", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36eefa5641ceb4ad136dc69538e0650f", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9cfd6c3c86dac319b9ff3c48bb6927f", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_9 = B4 --> tiprack_A3_adapter" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8e1085d80b2923543aa487960fbba62", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "444b9914de240322c6bfec6d14239034", - "notes": [], - "params": { - "message": "--> Removing Supernatant 2A" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8aa9e476109b89aaf0e1c36c204190f6", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3124ee8d95a68f1168d6ca604ddba5dc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbf717778ae42ad079f8a9cfd5b16a85", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c03c07e5e6b9a8e0692d95b6eb541aa", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6cff65cd06664e23f4254be0162e8824", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b11976c1ce694a8d3ea32c18050b272", - "notes": [], - "params": { - "message": "--> ETOH Wash 1A" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8bf627329b4171b69d7e857c722171f", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df1237196aecb7eba1b20fb0e9545d49", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79b84ca9d4a82bd5e3b8cc4e1ccf24a5", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c8f90a00c4d7a9607d7bbe8860d5456", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b761b9d875cb89588b948b089b4fabd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47733d42e80920882f4a9adb47818898", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4fbb7a94d789b2d0b44c46962e81c4a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79531d7f81249912038cb461e7dee7f4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7768484ce5a197d9334913f50b0ed354", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c2dde35f6157f69e6b2debe1f7d23f0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71fb9cb661fb1e112d683d612acda742", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27160f812f48c2f5523a645a1024c616", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14528f49906aaf3c70325455cd27777c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afd8768627d00059a9399c2effae9cfb", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c42a9a173a371c7a23cdb715aac620d2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "847a64c658862d7c9036c5fff7c49971", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47d4300b6bfa1da77afa2ea660a121f0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ffb0c84cb61d3fea84c4ce7ca5dbfa7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "092444f7dcfee3ac568c09f2433cc8c1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee44d06a2b5cb6e5dd7584c985d294f2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d3473fd5e769de45dcbd4e6ae63086a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "030282d16844d1494fb418ccd0a06b67", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f084c444c9afdc45d09694f85cc8ed18", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98d22e652e7dc99741a3c7ee1cf5d59c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d160e6760feb94e14c7dbcca8dc68eea", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c4d68527e0cab13d2aa6101b8fe5036", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c588e6de900dbe0e59e431353ebf48b", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5b6c1103232df1776481b41c4b7a4be", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b03a7f4a38b1448a9a684bbe75df8ff6", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_9 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf509c9595232ab8f859da9455ca6933", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae2d8b26acc590973c0cbed633c1fd1d", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_200_10 = #3--> B4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6efa0e1922e7f1e073f42da927b141be", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1050ae04af24b0b81056e14ce8a69091", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4ab29d22c3263db76c91c563b1240c5", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_10 = B4 --> tiprack_A3_adapter" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "232c93afbdf6f20b9370a2bbb414fd42", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4b282a4218edd5ecb8abdf0ebea3daa", - "notes": [], - "params": { - "message": "--> Removing Supernatant 2B" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbc24a2777f007279e962da76c8d564c", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76753657dd9d1eb0c247f25f6432aca2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b27b5fb327f6ec06055eba2543f56d8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8db585b512623f23a41dcbd4b88cd9e1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3899554b5ca80cd986600216ab835e02", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bce59060585a22954b1d1d4ba987f04", - "notes": [], - "params": { - "message": "--> ETOH Wash 1B" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21761075a35b2d6650ce721ee2094d28", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "764a15cae5e108b1f3d8a2610a04b55f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62e260736237d8f6862b397a9e00aba9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a60ee382942c8c4bba35d568713257da", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "160373b6e65a61a310602c198e0c7786", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54ba3ed87b2341fe98fa7f3aaf7e92ee", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b41f4c7fa7b4bf6e4b6481c8673ec42", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb63baa99ec2a9fa9ecf0dca8f619324", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4882f7de8531664f7a9bc49bad99e29d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f0d04117499c31bc6571972e9d2dbf1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40526869150a11b0038f20038b882388", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79a25b48aab60d6c4c7ba4794646d6d7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f82691f0b12020b8ae43540a53ddeab", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "286f89c890a1983e5e65f85ef7ea2b52", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf64b07fdb475046d264dcf90f04fe2c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c4b64b17f023eb6275490205bebcb51", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eceebfef421394407bcae09d8f5f0a48", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ef1995f0b44fc6ca21478f7e821bc6d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a43e27eb7ce795f0337dd5e07a1975c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de98b64c5ece9aac6e3c49b25ba97f34", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c96c7da36d024c2bde742d31b0a85c7c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "677206b5a33c167564f963226922301c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e182b4a87acca7c725b7da5c55d9972", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1e1ecad2b9b92bbdea928fd3d5f12a0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e79a3be89018512d6f0b4c054f3ddc26", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 5.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abb1333fdd388d22a77f082c1d5a28a6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5be537118071aad21c780db53e2510b", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b256164954cf325a1faf372a64feaff0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d5478f2f8660c78f91e203bb48685e8", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_10 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4c7c8a636dfa19f4880c0a699749f14", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52b1940b50aaa34cdb45d830f261652e", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_200_11 = #4--> B4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9804de7938897787347917f0c85d797c", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e6d86a4183a9eb6173a1d726fa52f35", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a4386870274194cac3e22df863c4edc", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_11 = B4 --> tiprack_A3_adapter" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "757de6167fde3ca8591ef7b49f8c2d81", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db8ee5c44ccfe314179ab3b0a8816ace", - "notes": [], - "params": { - "message": "--> Removing Supernatant 1C" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3daeab1b0a20cab948317616ed8a00d", - "notes": [], - "params": { - "configurationParams": { - "style": "ALL" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55d4684c65392c11c710a07e1e2e7fad", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 110.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6276613437a7b67156c4f819faec6cae", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f7c73c04b36dcc5a600a783d585de59", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 43.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1af7c4689c6652620a73b123c7e5b7d6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": false, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 74.99000000000001 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b6a255849fcf5f4add229568da0961e", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_11 = tiprack_A3_adapter --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43f699f9b084d37c4c1ecc767f5fad8a", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fda4186412eb147dece3c716a890c38b", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_X = SCP_Position --> B4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "289a4f2ee5194dee5c1eb56589184a63", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98f695795f3af3f663e8db3d5577e048", - "notes": [], - "params": { - "message": "MOVING: CleanupPlate_2 = C4 --> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "161247805259eef3a7a83c9117aaa615", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba2340a56c2c85863bf1529e1fd512bc", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_50_SCP_9 = #3--> C4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ea335e13c84a6639981a5fbb8f3dd21", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ea232c2882b1b1e2a86b5c8887104df", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8b86df1e2d57428812520fb72ded0a8", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_9 = C4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d56ff8f687e23324c8e161cca5d7b416", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a688977d624f7438dbacc46c863b4452", - "notes": [], - "params": { - "message": "--> Adding RSB" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f4a90be9aedc6aee4d7b8dfde3aed59", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0c7b14b49b828f7e6c11ec7ca11641f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ce0a6b0d291b4db8ca187d10d1b45c3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 34.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d951bba19e85e5d454b3d8f79943b88", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43e1f587bd521ffeab7151f50a2a405f", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4e98353d54a99fabd88598e4aad068c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be8475eedb3a6fab6b7a1c1e18fbcfa6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83e39b081e033986257bde288173dec7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 39.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "caa78469cf1250722a27293136f8b401", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f370d823f21287ca5e9f0cda6be4b0e", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d0ec2ffbb799548d0591321775acee1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bee913b78047f41c1450da76212aca61", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a08b87d63ccf04050bf3e91a2e3d6fb", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 43.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f43e451d4ec29f77d8c0cea7a43e38f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8f7e10033c6a2cf76372885f72ce967", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b54458fa5d8ecbb169becb63eaca403d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80dbe8fffcf7cc6c25926c1729161dca", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6731a533972c7f0406cabdc4ad656a2d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 34.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "546f0b04a203074b92a841057117fe36", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "588ecbee7e26c4e09b3c70e0a0831544", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df95d30d9d4b417dcc9c1d949ac30160", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3220546c439ae78e43ce4f48c63529bf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0103147fdec74585628a9f888d450d9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 39.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90f27a34897482d92dbe7de9eadd8868", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f6912a6940d87d760b2c78574fa0f77", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9305293e2ddfa51cf5b8bd96385416db", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8795b7de065996ccc6b33ddddace8324", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3180554e36db34f45554a17376730ae4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 43.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6746b9672643783f32b5c3e81568fec4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33d326b49e47e6a28902352196befc5e", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "418c0c5db3ce7e64076b5a7ca8c74325", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aabfafcbd8aae57f603489121fe7fb7a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52b617513c3504022a36eb61d33355aa", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 34.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2bcabd6599ec02ff697a35494d26d99", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87436a40bbb2d3a3be02892f34481019", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6242a372ecec45dbfab649a69f651ac", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a02a5401880eecc920ca9353950f0649", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f60f838fba872827be9d8cc8694259d5", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 39.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08e4fbc70e4128810a637d1e16566836", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fc3a6f1a7d9eac3712cd328b7aa2442", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87519be2ea5cc0ef39292a6a33edfb01", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28c75c62e83a5a00aa1643c2f5902c92", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4859b955b5c97e5bb66361c300215f52", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 43.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37076184f744323acfbcfdf111c37dba", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10832f28b5a48ec4af663c1add73a597", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ffcc68695bc591e9260962ada282122", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f0a7179c4ae12735e00dc1c4cb9f739", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8668828bc86e19b638a932e5a686e61", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 34.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4628ff7a3987114df82537cf3251059a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "355f511b095e40267d0eec465ea2aae9", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b9a18477f99c386251727c3e9538d11", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0617ef018637f23643342c5f29d1922", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a43b5d5441d36b6381943d06c817be0d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 39.13, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac18fc153c86669cf90924ebdd172cdb", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bdfceb0b287fe3bd0c2c7dee73d8c5f", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6519025e6194c1beb65bb09ffaf1e64", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3079fe17f3d324492c7b5771120f191c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8f80fdf7d31d94be83e03372ca95eed", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 43.63, - "y": 183.49, - "z": 12.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d85e5b7992f71421a0373362c110b646", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 40.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aebd2ba6b3ae0a3536d4e0b541bac165", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e7327037bcd0cafa9a2b6242cd26a6f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7276fcd8a4e87fcd2f8ff4a3fff137b7", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_9 = SCP_Position --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07728020145cd7802d5ecdb032455cc9", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "389a664ddeb6d5e420263b8b24d1fde9", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_50_SCP_10 = #4--> C4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24209c008da30535faddea3338caff7c", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1D4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb1db0226638e2884751b2c7f060db5b", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c6796c9b2cd392a971a3433b4ab52e6", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac32dd028237f61807718f07c23fe7c2", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_10 = C4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40b368042fb4d9645f507162a369b1ab", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5221dca29e1745df3ec5cd5c2b1c6a45", - "notes": [], - "params": { - "message": "MOVING: sample_plate_2 = thermocycler --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "575f7bf234861b734e7afd83afd9a4f2", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e10ea84b254348d3818433a91adf54b1", - "notes": [], - "params": { - "message": "UNSTACKING: sample_plate_3 = --> A2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96d5e28128ca3db17f9bfc95d4a6cbaf", - "notes": [], - "params": { - "message": "MOVING: sample_plate_3 = A2 --> thermocycler" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "606712ea3085ed8af964db2196105567", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79598481983211837ee301c71e8914af", - "notes": [], - "params": { - "message": "--> Pooling" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98eee4f78cf3e25a5280822630608e10", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_SCP_10 = SCP_Position --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a96d68b2269b23c307869a351e7b8ca7", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a5703f7f3dddd299d174aecafec67e0", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_50_SCP_10 = #5--> C4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33417917258b71119a88bcd35801c30f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d35fa9f1499868a732793de111543810", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ceae6484bcc4dade757e01dcce385ef", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_X = C4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29d44baa542bb81d047914b669087f70", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "039557834f2d80453c5f1e6f7d3d09ee", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fa982da15aef9bc41365e714aab813d", - "notes": [], - "params": { - "message": "--> HYB" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a168b8f6b8599374ce17d85e01133e23", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16c489cff884aaab9029187299f0131c", - "notes": [], - "params": { - "message": "--> add NHB2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7c4d57e00734d9d5beeeb731e0ff2d0", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fedef2c882ffd34a635437dadb1b8433", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca51c1ce96136e1cb7724062cf2418c3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.05 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A18" - }, - "result": { - "position": { - "x": 88.63, - "y": 183.49, - "z": 10.35 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "219ee0273126d6eb155476b07a88820a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8232ad3e157050edfa98458e40d4bc61", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cae27ea6c157cd78779e488a2da119ac", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a99ee32e18357c957e3c86f1323e6568", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6a76fbc2f1b738a26540e0f106c4af4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1dc0ceb2d07e7883dda2fb54035c671a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.05 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A18" - }, - "result": { - "position": { - "x": 88.63, - "y": 183.49, - "z": 10.35 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e4e1332eddf2bc83e39790312005966", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41ba0ac0633541cd25511bf222cf96ff", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2db54aec7a563dc60828bee1972d67ba", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80256cbb027e8a39210c4c1a44c0f0d2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fce913989fc97f6bb889499389a66c57", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1e5b42b3acff42e72f1987b248a9aaf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.05 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A18" - }, - "result": { - "position": { - "x": 88.63, - "y": 183.49, - "z": 10.35 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9139542bc7d8debfa11bcb43aec1a394", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d227d04a6ef5a49f34ac7663b64e9919", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1ef6f5ba9d9188f93e87d48f90e68cc", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fee8a6af65496039cce0955a1e62a5e3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f6453826e4c4d9d8e7a0dd0d62a1892", - "notes": [], - "params": { - "message": "--> Adding Panel" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c02cd1c94c0eb48fd1a3e350f0d7b550", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a1e45942f3cd777f5f5b32bbec16cb6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a732115d2b428397c687658152963b4c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.05 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A19" - }, - "result": { - "position": { - "x": 93.13, - "y": 183.49, - "z": 10.35 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb591615376e362951b7d7a3a4ba7213", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d76f240a4f1bb828ebf4490041164016", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52c83d11fa6a0f64aad878b785407546", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4e486d8c7398021744f17ff52d76a79", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c710b319fc784965dfa2edfb22df911", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35186dff57d3be9563fbeff03e290bf9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.05 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A19" - }, - "result": { - "position": { - "x": 93.13, - "y": 183.49, - "z": 10.35 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e19dac6a3af07567aea148b1d8d3bb7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61bd61d4ffd3bbe095fb6f8cd2bfc3af", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36e65458dcc5b0534e58f0aacc05bfe1", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5059c0880620825537e92560292c522", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab9f956a33c9822446e6ff092ac4c85a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "497159e5a8007d532e2f3076785e8fc8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.05 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A19" - }, - "result": { - "position": { - "x": 93.13, - "y": 183.49, - "z": 10.35 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee90048a158541569aa7e6ecff6be201", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ded969c05996bd7209b52eb637cc27cc", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef6f6b568580b8ae7a0c902680187305", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e40c5c77549b604a14a7bd4f4efa22b9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a858b7b8478a742f60d249f61b519b85", - "notes": [], - "params": { - "message": "--> Adding EHB2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a917e17a8db9cf5b23d6afe6c6de99b", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cf3b5c929c3cf257624a819e62bd47a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d41cd3330fd3786fcaaea94602e3a7f1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.05 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A21" - }, - "result": { - "position": { - "x": 102.13, - "y": 183.49, - "z": 10.35 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5a02917837406c3cea713ef4f673fec", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f815daa695fd93fb7f12776edb14b77", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "121a06ac58cfe87d8bbe087330cc82c9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.05 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A21" - }, - "result": { - "position": { - "x": 102.13, - "y": 183.49, - "z": 10.35 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7797b911db78965672994574a0ba8386", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ab001de05326318836e82ef10474662", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a21c5dfa7a7212cde382de81434bdcca", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.05 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A21" - }, - "result": { - "position": { - "x": 102.13, - "y": 183.49, - "z": 10.35 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd547d097c098061f333e37750718e9c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e97cfb96dd9c4d8e9343d7cd3b383bb0", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06675983ca15b4fcb6a26aed0ef3f781", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b63cae71e1e300b0607a61caea6a4ee", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5051cbbfbc4d93391dfd99f692e89f34", - "notes": [], - "params": { - "message": "Hybridize on Deck" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54c1a7a1ad21e6dad5bf87fdead12715", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ade14487f289f19250bc108bb94b51b", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4dda6865552b7215cf1ac4211b0d9e1a", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cc5bca86f4050f91c31bed818182655", - "notes": [], - "params": { - "message": "--> Capture" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8820cce95766a1e6e0c6f1d1c912f63", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "374a7e9649ea4b1166d5ec63e6facdf8", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_X = SCP_Position --> C4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad5e6efaef8556154938482c1c57bc9c", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7889236aa1a6e5be4c51f59f4dd780d1", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_X = B4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bbd1142ac69f2bcf2186fab81760eb5", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb74fe80f90b644305e6f12f422402e7", - "notes": [], - "params": { - "message": "MOVING: CleanupPlate_1 = mag_block --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63dd7476bc90b7242221a761d4c81be8", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff774c84092c3372a27e9e7b99eced92", - "notes": [], - "params": { - "message": "MOVING: CleanupPlate_2 = A4 --> mag_block" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb6f0e649c32232579ad52c6659abcaa", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2737888b9db1390940b339f46a98659b", - "notes": [], - "params": { - "message": "--> Transfer Hybridization" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "141df58ffc5edbc3ad6d934f014d4afd", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a02d51586a055d0d1d3ecbdc28d90f42", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfe220e9522d82e075cf86cb59ecc465", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.65 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 1.6100000000000005 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c70648c43d4f3b034880b3685a823276", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 101.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.65 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 1.6100000000000005 - }, - "volume": 101.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b2b8238f7ead1bedc05364c113833bc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 101.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 101.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4779cdfd32d85dc6bd465e3632c0f59d", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f78b03f94a44f63c7289afc4d2ee92f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8535eef14be7b4ee4d5ca1098ae66ea", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48e34b55a83a6e3531b89ff5d05d36f1", - "notes": [], - "params": { - "message": "--> ADDING SMB" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aed07b2e170d1e5b7f506245bc96fcfb", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02f9509dec02cb96fc4170306c138488", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52675b6134c0538eeeaa0c2e21e606e6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -8.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A14" - }, - "result": { - "position": { - "x": 70.63, - "y": 183.49, - "z": 11.049999999999999 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "575e79848f67bf4610fc37b4c8a0f143", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -8.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A14" - }, - "result": { - "position": { - "x": 70.63, - "y": 183.49, - "z": 11.049999999999999 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24d1089f6b208f4681e454121f4d6b9b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 125.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -8.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A14" - }, - "result": { - "position": { - "x": 70.63, - "y": 183.49, - "z": 11.049999999999999 - }, - "volume": 125.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d88a283da8a0fb344c5b750a62e050e8", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 125.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 69.34 - }, - "volume": 125.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78bc61aa2257567e0b61bc6d35eb5933", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 125.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -8.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A14" - }, - "result": { - "position": { - "x": 70.63, - "y": 183.49, - "z": 11.049999999999999 - }, - "volume": 125.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eed14123722d41a46196ce5175492ccf", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 125.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 125.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb4eefbd06289b6df547f85ac6662e18", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 43.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f2b48b1a42cea1ffb3da7f5135fca9d", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 43.34 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40d49380994ef70198fd4aacd89521c8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d72e4e166a2306ee8d57c00eb290b1a1", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4d31f917185361ac8f63eeaf4ef23d2", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7850ff37aebfab4378d87dca012af87", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 43.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e967cd1d2372e96e3185bb5b7e8ad94a", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 43.34 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f49c6cf8195c3957230149e3b77d621d", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 43.34 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad8ace7b3d6b0f38bfb69c260dca7da1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3f5765122f6ab97768a9261e47afb27", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ae40fd71a92df86228922b0b0f8e83e", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c258cb772545b5799e61c261b749290", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 43.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9625cd9de2c5ffd99f6f46da81283723", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 43.34 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51dc8714b9b0b27687e89b61d4eec060", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 69.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebcc7602b0a491fd325aaa357ec4ba18", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e68e66e0c5270fd255b139e6498b1f3c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3067bcfff057d00090c874372b496d50", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e03a2934937313c4cb0b521fb7d365b", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b517c536555b1b6d2be5fc85aeca7bd", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fcd9afd82b984491ae89393d5753980", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21a911d050e2caebffc9941984e75a45", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6bed44600c58fe0078339388d927a50", - "notes": [], - "params": { - "message": "--> WASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49bd916553eeafec9940cf2805503e30", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc26dc931bb6713653ed2a12b38449f8", - "notes": [], - "params": { - "message": "--> Remove SUPERNATANT" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e9bd82d31a6f97d376fc9469b1281ba", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b93cecf5ebde9d523cb7c42c12ab573", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a35e7c2499645f0a835cc76d685a801", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 42.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8575f990030a27ea35a017129a1c67a7", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 42.34 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a324062edbcd1a6bf0734249c944dc1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa89190467fbea23b800389a033f3bd4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7452c52abd1133f4b39da8eb0944543c", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13b57ca1829c3c2e53b3e61d7b3a3b4e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc6b5ef003203b95f319d33a4b187c41", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cbe68a7493e7a579710bc6dcd8252b3", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9be347f82629921266110555a37fb42", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0c4c1523ace20b3e2aaf3862d4f84a5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38d34c68a430ed6342b073b379356f6d", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e967bb696fa90950ea250b6019c7fe1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d17bd2cf82f04168d611ae91f1f91102", - "notes": [], - "params": { - "message": "--> Adding EEW" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4f7e712e2ba0c98a9d750401aff775b", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0ef8f33af4c8a42e7edee05ce002394", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02e65a732c9e3f5b8d9570ed3ec55d2b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 10.049999999999999 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "323e6dd982318636eaab97f97057debc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -38.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.34 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "369dc54ab4c420f920e4d7d3104465df", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24cbd9e769704c1587158b776b4ecf29", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "162ba53336b4b6ba986ef08e42455690", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c901e6dcaac49f2aea9e23c63d48c2f", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb30e88484fa5fb4da6947c0d5033f1d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a5eaf1d79032f92108bce2ed23d2831", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60102c7dfb668724f567fa3adc1f6c7e", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9d547e3b71da9e7ad442d8fa5b76d95", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fde5ee8b61fb5e4abce4ab07903ff3d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9244fe85bad80ca3c0bc75db1c449574", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "929a188194fc25a2f5ee0105f00a9894", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 76.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cb27873bc62ce034844ad3f3415a5f0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6feef03144631358fd7e3ee355c0efd6", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c5db0219e4cc167d7952f5fd869cea0", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c059b1ba28a72bc98eb7b8c5ecd08ad4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b61c6b1270a476bbe013f2710ead24e2", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6cb9e59d6841de19bab0367b23f80d6", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e65004ec69d3dd682ee5c3e1c3397404", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_X = SCP_Position --> TRASH" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78d952c0fafdbb905e9c2d75ce01dd7c", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5346535a274a6a263077a9a3ac88d8be", - "notes": [], - "params": { - "message": "DISPENSING: tiprack_200_XX = #5--> B4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "flexStacker/retrieve", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c238ab901e5ef7aa3f8fe33784b39f4", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "labwareId": "UUID", - "lidId": "UUID", - "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", - "lidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originalLidLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "originalPrimaryLocationSequence": [ - { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - ], - "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "primaryLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70b4bbd933fcda8760313db6827cce44", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID", - "lidId": "UUID" - }, - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20adf75c90f8c8b2460c426e4afabc86", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_XX = B4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8758f09c0e147733dd7ef2db5c7f1de1", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a704b5e3e1e4dee8604adddae70ff0e", - "notes": [], - "params": { - "message": "--> Adding EEW" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67b0ce2e538fe55870c2617a91e88bff", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e147eb060b4280178cb3b0b9b4120fae", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9253eb5ff78dfa869a6ccc3fb2180599", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 16.63, - "y": 178.99, - "z": 10.049999999999999 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d925f42f49ef159a6b3ca939cb2cb36f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -38.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.34 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2a1e521265dd2a16ed4afbfa63fc694", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de0a68c88ed6989f0c89dd4c8d18b9ac", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3815511b6e3bcb18676f12adc1e204c6", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "567a534bf9ff35b2cb9a6bbbca01382e", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9ccf90b2e027dc52abcc11601426497", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf6acc6abab850db5aedf478be6d6dd3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c2463cd70d6deda7384dfc46119ce64", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7c34c4dc806ec95f91835c7f6c39b72", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c03e5faf52ef0f43354808128087e70d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a72f3df7e9ecc9e21286e3ebf42393e6", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dee1eadf64e70b2505c11bf3c82da074", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 76.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c651b510e83967b3924191b23a934a95", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5671fa8f4cf4cf9694b1878e1c27c2d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecfb4395551e694526156ee9da221572", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9431128befef585002c11100d30531ed", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "776476c0301329bf966bfc31666345bf", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d8920f6f36b240ed8d0283eaeff1460", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5ff9c90302cea486523012c567ae5d0", - "notes": [], - "params": { - "message": "--> Adding EEW" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f47042cc2bf876a95cd6ee0982e22965", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8ffb18687742f37dd2a4cc151740ae5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d73c90931fc62ca7e211299bf02d5c8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 16.63, - "y": 183.49, - "z": 10.049999999999999 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97c925a50536faef69afaa980f457880", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -38.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.34 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f29435978c05dcf21f9dce0eddf68b60", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "288af55bc459c48a1872a9728d06083d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47715282c2fa0115141224fc6c366544", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dae1b0a9779a3b1a408e3cede2d43ef", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c117800c2c4af0ec0d2689c9824d201", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2939e902163cf6c8325eda1a18334e28", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0109e437b665a7ae014a3a062476d91d", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40222c05092999522138132e38dfdff0", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74ea57a8b5921e27c666de2d2f142bdd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4ec3a340ba36267f9750ccfcdea1ad3", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51f056466e333fc7ac16d15a6e76e8c5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 76.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "033442b267bdad16008244dfe9e8489f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d4593e9483c2aa727e29069801ea015", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "febc7d2ec554a2cfbfd4a723620557e5", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca968bcb9affb835c41db70b58f033d5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1db17c82775299d0d239729ebf8d0be6", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ed7f0b0e1ffe8946d3b3b49f6d1ce1b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8776ef16adf61d6cc6eefbf8fb31a3e4", - "notes": [], - "params": { - "message": "--> Adding EEW" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6decb7411d4048c61b611994c4e4848", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "086c4b14073cc4c7e67bb08a4f61ee7b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "653be72be2e95fdfdb04dca92f961dc9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 16.63, - "y": 178.99, - "z": 10.049999999999999 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "816b4382e3bfa1b6194cb1a2a1bb6f54", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -38.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.34 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6abd05e88064c7c4d56f00988f542505", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6e6bf80b975dc69f42fa915c80b9f4e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e07416f5d60d9b490917b4735fc255a0", - "notes": [], - "params": { - "message": "--> Transfer Hybridization" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84b2ae821dd17bc1963358e691404e81", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "faab1d12ff6c1c7593e671d79d19ba24", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fa203f5f77d8d2104a9eb61d19b56dc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.59 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "275376711cf6f4d537113f2cbfd36ece", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.59 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b116a9b97b7c63290050444eccc8791b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e49f6554e9fe4ea687953c6171ff02d", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51a52bdcb25fe48e65fa33b47ff025f7", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb2099e0a4caada3c95867a42e64a39c", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bdb07d57f1e6e176d060801a8e21761", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a08ba787192cb0826defbc20a49811c0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6f60f89c6338406da38453267cedfed", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01b2ed9f2b7a86e9caaa278c5b81e223", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cab4ae3dd69df7a944cf84a82882f00c", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f73671d12b956a325137ca99a7394b5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3158bc67e989ed310e28dcfc8b9d774", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "777c1629d4c986ae5a248821ca1f16ce", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 76.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20aaa0a72c104f7434dd9fc6058c86e0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51da3e09890c4bc39b415ea119b5ec36", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "385b0b627859349fcfd2a1ca3597fb93", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad5dd598327fef096daf972b886aed19", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c2fefb436933dbe80323a00f4c34b61", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1657ff2fab302f2824b6e77d9ee19db0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90f20116101040f2228ea5f7b46dd2a8", - "notes": [], - "params": { - "message": "--> Removing Residual" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5e262ae4b581c90fadcd552d0ee94ea", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46ec533de9e5531daa98af8515b9c4ce", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c90154f1880c3686b7d846164852ac04", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.64 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "873593d6116d4bb4c6fc7f4fc9143b0b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.64 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75f83808dffa831b420c4e9a5e574068", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95b4ace04e575e8a4cf016578a9b8851", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02545ebac92d500d5a0a1014d0a07ec5", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efb87be0dcd64f6a71b75df7c566ac3e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d714903f00578ccaf147b5351c304c4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76b34e15378c120e345d7f40100514f1", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca9009d234ee1b7c3670ad3163981577", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fecd84b1644402c70408eacce0d2abb", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5106ca48ab86231588961ea52f2be4a2", - "notes": [], - "params": { - "message": "--> ELUTE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "758c105f07287faecc0d49ebe57da256", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b58647996ade91d7066e91c1f0846d8b", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_XX = SCP_Position --> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9d68c3db46f2260cc82a5a4836eff72", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ecaacaea0eb7f6d94ee7ce1b265d964", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_X = C4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "642f588132e5d2822e958943c50939a9", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1C4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28c40b4411386fbac78d569c5d8ff74c", - "notes": [], - "params": { - "message": "--> Adding Elute" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98345399bb18662a25ca98389301b712", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0fdfadd88601b1484d2bf5da070ac52", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02903c46c0e14180eae4120b7738311d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.05 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A22" - }, - "result": { - "position": { - "x": 106.63, - "y": 183.49, - "z": 10.35 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae06dd6295d9903757d96036a69d1275", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.64 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ff785e9c3aece79bd44e5510fa1fc5b", - "notes": [], - "params": { - "message": "--> Transfer Elution" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5286e0df27ea5b3085c33ce1d5057ac8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.64 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "717583b40cb9a6df112daac317543072", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 22.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.64 - }, - "volume": 22.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68131dba01d661f1472c4af32dddac83", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 22.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 22.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e631ef77c4c28144d346b9dba96d909", - "notes": [], - "params": { - "message": "--> Adding ET2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d012826801a88693dd5956f5183a5a3e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 4.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -9.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A20" - }, - "result": { - "position": { - "x": 97.63, - "y": 183.49, - "z": 10.049999999999999 - }, - "volume": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb58ea6db80641a6889b8a56ff3608f9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 4.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 1.3100000000000016 - }, - "volume": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "318bf3b6ea108c5dee0608a31e2ce948", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 1.3100000000000016 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f5122bf3b4037a3dff8949b1ec40675", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 1.3100000000000016 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02a1c6c18967228fea33690f53e71f97", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 1.3100000000000016 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0dce7b614d358159fe512ec13b2a9ea8", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0918ff096865ca78f173ac1e3914d42", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f59bc33dd04df7bfa88fd4250752af99", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62045c9bca10b10fb698b9d8f9af3d90", - "notes": [], - "params": { - "message": "--> AMPLIFICATION" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e455dce504bde4414938b47374b55d21", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b38333830d01ef4608c2d13885f5400", - "notes": [], - "params": { - "message": "--> Adding PPC" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a768ab7def4ae433aa54409c1f656a6d", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d437f920a45db293ca677272bdb05068", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2391aa5c5e74ec3870508f4060b210d8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -8.850000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A23" - }, - "result": { - "position": { - "x": 111.13, - "y": 183.49, - "z": 10.549999999999999 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e7fd26b59e46c2fe886dfc07e8a1256", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 1.8100000000000016 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f391c05b0e80d72533faf64d9e3e4134", - "notes": [], - "params": { - "message": "--> Adding EPM" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca6a930bc8da3c96f42dd8c82b824a9e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -8.850000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A24" - }, - "result": { - "position": { - "x": 115.63, - "y": 183.49, - "z": 10.549999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d649627280d9ad31bbbb5d8375f7c98a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 1.8100000000000016 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f9c7132d7b47c55c31a340002fe6e66", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 1.8100000000000016 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e9b5f99d3b11925b93c4d783c73ac46", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 1.8100000000000016 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd7085d8da4c9739e6842b07477dd8c9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 1.8100000000000016 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78667db1c16d872c47027ccbf5792c32", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "446925c288e5a313f71e3fb16e304a83", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b64b2b2508432806f221944100b6800c", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f9114d346cbef1ff0b40b19b28dc680", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8970b08c547af8de57574c6109bc7235", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "524f50f3fbf3bc1be83e2f11a572fa67", - "notes": [], - "params": { - "message": "--> Cleanup 2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "945d03737f7e3f9d4b0bcbe9ddad14ce", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8d2010a29947bb91ca2882764dd75b0", - "notes": [], - "params": { - "message": "--> Transfer Elution" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6431b9db1db3fbccd478e9438ccbda36", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A1", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9eae1a5db2d443736b1069c932adc2d0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f95ce9e7ee9cdc2b68bf28ea56f716d6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 1.8100000000000016 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4383745605f09f0638e628716160a240", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 1.8100000000000016 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33869aff4b77e66fc8155e1bea97a4e6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b405dd86835ba28c65f225d45200d297", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6b3e3757c1364f70f6b95b8fa63589d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b22231ad3a09b499a9406d8d997ebbb", - "notes": [], - "params": { - "message": "--> ADDING AMPure (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18569a5df3d73ca1a4da4de81a0a8616", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8caabbc231c49bc653b1d902e42fce61", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b02dbde87c42aa1b0a269d88f08fe19d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -8.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 2.049999999999998 - }, - "volume": 40.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "078fec89fc80aa8f8c383d3fe05381a1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -8.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 2.049999999999998 - }, - "volume": 40.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3b7146077853be19de4c20d8688a7b9", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -8.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 176.13, - "y": 290.49, - "z": 2.049999999999998 - }, - "volume": 40.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d1d4ddd2b5e04e01b08c9fefd1e1fc9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.5, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 40.5 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18bd55eaf0c17d5128900be9b66b74eb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 43.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4220e325d8b7d902e9f4ac59857b0b25", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 43.34 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2a6131f6bfd55d609092d69d8ebae27", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f7956a361d2770f7f411d2e4b93dcb7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec37893ecb40c229ba698cb3b9425763", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7845050408f6b0b90c4b74ee1cde5a4e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 43.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6781fab38692446b3f991384a823f363", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 43.34 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf3931d2f78a84e81ca1b87fd2d4adce", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 43.34 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3dcb57b2b970ea910be115403398f37e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c46c6e590ccbbbcb312c119206eecaa8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4119d433d99d408bd16eba73c3f92c00", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46093df3a2650b963a5b2f69456124aa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 43.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e1d3df31e7219104124cc7e79359335", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -33.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 43.34 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9155fd22318ad604018bbffc9cb44c45", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d2bd78b11866030876274ac7187b6cc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5786d0d984789ccebb22241374839c37", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e967941b96bd30835f124e64bad8817", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca59d1457a1ad7c7cdb72d205466e24c", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b640ca134a7e1c2bf4655bb788ac856", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b8b87eece61a8e351e1a4ad52572d08", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_X = SCP_Position --> B4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a894680a7e13ad019f411bd457f246b6", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65a79c2f8a0d1a03337aa050d5e329af", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_XX = B4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c8f8b5a24c997e9843d000ce2acfc63", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77e852e25c2d4474947c61c35ef61aab", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d88e1ce3107be2abd1d525853ac58de7", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "869188911152eae1884c9cd53275f8b6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c991d9fcb940faf17a12123098a0c43", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70df9fb5ddcecacb506e7fe571225680", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c0e20df80a2286c11c54658fe4db209", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e86b9cebe959e1167b7fe28431f9d9aa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce0b37da0bdb7e8c6080eebe8fdb5f6e", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8531d1670c2bf7c885acfb69d86d17ba", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "240365881183e2149a9c1f27e75631a8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d99e40c9b00cb0b4405c296519f4e323", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc65128c3dc2542aba1d0488402bd06b", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4225e4ed8a87a820d7c16b8df0cdd48", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8937e449b4a4ebd47f1bc80c1d662b5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9a94be1a2626e5009ee19cf6723816b", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2391f6a333e27568d827eb4af923b773", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee1efbe84f57002d8036fc09704138cb", - "notes": [], - "params": { - "message": "--> ETOH Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "980064900486bc2883886cddc333c9ac", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bdcd564d2bc32603a8d68edab788024", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c16036a83216f93e2783b8b13e07dc6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9bc8eb6a509c286aae8d0c4734f683c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b3f155639d3a64bd4baa1945a6fb391", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53ab33949c62bb21fc0e59000b5c4ccb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9eca5997e8af057cfe4b5b43a6fe0c48", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf128aa421a0cc02e74c8d1461e7b746", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 74.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57e1b773911a6dd9e59a4802ef41a673", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d8a197ba01ff22fc459a90579b40971", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d11468ffc41b5b06bcb5d23d13b1e0af", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12b4df8193d3601c0a24c5fbb1396cf6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41e18edfd7384390794b0959f78aea21", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7042efe19167ff70108e59c4f5193928", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2c4fe586f9c24fc4ce3c79dac91d7dc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41163772e68f110a0dbce352851d6c13", - "notes": [], - "params": { - "message": "--> Remove ETOH Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d10e06bfa4f73c486906d68e08e2cc9d", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f11ac7cef7c262a3cb2199b2a1bb9e9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58dbf6c8dcae03bb4cb9f54da37461f4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a19a03d4466dd51799c7df252bf3457", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5743507893acf88e48a1557fae4d6fea", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "983b4327b341306cbb2d9909b3d5e5cb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9c1b0cedaefc61d66a9b2a93cdbcc93", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c05a6c3f2012065f939e06f4e5c3816", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f68db3514abfc41f92c967d3181293a4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1051f1bb856d3ae591825d194f6af4ea", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81ec689157ab8dd8137447fa0334bd2e", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92ef4430937dbd6d2a0b5b1bb67a47a5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48363b846c9d6f10993bbd1138ef29b7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41199ad684bbf67e3d986bc44b51dfa3", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8380ae31801d1977e3069b6488c3a2d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48e3697a6d46c83388f02912ff3fbe6c", - "notes": [], - "params": { - "message": "--> ETOH Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3be6a1f4fe87f38e8bddb966fd2ec5bd", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a991df2175f5d6bf119a9ceb452598f0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c197cf7110317be407338369c7910a31", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af0693ab7ee636eb1b05a18459e2e60e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fab798dbe28f7cfe142a38bc99aa552f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d76862a390bc0a0eee659aced0b21be", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d48d1128a314d74c7086bb1b92a5e522", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f92676c36d0720e6bc8414d0c99da9c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 74.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa243732afc12ff56c22eb8fe6887bec", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d606d493c9d40b4f770060c8391bf70a", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae6c83b50982c8eeee33b956d73fe2c6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fa175d1a979b5cb3682005cbbc97d77", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f516016381b943d4c3d1677b1d25abd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d78e27007f074e21f92f3436dddad201", - "notes": [], - "params": { - "message": "--> Remove ETOH Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a290586716e9352718c19d38676ccf7f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a79e7dd55247691aad2a827e89df0a8f", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d016b69e6a7d2bc89a19075eda2d931", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d34dbf565858a04b393be4d6f81b943", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef7b790631755c833a742e38a4240e4f", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "657289116711f671a21f621f32afea59", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74b6e223e6cfb24220241ff8e44742e0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4dc9d7a30dc1e870f59725afb53af84d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34eecc902162e8123c2979ea6cf7bdde", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55b322ada8ce2d15846c32c34737750a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -7.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 34.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a53a1bd96642ecfcad20d25eb2e20a1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6e5609c741b4c174df212455b2c6a86", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d47692abb4463f0e8ec26bad08fbb682", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d82c5237108125bdcb24d4f1ac139d82", - "notes": [], - "params": { - "message": "MOVING: tiprack_200_XX = SCP_Position --> A4" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb1275efea6baa5868fc35bf79ab3b5e", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1A4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "617fca793cd1b704e94ec78324beba3b", - "notes": [], - "params": { - "message": "MOVING: tiprack_50_X = C4 --> SCP_Position" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10aa5356874b9cfaacf285a789f7ab78", - "notes": [], - "params": { - "dropOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "pickUpOffset": { - "x": 2.0, - "y": 2.0, - "z": 2.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "flexStackerModuleV1B4", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "flexStackerModuleV1WithMagneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1550c9ee15923a9e578b3b668de9771", - "notes": [], - "params": { - "message": "--> Adding RSB" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "configureNozzleLayout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21f92b35ca36405688e5f005890927be", - "notes": [], - "params": { - "configurationParams": { - "primaryNozzle": "A12", - "style": "COLUMN" - }, - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35247b381b52390d6badb34ff1bd33db", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.4, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cae2b209399a1792a54d36b55e7fcebf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -8.350000000000001 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 34.63, - "y": 183.49, - "z": 11.049999999999999 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "245c5012174402390f0a0215ffc413b9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.039999999999992, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 188.34, - "y": 74.15, - "z": 53.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19f5d0ea128521f7f0dd49ebb6b8a1ef", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 1.039999999999992, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 188.34, - "y": 74.15, - "z": 53.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02e493bc527aef6a1b26fb693361041d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c448a11f519d6426f76953c8a39fbda", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "429866e65edbcf56df73592e2f35cb9d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 75.19000000000001, - "z": 53.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf639e0b7136bbeea5d8695143e37493", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 75.19000000000001, - "z": 53.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1d6d9bde8f350dd6daf4d2e0d62c527", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f6da34cee8ee20d628e98bdffe28e2a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed2553789153d41ba428f4d768a71a96", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.039999999999992, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 186.26000000000002, - "y": 74.15, - "z": 53.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52a21f07425877dcd290d413ae965d2f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": -1.039999999999992, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 186.26000000000002, - "y": 74.15, - "z": 53.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7a19c363830f00c10d8a91f344b9900", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9e6f33d95fc4a78a09b199e1bd0115d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae7c77c2b7f573259ade13aec1bbed65", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 73.11, - "z": 53.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8af1f25441c628aaa62d0f24face50f4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 73.11, - "z": 53.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e3007922b53b6b0e8b3288e20bb094f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5bb30c80c75ca07e1ead37fa2ded07c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a58b1fbb7faa50e68fd63434b6cdcd7c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7eb3395edbda462c59bb6bb057fca6d", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 57.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5382a3b847192dc2f14edc1965f8ded9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f877cab90ac547ea157957e803b3013", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27fd0de2ccab1c1109ccf80f3c2228db", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6647b0d198a51a59d7ca1e51f534dd92", - "notes": [], - "params": { - "message": "--> Transferring Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35fb775a57918bbb7d070748a75b3dfd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "524a3a83a98e442e184919aed9919f6b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4a5b238efe6c18427837daa1371f82d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9192af0629b19d005e73998eea8b538", - "notes": [], - "params": { - "addressableAreaName": "96ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 391.945, - "y": 10.585, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1798738a4eafd06c315dba5e481a73d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 25 - ], - "protocolType": "python" - }, - "createdAt": "TIMESTAMP", - "errors": [], - "files": [], - "labware": [ - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/4", - "displayName": "Sample Plate 1", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": "offDeck" - }, - { - "definitionUri": "custom_beta/stackable_opentrons_96_wellplate_200ul_pcr_full_skirt/1", - "displayName": "Sample Plate 2", - "id": "UUID", - "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "moduleId": "UUID" - } - }, - { - "definitionUri": "custom_beta/stackable_opentrons_96_wellplate_200ul_pcr_full_skirt/1", - "displayName": "Sample Plate 3", - "id": "UUID", - "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_adapter", - "location": { - "slotName": "A3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/biorad_384_wellplate_50ul/4", - "displayName": "Reagent Plate 2", - "id": "UUID", - "loadName": "biorad_384_wellplate_50ul", - "location": { - "slotName": "B2" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/protocol_engine_lid_stack_object/1", - "id": "UUID", - "loadName": "protocol_engine_lid_stack_object", - "location": { - "slotName": "B3" - } - }, - { - "definitionUri": "custom_beta/custom_opentrons_tough_pcr_auto_sealing_lid/2", - "id": "UUID", - "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", - "location": { - "labwareId": "UUID" - } - }, - { - "definitionUri": "custom_beta/custom_opentrons_tough_pcr_auto_sealing_lid/2", - "id": "UUID", - "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", - "location": { - "labwareId": "UUID" - } - }, - { - "definitionUri": "custom_beta/custom_opentrons_tough_pcr_auto_sealing_lid/2", - "id": "UUID", - "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", - "location": { - "labwareId": "UUID" - } - }, - { - "definitionUri": "custom_beta/custom_opentrons_tough_pcr_auto_sealing_lid/2", - "id": "UUID", - "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", - "location": "offDeck" - }, - { - "definitionUri": "custom_beta/custom_opentrons_tough_pcr_auto_sealing_lid/2", - "id": "UUID", - "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "C2" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": { - "labwareId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "lid_id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": { - "labwareId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "lid_id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": { - "labwareId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "lid_id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "kind": "inStackerHopper", - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/biorad_384_wellplate_50ul/4", - "displayName": "Reagent Plate 1", - "id": "UUID", - "loadName": "biorad_384_wellplate_50ul", - "location": { - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/4", - "displayName": "ETOH Reservoir", - "id": "UUID", - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "slotName": "C3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", - "id": "UUID", - "loadName": "opentrons_flex_tiprack_lid", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/4", - "displayName": "Liquid Waste Reservoir", - "id": "UUID", - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "slotName": "D1" - } - }, - { - "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/4", - "displayName": "Cleanup Plate 1", - "id": "UUID", - "loadName": "nest_96_wellplate_2ml_deep", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/4", - "displayName": "Cleanup Plate 2", - "id": "UUID", - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "moduleId": "UUID" - } - } - ], - "liquidClasses": [], - "liquids": [], - "metadata": { - "author": "Opentrons ", - "protocolName": "Illumina RNA Enrichment 96x Part 1-3", - "source": "Protocol Library" - }, - "modules": [ - { - "id": "UUID", - "location": { - "slotName": "B1" - }, - "model": "thermocyclerModuleV2", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "A3" - }, - "model": "flexStackerModuleV1", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "B3" - }, - "model": "flexStackerModuleV1", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "C3" - }, - "model": "flexStackerModuleV1", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "C1" - }, - "model": "temperatureModuleV2", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "D3" - }, - "model": "flexStackerModuleV1", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "D2" - }, - "model": "magneticBlockV1" - } - ], - "pipettes": [ - { - "id": "UUID", - "mount": "left", - "pipetteName": "p1000_96" - } - ], - "result": "ok", - "robotType": "OT-3 Standard", - "runTimeParameters": [ - { - "default": false, - "description": "Whether to perform a dry run or not.", - "displayName": "Dry Run", - "type": "bool", - "value": false, - "variableName": "DRYRUN" - }, - { - "default": 4.0, - "description": "How many PCR Cycles to for amplification.", - "displayName": "PCR Cycles", - "max": 12.0, - "min": 1.0, - "type": "int", - "value": 4.0, - "variableName": "PCRCYCLES" - }, - { - "choices": [ - { - "displayName": "All Steps", - "value": "All Steps" - }, - { - "displayName": "cDNA and Library Prep", - "value": "cDNA and Library Prep" - }, - { - "displayName": "Just cDNA", - "value": "Just cDNA" - }, - { - "displayName": "Just Library Prep", - "value": "Just Library Prep" - }, - { - "displayName": "Pooling and Hybridization", - "value": "Pooling and Hybridization" - }, - { - "displayName": "Just Pooling", - "value": "Just Pooling" - }, - { - "displayName": "Just Hybridization", - "value": "Just Hybridization" - }, - { - "displayName": "Just Capture", - "value": "Just Capture" - } - ], - "default": "All Steps", - "description": "Protocol Steps", - "displayName": "Protocol Steps", - "type": "str", - "value": "All Steps", - "variableName": "PROTOCOL_STEPS" - }, - { - "default": true, - "description": "Use temperature module in protocol", - "displayName": "Temperature Module", - "type": "bool", - "value": true, - "variableName": "temperature_module" - } - ] + "error": "Analysis timed out after 120 seconds" } diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4101d3312d][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_distribute_liquid_Override_50_filter].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4101d3312d][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_distribute_liquid_Override_50_filter].json index 45415e6b7bb..075b6f55d74 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4101d3312d][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_distribute_liquid_Override_50_filter].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4101d3312d][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_distribute_liquid_Override_50_filter].json @@ -5419,11 +5419,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -5643,7 +5643,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -5653,16 +5653,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -5980,10 +5980,10 @@ "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6046,10 +6046,10 @@ "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6098,7 +6098,7 @@ "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -6140,12 +6140,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1bd1d804cfbd3f22633e3fda44e5a07", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a69a5c7acdcf4c0c3ecc848077be4d2e", + "key": "1e950c43f02d3566e3677be25de77062", "notes": [], "params": { "pipetteId": "UUID" @@ -6159,16 +6174,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b656345142c00077e6e63b58031664a7", + "key": "2683679857100b15b2931afa39facec0", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6178,7 +6193,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3cf74f7a301b3f147475a0c785b0c441", + "key": "24499f5b348bff8451d0af3e2017e071", "notes": [], "params": { "seconds": 0.5 @@ -6192,7 +6207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d631bd752cb0c0bf68116b35f3bc6644", + "key": "8c7085aed9c721a935ffa974ac9bb056", "notes": [], "params": { "forceDirect": false, @@ -6224,17 +6239,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "210b54a76f3fbc3cbb725d55bbf52cbc", + "key": "db86f72291440ef416c0b6d80553f3fd", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6244,7 +6259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9095243ccc0e87a5a82309c7558ac13f", + "key": "5ab68ffbdb7e0f83e1f89d3a090c781a", "notes": [], "params": { "pipetteId": "UUID", @@ -6260,7 +6275,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae27f797828a0d263276b27fd5c4b024", + "key": "ec0b4a84fa133a41595be38b5e498c4a", "notes": [], "params": { "pipetteId": "UUID" @@ -6274,7 +6289,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ef6347e677793d726ada0dfdeba795c", + "key": "94aa1524444010703fa6fd085ecc3ff8", "notes": [], "params": { "forceDirect": false, @@ -6306,7 +6321,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9b3d5e78dea684a1ffff0f2dbee1e01", + "key": "73b97dbe583b72d3f132ad975e5b80d6", "notes": [], "params": { "forceDirect": true, @@ -6339,7 +6354,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20eb83450047146ec97bbf53f2aa6844", + "key": "5c9a33ff099fedaf9b94239c6e3fe3d2", "notes": [], "params": { "correctionVolume": 0.0, @@ -6358,7 +6373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c9197582ad96a4ef09153c814367b3b", + "key": "3606076e37f5b23a5f56f2f1345b4594", "notes": [], "params": { "seconds": 0.5 @@ -6372,7 +6387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37a831e54cc7fc1f14ab4811b7e30096", + "key": "fd81a626d85b8ad192f9d7fcc4ae52a8", "notes": [], "params": { "forceDirect": true, @@ -6405,16 +6420,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dae9973749156c927fd1c3a16aebf433", + "key": "edb92e11b0c223f8782caf4d5296b9b0", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6424,7 +6439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "306ae3d76da3250818937c10a6fd6587", + "key": "72fc8ecb29de5625322c60e8119c6b5a", "notes": [], "params": { "seconds": 0.5 @@ -6438,7 +6453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27c2bdc802b1292f8a6119d974a824e3", + "key": "59cac71fc9f5c6bce4b5379627f12a8d", "notes": [], "params": { "forceDirect": false, @@ -6470,17 +6485,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9b00c17139e0d884af174dedf2cd2d1", + "key": "0229870aa6de9723d2d37a1efaafffc9", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6490,7 +6505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ed6541a07e2c309e768d524fcb2362f", + "key": "f124f007e1f7f17dba56bc6a759ad295", "notes": [], "params": { "forceDirect": true, @@ -6523,13 +6538,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bba406211221c6e82d95a8bdf9fc777", + "key": "008c6c9eeda1f9bcf208cc367331bc63", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -6543,7 +6558,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6069c9ba2cf28ff363e63e490eddd7b0", + "key": "00e8147602e827a82afe386b0199c879", "notes": [], "params": { "forceDirect": true, @@ -6571,12 +6586,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a74f1d82e89e45f17c24da219edc0424", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e44c3a2802abffac120024ed8c19ccf4", + "key": "bd2bf48904078b31f8d804a909d764d2", "notes": [], "params": { "pipetteId": "UUID" @@ -6590,16 +6620,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f04025a0c55f9eae9c18e5e9a9ab941", + "key": "3927491fe4796efd2d8c64535d8b93fe", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6609,7 +6639,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9ad62530a6e1a5e3e8b7c97effedb70d", + "key": "46dfd2e324de79fa0e8b8b404fa8a612", "notes": [], "params": { "seconds": 0.5 @@ -6623,7 +6653,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3fbd1555c4b16648af6cd5d2301ee657", + "key": "b4fcdbcbe275052268147db32d048b5a", "notes": [], "params": { "forceDirect": false, @@ -6655,17 +6685,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0161d6650bf40de09b59c15a6a042f1b", + "key": "4d5838503731537c894e2030a4f99d86", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6675,7 +6705,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8be04d10ad06fe03961a3a3d63311cbb", + "key": "39ae86008ba9818c701a73cdee259d50", "notes": [], "params": { "pipetteId": "UUID", @@ -6691,7 +6721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "17171a4797f2ab06eb56256f19817174", + "key": "1fc3b70938a3d69be511309ba16f7195", "notes": [], "params": { "pipetteId": "UUID" @@ -6705,7 +6735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "058990f5375ba57d0d85a520c3a67809", + "key": "4c90d29f039db7c7e1185677f6e4da6b", "notes": [], "params": { "forceDirect": false, @@ -6737,7 +6767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed5554aaa908620e4ffe49b32e3dc10b", + "key": "504c80d9b9e8697c0f78eeca02a483de", "notes": [], "params": { "forceDirect": true, @@ -6770,7 +6800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf3107f88fa4a7d947f6bd21e5afa9fb", + "key": "2f771ae6a611616370f5ff7cb885af39", "notes": [], "params": { "correctionVolume": 0.0, @@ -6789,7 +6819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30b19f6002c113a3bad89edb9cd3c01a", + "key": "7f9ec3f94bf1ba7fbdc7159be277e4a5", "notes": [], "params": { "seconds": 0.5 @@ -6803,7 +6833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b1bd8b7b2432a1a567c01700a0dba78", + "key": "cc70a4e9a063f2fe9b1f441b9af8a973", "notes": [], "params": { "forceDirect": true, @@ -6836,16 +6866,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20029bb6cfb9c2fbc3736a04ae862c9b", + "key": "034715ff7e73225bee977e2af5857469", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6855,7 +6885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e333a747c7bee8398947d4b2ebd8344a", + "key": "202bf64537e4d99978ace8a10eb68c17", "notes": [], "params": { "seconds": 0.5 @@ -6869,7 +6899,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c62df267cb132e62ad604895a5d7e5c", + "key": "aa3dc897ffbf591e2560d1cee093d079", "notes": [], "params": { "forceDirect": false, @@ -6901,17 +6931,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18480eb46acb3745cf0e9d08621ebe5e", + "key": "d26d0779af2a7405ce34e02220551ead", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6921,7 +6951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "081e909d05a3395f7c15db1335ef1ba8", + "key": "ff626d9cc839e9d83fdbee9c7fc7c1a3", "notes": [], "params": { "forceDirect": true, @@ -6954,13 +6984,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9657de12e59f106de46c52f9b503b0aa", + "key": "c110602714703841b0979bdee50968a8", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -6974,7 +7004,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95e584114d1990afec95d947f9650fa3", + "key": "82c83e5d2004ef79e379152501001bc5", "notes": [], "params": { "forceDirect": true, @@ -7002,12 +7032,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b585e4359762264f6cfba0ee1a4337f9", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bae3ab02fd1b8e3b3858d1534e4bd59d", + "key": "3a88296471a3b6ca6b275674a3abb458", "notes": [], "params": { "pipetteId": "UUID" @@ -7021,16 +7066,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6232bec3f18bc68282e5aff0e0950a97", + "key": "969a51d216abbb18c03b952dee4ae532", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -7040,7 +7085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4c6651555a530c020c26bcf9c2e2970", + "key": "20dfe5174e6f9dd36bb47b6d434ad4de", "notes": [], "params": { "seconds": 0.5 @@ -7054,7 +7099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "819ab777df3139a510f05b2e2b54bf1b", + "key": "ec449e9cb16c70cb37a11322252b5bdc", "notes": [], "params": { "forceDirect": false, @@ -7086,17 +7131,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6517f58cb1ae5c67169e76dfba8de210", + "key": "7def3aecf7cadd1307797d01abd2e77a", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -7106,7 +7151,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0c18b75d31bd5075a9c48503825b455", + "key": "1a5f4bf06cfa959648f599fd1bd10ff7", "notes": [], "params": { "pipetteId": "UUID", @@ -7122,7 +7167,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15191a847a0298ef205fabe09d2af8cd", + "key": "8963ed335871c24d9b4b0347e9a20656", "notes": [], "params": { "pipetteId": "UUID" @@ -7136,7 +7181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4db0d9cc41ab89c3943af0529b48e47d", + "key": "2671761a6701c03e61161b0f56c42bec", "notes": [], "params": { "forceDirect": false, @@ -7168,7 +7213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac6fe0f85345e53cdaf63ca0aae16e84", + "key": "797ac1b5ee26e533f02175f78c400ef5", "notes": [], "params": { "forceDirect": true, @@ -7201,7 +7246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8bfbdf0949e4ccd60b0fdacc29930193", + "key": "19f23a18ee05deb12683789726ebcaa7", "notes": [], "params": { "correctionVolume": 0.0, @@ -7220,7 +7265,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43dcaafcc9dbf1d2d94103885b603ef2", + "key": "5d22cb569e3dea129377bfde44bd036e", "notes": [], "params": { "seconds": 0.5 @@ -7234,7 +7279,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd3aa8f8cd7852b99af37074c192faa5", + "key": "8fef48553dd7ca28fe72f1bde94a99ef", "notes": [], "params": { "forceDirect": true, @@ -7267,16 +7312,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "248ee95d9a30d65775051a15eea60fde", + "key": "46f4a998c09ca259a23916d3324cb0f4", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -7286,7 +7331,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8d6e2458f1bd2af7a1f98e477c9c275", + "key": "eda1fa0cc3c7e8ada7c2ef0c19a0c4eb", "notes": [], "params": { "seconds": 0.5 @@ -7300,7 +7345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d36afb18e640bb7b5aec9fd723be3491", + "key": "c9d117df43a354b314993db65a02b029", "notes": [], "params": { "forceDirect": false, @@ -7332,17 +7377,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22d132ce639fd0dd03801eddd8c786e5", + "key": "b8c864ae007c6648b23b5419e0b05638", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -7352,7 +7397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "68d564afaca3f0ac9e4753762a662aeb", + "key": "4d522af309d165c7355f8a224197cecf", "notes": [], "params": { "forceDirect": true, @@ -7385,13 +7430,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4c26821e825db395f027510787c5a42", + "key": "ca41539145636b943af2cfb6e65c6c58", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -7405,7 +7450,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89a945cafe52ae22db24f4d10316a207", + "key": "b57b94f5789d37b790bd7004ef1c3e81", "notes": [], "params": { "forceDirect": true, @@ -7433,12 +7478,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2c0980ed83cbf6c81c7b7ed9bd25f7c", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26aca7ac06d8680350dc8b3b3a9544e6", + "key": "f772afbfc77cf43a2047d80ba14a54e3", "notes": [], "params": { "pipetteId": "UUID" @@ -7452,16 +7512,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb78f74a8910f8064c5bc30a1c81c223", + "key": "5e1df6be68f5bef3280e6fc2a4590f85", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -7471,7 +7531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "064208503bc438add92964e7af5a0635", + "key": "19a01af3008c0b0834594be3bfc6e59c", "notes": [], "params": { "seconds": 0.5 @@ -7485,7 +7545,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "162dba8ac46293cb853535aad482410f", + "key": "5e4472f8a1834d557ea3111deec13a2e", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -7514,7 +7574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d1e354caa7dceff85760129736ad7c9", + "key": "6237d9d5a89b0ff30f803a448031818a", "notes": [], "params": { "homeAfter": false, @@ -7529,7 +7589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfe5e51fffa2ef8825a27549abb20c00", + "key": "18b5eff191c768103b82b67960b97dc7", "notes": [], "params": { "liquidClassRecord": { @@ -7928,7 +7988,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e97bdc6f4d4cd19891cae7f8d5bd373", + "key": "5ef30eaa9b74d24e201b59d21e0c8738", "notes": [], "params": { "labwareIds": [ @@ -7952,7 +8012,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "baf0009f8c04597ac4621aaeba376d64", + "key": "74ae198d4f03d454833ab2d8bbc65b91", "notes": [], "params": { "labwareId": "UUID", @@ -7985,7 +8045,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "489d42df4a69a60feba71b8ca722bf70", + "key": "622baa2012ac83d179e7f6694cf6ab46", "notes": [], "params": { "forceDirect": false, @@ -8017,7 +8077,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7dba892a34a0a9ca62a0ac9403812206", + "key": "c9e277c93101375524264c5665051cd5", "notes": [], "params": { "pipetteId": "UUID", @@ -8033,7 +8093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec15bb51f6577de27079474435f10597", + "key": "c250e2a726081fa5092663e18e21fc03", "notes": [], "params": { "pipetteId": "UUID" @@ -8047,7 +8107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "975e6ba553ba04e6f8e52d38248d3c26", + "key": "51433570a402ea49905f17cf5ecbb145", "notes": [], "params": { "forceDirect": false, @@ -8079,7 +8139,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba19f6398315280d00d431d1a1056af8", + "key": "5c1da61156c2f1cf0efa2d5e3148cd79", "notes": [], "params": { "forceDirect": true, @@ -8112,7 +8172,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81dfe2ebd3cc226a1a1fd633f2b36193", + "key": "8237e8d0fbe87ff33f1ead895f42d268", "notes": [], "params": { "correctionVolume": -1.21, @@ -8131,7 +8191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff9ea100c34da61255b0dade19df313b", + "key": "d080c24aef625deed9553c08b9344c44", "notes": [], "params": { "seconds": 0.2 @@ -8145,7 +8205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e70ab6f1d939a7e97111f237e18ede9", + "key": "fde32c173e26ed1838734b02565b15d4", "notes": [], "params": { "forceDirect": true, @@ -8178,7 +8238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2f0c300228469c66c177e5d700b7a3d", + "key": "64bb2ae78541886ce10621165cf159e1", "notes": [], "params": { "seconds": 0.5 @@ -8192,7 +8252,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb63537f0b6ca025eb38432ad436dd63", + "key": "96326083ad66f3f48b12f8495e3513c5", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -8211,7 +8271,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e064f29b19a5dd85e3c2c8e3d044cb62", + "key": "d2000a9e0ab26cba3489487d87147c4a", "notes": [], "params": { "seconds": 0.2 @@ -8225,7 +8285,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5c48fbcd8ddf6703406eed00c1cab2e", + "key": "5cbff930402c22a370e2581d528b696d", "notes": [], "params": { "forceDirect": false, @@ -8257,7 +8317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a78637e6afe648f1a889b7750c4eaa6e", + "key": "0b0ae92b75c51aa35ee594caa67ecc30", "notes": [], "params": { "correctionVolume": -1.21, @@ -8277,7 +8337,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8366166697fda9bdbafaf029598a9b2", + "key": "0f01eb665a1234b7477d769e4bfdd2e5", "notes": [], "params": { "seconds": 2.0 @@ -8291,7 +8351,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d776922339a01e6d8719dbe2ede8ec0", + "key": "ba6a8f34cd061c8ade0caab2e1eb069f", "notes": [], "params": { "forceDirect": true, @@ -8324,7 +8384,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "06b76b8c9d2b1717f0bda7e555075f16", + "key": "0144238291cf115b403fd7e8a6ac5eef", "notes": [], "params": { "correctionVolume": 0.0, @@ -8344,7 +8404,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ec2b6a5f58e666fe9cf6d2622474735", + "key": "c5b789fa96bdb5913173cb2664bc73e1", "notes": [], "params": { "seconds": 2.0 @@ -8358,7 +8418,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "300d73699bdd21e0ab696293898ddedc", + "key": "096dd6df2779d2097924234c779fe84d", "notes": [], "params": { "forceDirect": true, @@ -8391,7 +8451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be541ab32ed7034eff862b0aed0f70ed", + "key": "254bf280ed1be96f9ae055c188ef50f6", "notes": [], "params": { "seconds": 0.5 @@ -8405,7 +8465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2e8c3611c0be1a1387b988b8b5fb8da", + "key": "7b6a53ca2a940d91c2204cec01e37a7a", "notes": [], "params": { "correctionVolume": -0.75, @@ -8424,7 +8484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7d2a283f0f40e7a7f7d01fe8b796f9a3", + "key": "6a8e0e1e39865d0888b49b4eed3d5687", "notes": [], "params": { "seconds": 0.2 @@ -8438,7 +8498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a544f9b203051f7af8cd8261d902722", + "key": "caa87c98fc408ef24eeb6489f82e59a6", "notes": [], "params": { "forceDirect": false, @@ -8470,7 +8530,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70c944377cf20692687f30a072c4ea8b", + "key": "ff6e33d6d296de67a3ec3b68bbf53eaa", "notes": [], "params": { "correctionVolume": 0.0, @@ -8490,7 +8550,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "defd379efb55e7df9800f528b14d3a6e", + "key": "0ff2ff2632e9e52f1df5bc49a89b4b50", "notes": [], "params": { "seconds": 2.0 @@ -8504,7 +8564,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c3b9b4b73a35a2d313c8c3ff0996e37", + "key": "3aa6544da71bf2c1627db51e0b032a1e", "notes": [], "params": { "pipetteId": "UUID", @@ -8520,7 +8580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f5f42d23a21c7422fd59681787ea5fb", + "key": "4b8fb04a9b67720b8541df37568b8d0f", "notes": [], "params": { "pipetteId": "UUID" @@ -8534,7 +8594,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb41e5cd08e7306dd71a90da1d06adcf", + "key": "a78f5e6f3912d9478879a8c7f4031b95", "notes": [], "params": { "forceDirect": false, @@ -8566,7 +8626,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "601ad47947df317475ffb46fee87dca5", + "key": "bc5df2a14eeeedf279785aa599bad4de", "notes": [], "params": { "forceDirect": true, @@ -8599,7 +8659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f4c1ab7dce3d319434f3b628026b327", + "key": "5a01a04d7d21f62e5831ca6b7e1a6062", "notes": [], "params": { "correctionVolume": -1.21, @@ -8618,7 +8678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ba661555b7577f0fa14eab9c347f533", + "key": "77d793cc603bdf03e7cc0a3a0f365a27", "notes": [], "params": { "seconds": 0.2 @@ -8632,7 +8692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f41c452ce57a78b4a766195e9e72e80", + "key": "4b3b6c6dbb2f16c4164afa1538522e4c", "notes": [], "params": { "forceDirect": true, @@ -8665,7 +8725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8fc0d884f2c1e58e4903ff55b8d561bd", + "key": "ac73b7bba4abcf368db473e14666e243", "notes": [], "params": { "seconds": 0.5 @@ -8679,7 +8739,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f5e87efb3ecedbb2724584f97512c8f", + "key": "69ab92c04c754244f48f257a0b04211d", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -8698,7 +8758,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "366016c78503add7079149c8da4298ce", + "key": "43e869236b0ec147c1a9b818f5299747", "notes": [], "params": { "seconds": 0.2 @@ -8712,7 +8772,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61d9101257bca46b260fb9cf455f458e", + "key": "4e5e2c4d4dccc097fa16831e4b60b3a8", "notes": [], "params": { "forceDirect": false, @@ -8744,7 +8804,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c90a92a7ee550fc7dce6c6a9e75e2ca9", + "key": "e1eb3cc11f5fc3a9b7a57e8e4de2bcbe", "notes": [], "params": { "correctionVolume": -1.21, @@ -8764,7 +8824,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01dc9e1d5f9e6d74f2916fa26b8d3bdf", + "key": "a90ded997280a00234f5a68af3fc4cd6", "notes": [], "params": { "seconds": 2.0 @@ -8778,7 +8838,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b2ef20b166b2bc57e42144cc07a6191", + "key": "381f992e7ae9631876689e3131523e95", "notes": [], "params": { "forceDirect": true, @@ -8811,7 +8871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "746ce4ad26de30052b37f4def49dc8a8", + "key": "0ab41e390f06dcb85b46d5f9cf3fdb17", "notes": [], "params": { "correctionVolume": 0.0, @@ -8831,7 +8891,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "359538da24adad05036bdd2a90233734", + "key": "3bf4ece3d5b47a1f353ffce3f7831a7f", "notes": [], "params": { "seconds": 2.0 @@ -8845,7 +8905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7ce72aaebc35d1d87874560352cb690", + "key": "6d0ced95cd380349fe98019704b845d9", "notes": [], "params": { "forceDirect": true, @@ -8878,7 +8938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "864e936fc3359dfec7af8cd4e2d0f033", + "key": "aa4b8973fdf42d748993dc261e3a9870", "notes": [], "params": { "seconds": 0.5 @@ -8892,7 +8952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2680c5108620f92a88eb8f1c20b356b0", + "key": "f87566144a6c0b0e51de892e25894e15", "notes": [], "params": { "correctionVolume": -0.75, @@ -8911,7 +8971,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7890025b53b3cf6efd73171b887a7436", + "key": "af3a681206ce1ee792c7c6ed5021baac", "notes": [], "params": { "seconds": 0.2 @@ -8925,7 +8985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa7f40b01592546d2de74603e66f5229", + "key": "4a79bfbcee90eda5e217db4d3b954b8e", "notes": [], "params": { "forceDirect": false, @@ -8957,7 +9017,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7695577fc91e903fb9dbee69b5496366", + "key": "6580beea588b410d88f32c9bb0c73f3c", "notes": [], "params": { "correctionVolume": 0.0, @@ -8977,7 +9037,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6cbb453a2d0d755607801b1096af2baf", + "key": "0234e508cb0bb41878fe848506339711", "notes": [], "params": { "seconds": 2.0 @@ -8991,7 +9051,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e49fd4ce622b362f694f088b07739b9e", + "key": "3b25f1488002bc206bfb21ba67655d12", "notes": [], "params": { "pipetteId": "UUID", @@ -9007,7 +9067,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "554709a54b2fd2f4a599c6b0d1b1a786", + "key": "15cd75775fe4f3f375c82845c4a9a57d", "notes": [], "params": { "pipetteId": "UUID" @@ -9021,7 +9081,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3479adbb0f22ff68e56559717c82559", + "key": "a4af95c751783668347c4fba26fc1b3f", "notes": [], "params": { "forceDirect": false, @@ -9053,7 +9113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c6f3519696cdca2eeb95d4d85d63203", + "key": "1fc1bf4d93b3054a655b3b5ff2aa2db9", "notes": [], "params": { "forceDirect": true, @@ -9086,7 +9146,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c04f4a734a00bd80c890ecd9ede11cc", + "key": "797cec8983fca8f99971e02953616b6b", "notes": [], "params": { "correctionVolume": -1.21, @@ -9105,7 +9165,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4cc4bda868ab5918a0fdb377c98cf5d5", + "key": "258509ebf0138ba40e53823fce42cd0a", "notes": [], "params": { "seconds": 0.2 @@ -9119,7 +9179,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "965f22c530b2acd95667293fdb071b6f", + "key": "cea0f9463d0a395db9907fea0666d17d", "notes": [], "params": { "forceDirect": true, @@ -9152,7 +9212,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6628113dd3f43d667b6f36940bbea703", + "key": "8de024c613353ae24b40d32af0a80995", "notes": [], "params": { "seconds": 0.5 @@ -9166,7 +9226,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9d3330f6877b378b084bbeae8fdaa36", + "key": "b24965260b2ebd56ba2c78f939a21871", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -9185,7 +9245,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dc410250010ba42fa5ea0ffae95bae4", + "key": "c0b7d9e7cdedc37d4d380e20d5dd936b", "notes": [], "params": { "seconds": 0.2 @@ -9199,7 +9259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "002422b7b588b363af56213fb7c76788", + "key": "9a5d55358e93e65c7597042553ed491e", "notes": [], "params": { "forceDirect": false, @@ -9231,7 +9291,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9df1bb974904e938db45dde9a0ca85e6", + "key": "8401c9e630a24cc84cf66f61f4100c4e", "notes": [], "params": { "correctionVolume": -1.21, @@ -9251,7 +9311,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca61bb7e221bab97f5919f268a41616b", + "key": "91f20f645e55511dfeb6e675b0458be2", "notes": [], "params": { "seconds": 2.0 @@ -9265,7 +9325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bde701d227375ad3730166053b6ef17", + "key": "ecd9261fc63370ac503b7107b917396f", "notes": [], "params": { "forceDirect": true, @@ -9298,7 +9358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "057cc22782b554810a1bb64e992e100b", + "key": "665c4930e12249d9981d5f0ec0530366", "notes": [], "params": { "correctionVolume": 0.0, @@ -9318,7 +9378,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f64d84600ab98eb1aab5f519de41f9f1", + "key": "fcee79d72d8b2e989d99dd92621eca9a", "notes": [], "params": { "seconds": 2.0 @@ -9332,7 +9392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a7e33238d3d702ca6d4ebad490898cb", + "key": "dbe9c77a2dfbec0d9a338af979fc5039", "notes": [], "params": { "forceDirect": true, @@ -9365,7 +9425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ec2bcbbf07c518123e2d94aa33b9ee7", + "key": "0acd7199ebacaa7632bac5ed2e144f38", "notes": [], "params": { "seconds": 0.5 @@ -9379,7 +9439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ab18d0b23787b59be3d25bcd80b73f0", + "key": "ca890e9297fc7fb56415da5c3276968a", "notes": [], "params": { "correctionVolume": -0.75, @@ -9398,7 +9458,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "875fef62a80c3ff7a13247e0c2a71fb2", + "key": "bf35487af4d9f372dafd1c27fb052352", "notes": [], "params": { "seconds": 0.2 @@ -9412,7 +9472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f0be7d50058b20c59177208d1e8358f", + "key": "69ce5810dfa3e2f6f8305d76789b5bc7", "notes": [], "params": { "forceDirect": false, @@ -9444,7 +9504,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0d3f046d2567a5fac4c36c9190db83d", + "key": "839e09fa2e6f03f0efb5d17d90e5abe0", "notes": [], "params": { "correctionVolume": 0.0, @@ -9464,7 +9524,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61f8fdfb3d644ec4abef31243d39a915", + "key": "d5d19516520d31ef8fff783dc636e2e1", "notes": [], "params": { "seconds": 2.0 @@ -9478,7 +9538,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5148278bb28ccb50e133dbf5b8ca312", + "key": "f5947663c7231f6de636a66c2307d689", "notes": [], "params": { "pipetteId": "UUID", @@ -9494,7 +9554,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07f14b525578c90827a0a2f23ad568d7", + "key": "f9d790bf55a3a3560d9388f0cc2d5a69", "notes": [], "params": { "pipetteId": "UUID" @@ -9508,7 +9568,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfee026da5a650cb588eb06a97a76846", + "key": "f6c26f924e4ca49382f63f9bd38aeeba", "notes": [], "params": { "forceDirect": false, @@ -9540,7 +9600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e19b068a1db689c4c3db0934671d8022", + "key": "a7732e4d0bc098dbdf07d7feab746565", "notes": [], "params": { "forceDirect": true, @@ -9573,7 +9633,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b5f7a5e1b186e82af9de7d94762aa4d", + "key": "d15080ff49c4a297e23b7eebf2c6b0e3", "notes": [], "params": { "correctionVolume": -1.21, @@ -9592,7 +9652,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e51a21214b8279b305a18d1b1a407f8d", + "key": "e4a53fda5f4303ff71acd0abaea58d36", "notes": [], "params": { "seconds": 0.2 @@ -9606,7 +9666,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ba216e08c8105d4246eff6e87cc0d29", + "key": "e4bad92fdb70583fabc7744e15a84907", "notes": [], "params": { "forceDirect": true, @@ -9639,7 +9699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e27c962756c7b6189a239c55fcf75aa", + "key": "5cf4a09a46c4bd1660dd8e1db4539af2", "notes": [], "params": { "seconds": 0.5 @@ -9653,7 +9713,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c13c9aec2c4c9a5de69db77c6555fc9f", + "key": "92152ff9938c81c9dc49bbf0d26b2f3c", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -9672,7 +9732,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85ba9e20edc809cd572d5b50c938f4bc", + "key": "2ef34a9788d3e37294c07bf3e90b6924", "notes": [], "params": { "seconds": 0.2 @@ -9686,7 +9746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ac02ae277aa2c9311bcb68e0dfee0d0", + "key": "6473e62f9c81c9f0221f1614c1dfc5de", "notes": [], "params": { "forceDirect": false, @@ -9718,7 +9778,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81950f724ef1081b32129d0b8f77ece7", + "key": "a0cb303eb5717e923721084ba08af7b8", "notes": [], "params": { "correctionVolume": -1.21, @@ -9738,7 +9798,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "895270c12cfc293946cb4688635670fa", + "key": "d82407e5b77cae068f38f30923b0b9df", "notes": [], "params": { "seconds": 2.0 @@ -9752,7 +9812,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8488c7883f0f27218084260218c2dd89", + "key": "ae7cace29e2880d2c8dd27b91f6d8a83", "notes": [], "params": { "forceDirect": true, @@ -9785,7 +9845,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "092ce7ee769586b5502f5e3feaa63310", + "key": "b1dd6c0f96b7bdadbb67d75412864aa6", "notes": [], "params": { "correctionVolume": 0.0, @@ -9805,7 +9865,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75cd6414dfdc272b8450ab12019e5618", + "key": "0279981a76cd7781943be7200e966821", "notes": [], "params": { "seconds": 2.0 @@ -9819,7 +9879,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e89657cbabb4a48bfb05cf91a0dfe69", + "key": "c42d7641685bf5a4edc2629c2ea880b7", "notes": [], "params": { "forceDirect": true, @@ -9852,7 +9912,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3c1d2aa2db222b824dd474a5c03c8fa", + "key": "0e6d6ddb804c978971b166278479010f", "notes": [], "params": { "seconds": 0.5 @@ -9866,7 +9926,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f0c08c606c22c83428f52556c821edaa", + "key": "05564704b62c2a014cc59f58809b722b", "notes": [], "params": { "correctionVolume": -0.75, @@ -9885,7 +9945,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f50893df8f5906789af6e33258c37ece", + "key": "ad3f017693149600ce2664abc591c95a", "notes": [], "params": { "seconds": 0.2 @@ -9899,7 +9959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c36edd165dd4b0b8b676c9a13796997", + "key": "f79bb8dce145fcbe3156fdcc96db3c1f", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -9928,7 +9988,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "986c8e6c3cd760eb603fc7e4468e3279", + "key": "8218fd3afcb32a99c3eb1fd682110863", "notes": [], "params": { "homeAfter": false, @@ -9943,7 +10003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "377717d3cc7904c8411fad1467988e90", + "key": "ef3ef7428371db39ef7232c45e02a15a", "notes": [], "params": { "liquidClassRecord": { @@ -10314,7 +10374,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db68b4d10cda6757bf4c8c661b262721", + "key": "95ad474a5d7e3a5f5ba16ab6273810f7", "notes": [], "params": { "labwareIds": [ @@ -10338,7 +10398,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46db61bdd7e012f6d551830841b06373", + "key": "825c250de92106660dc4cc3cb9793029", "notes": [], "params": { "labwareId": "UUID", @@ -10371,7 +10431,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c615f74e276f6af93d4d737db663c5e6", + "key": "95c708d7b2af8bf1836a2d7c3b1f85d6", "notes": [], "params": { "forceDirect": false, @@ -10403,7 +10463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "866df544a1467205adf5c2efbe8c5270", + "key": "3d9ef093963cb18d04f690f47e8ad0b2", "notes": [], "params": { "pipetteId": "UUID", @@ -10419,7 +10479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07b398f1f696f051740e3ba80552fc0b", + "key": "ebcb694ea30d821ca50834034ac735c5", "notes": [], "params": { "pipetteId": "UUID" @@ -10433,7 +10493,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a087a9f4bd585b5c0e9036cc9d47389", + "key": "4dd7da0c4a64ba87124103d8b3570585", "notes": [], "params": { "forceDirect": false, @@ -10465,7 +10525,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e241b7d3f708cd9cdbf816f24c0ee76", + "key": "1ad70e6a74824942bd83a5bee513db7d", "notes": [], "params": { "forceDirect": true, @@ -10498,7 +10558,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57669d3bb6f254c092a38ded39c3be3e", + "key": "30aa178d0b02918af0ad1c6da7096581", "notes": [], "params": { "correctionVolume": 0.185, @@ -10517,7 +10577,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d59971ccc71565e049c90814683c39f7", + "key": "ca081135e295116bded9ab226f38a319", "notes": [], "params": { "seconds": 2.0 @@ -10531,7 +10591,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd87f3cc19926893d692b6cee7ca9203", + "key": "33d40d98cfa2f01aad488d1b490ca488", "notes": [], "params": { "forceDirect": true, @@ -10564,7 +10624,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31cc4233149c85c9248964bef97c48d9", + "key": "d7fc5d824ae190f6fa8bdc0fa2ae799c", "notes": [], "params": { "forceDirect": false, @@ -10596,7 +10656,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f4fc76bea61bcc226f4f85a0894dddc", + "key": "599fe22d3babd17c2cad229d3b253165", "notes": [], "params": { "forceDirect": true, @@ -10629,7 +10689,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57fe60342ecc0ce2e23f9d6aca6fe867", + "key": "40b540eb3e435fbeffacd091c3b01eca", "notes": [], "params": { "correctionVolume": 0.0, @@ -10649,7 +10709,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65493b38f126c757329ec8c812340c9c", + "key": "4af4491bef84ba5665399d017e9312d5", "notes": [], "params": { "seconds": 1.0 @@ -10663,7 +10723,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c7d9343b3493dd7332e870e6bf431406", + "key": "cd06f5bd6f58931856fa4e9052fefc97", "notes": [], "params": { "forceDirect": true, @@ -10696,7 +10756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83b02bb32896fbc6e9b92c4c40b94506", + "key": "f2cc6c84e7481625aea96fc5166849ff", "notes": [], "params": { "pipetteId": "UUID" @@ -10710,7 +10770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "007f9e55496a331b88952ac22660b945", + "key": "76fcc1ac63ca125bafa827a15d5883e1", "notes": [], "params": { "forceDirect": false, @@ -10742,7 +10802,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c40e40f9e77f5568b0cd53485d49fcaf", + "key": "b67b78c22eaee7facead297957155ddd", "notes": [], "params": { "pipetteId": "UUID", @@ -10758,7 +10818,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b962966c2db7f5da7d8572df1e9d52d4", + "key": "6e66c2293bb27e887c7511f16bed298c", "notes": [], "params": { "pipetteId": "UUID" @@ -10772,7 +10832,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c7a134f2f6f5402a14aa377abaf70ef", + "key": "50847b6ac89908344d388abd11ded9e3", "notes": [], "params": { "forceDirect": false, @@ -10804,7 +10864,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cee9fd852280fc2c04d62d26e1298a4c", + "key": "495b020bee982263186a9edf0796145e", "notes": [], "params": { "forceDirect": true, @@ -10837,7 +10897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8ea511a6de9d8fcdc556fe0cf72ba61", + "key": "f54c08bd97e4346cc5715e86d22f8966", "notes": [], "params": { "correctionVolume": 0.185, @@ -10856,7 +10916,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2dd4274ca31e0839c00fc7e7f19fe24", + "key": "3198ea33219ffa9afd995d5103813d4c", "notes": [], "params": { "seconds": 2.0 @@ -10870,7 +10930,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20c68ab03a74be990a365b3a68a91788", + "key": "1bb2b87d75e42993f27134a1f91ddb67", "notes": [], "params": { "forceDirect": true, @@ -10903,7 +10963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32ca065ba7be80dfea6cd8188ba3d755", + "key": "d79aa7603f35722477088a55701837e4", "notes": [], "params": { "forceDirect": false, @@ -10935,7 +10995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3d91f613326cdfa75b950a6d691794e", + "key": "4753984a2b1802d3e551b5717ca24161", "notes": [], "params": { "forceDirect": true, @@ -10968,7 +11028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20d578bb5e03a7240807058d0dbcd3a8", + "key": "a0cd0b23f2e91342f55201bb662acac2", "notes": [], "params": { "correctionVolume": 0.0, @@ -10988,7 +11048,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f579756d41c91c85bf42a1d581702379", + "key": "b1e8514463502fd4261f76b5da136ac0", "notes": [], "params": { "seconds": 1.0 @@ -11002,7 +11062,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4cf9b7adb504609773dcc191652544e1", + "key": "77e555de0822d37a41ff6dbe449d74d0", "notes": [], "params": { "forceDirect": true, @@ -11035,7 +11095,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3105628ab4ed46a821811f7e96137c78", + "key": "706b972d89d291f44c632d13cecb93a5", "notes": [], "params": { "pipetteId": "UUID" @@ -11049,7 +11109,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61eb442faa67adadb80d80c5b6005f4c", + "key": "fb1e81ba923ed00687c1688284b1f24c", "notes": [], "params": { "forceDirect": false, @@ -11081,7 +11141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d4cbe833381d82e08c632dc5b957b2c", + "key": "dc3755f2b0c6f55fb33f07f9627c8e34", "notes": [], "params": { "pipetteId": "UUID", @@ -11097,7 +11157,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ccf442152d19879c7b2383f1b22f76f8", + "key": "31d4c8f141b83c0354181b6e636a212d", "notes": [], "params": { "pipetteId": "UUID" @@ -11111,7 +11171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "608e949a9c662874400ab5e538d155c3", + "key": "04e5dc188f9290cb0b41db73a618bbe5", "notes": [], "params": { "forceDirect": false, @@ -11143,7 +11203,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe9ed3a6710a3ab338054fbed5c917a1", + "key": "3e6ca4bf532fbb443ec2d6dd8410469c", "notes": [], "params": { "forceDirect": true, @@ -11176,7 +11236,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c30d33ced0475238ecc5d5fa1bcc7612", + "key": "8e7dd0f703b9bfcfa93386daa7d92e9f", "notes": [], "params": { "correctionVolume": 0.185, @@ -11195,7 +11255,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b633906d4bd5643a77f9ba7d568dd511", + "key": "0da52095028d59857daca92e3e8daea0", "notes": [], "params": { "seconds": 2.0 @@ -11209,7 +11269,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2c8170edfe43959c7f84a6e0fd6c5ca", + "key": "7e79109435084a82e07a5eb85f15b57b", "notes": [], "params": { "forceDirect": true, @@ -11242,7 +11302,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0fda7d927d27de92dbf1d832aac7b489", + "key": "c1599b0fd588654dc963cbd0221bd7c1", "notes": [], "params": { "forceDirect": false, @@ -11274,7 +11334,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9eaa1c51140c195033262b825118f6ae", + "key": "0859b6efb6f7273be4e6b019ece9758e", "notes": [], "params": { "forceDirect": true, @@ -11307,7 +11367,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "919fa80b02d1c906623c42e6a7ae3a57", + "key": "99a9684dca1391d198140285eaa0a4a5", "notes": [], "params": { "correctionVolume": 0.0, @@ -11327,7 +11387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90707b0d37271b54fb492c7f40a0dc2f", + "key": "435218e35313d73be233a0c23efaefba", "notes": [], "params": { "seconds": 1.0 @@ -11341,7 +11401,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f152b5f9ff0d7dfc6310d25c900ca0a", + "key": "c6cd87aabfed059c5d708ded72285100", "notes": [], "params": { "forceDirect": true, @@ -11374,7 +11434,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a72c8a4b411001c4d618b9db08664c4", + "key": "328c62f37dd451f30b01e1cf60bdb87a", "notes": [], "params": { "pipetteId": "UUID" @@ -11388,7 +11448,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2521529cf705e3476fbcd56a46d7580", + "key": "4e48d9216f228fdaca3d365317b85577", "notes": [], "params": { "forceDirect": false, @@ -11420,7 +11480,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "721411d02acd9a0ec474aae152be563f", + "key": "ab3587bbdb4ed0943a734b0dda00d106", "notes": [], "params": { "pipetteId": "UUID", @@ -11436,7 +11496,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bda41e7e38ceea673fc7ae52f684d3e9", + "key": "38b6d4b75550b4390c03b3312e1af871", "notes": [], "params": { "pipetteId": "UUID" @@ -11450,7 +11510,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "de96747da7d379091c9565bcdc9ec642", + "key": "9de8e8e29deefc5b3afc6686a872531c", "notes": [], "params": { "forceDirect": false, @@ -11482,7 +11542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64b78fa4ee4172d9ba23e1f7187bec31", + "key": "2199744dc84c3db4f69a6387c1b6c256", "notes": [], "params": { "forceDirect": true, @@ -11515,7 +11575,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e2abac1c2f759585ef4bb4b49a54d03f", + "key": "24a365b34e34db0d9a24e62aa8c3699f", "notes": [], "params": { "correctionVolume": 0.185, @@ -11534,7 +11594,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "420ea0634d2d3e4171fcee588ca2783d", + "key": "e7b479b221b423d8b98c6f4326ec73a2", "notes": [], "params": { "seconds": 2.0 @@ -11548,7 +11608,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a5c06d0175bf3e65231f8b92930cb418", + "key": "6f215fe533a68ea93ef788c946d63433", "notes": [], "params": { "forceDirect": true, @@ -11581,7 +11641,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac00bb390766edec96c6f5ab086f8bc6", + "key": "cad8b44cc975460b6066b15debf31af1", "notes": [], "params": { "forceDirect": false, @@ -11613,7 +11673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7f7ace4188102cc8317abdfe37a70cf", + "key": "72d588b0919a2bcd1920c1ec4b6b1041", "notes": [], "params": { "forceDirect": true, @@ -11646,7 +11706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e552dc7c20d49edaf628b6a5debd7b47", + "key": "af16b6e45971e298ca3b3194537365cc", "notes": [], "params": { "correctionVolume": 0.0, @@ -11666,7 +11726,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "643c7b6088534bbfdc3ffff77eaa790e", + "key": "03f352f63243f643d986ff0dd7f37787", "notes": [], "params": { "seconds": 1.0 @@ -11680,7 +11740,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14245d4e9cbfd220a8136d794d27a78e", + "key": "c17cb4aead2cbcaa37829ff307ba38ed", "notes": [], "params": { "forceDirect": true, @@ -11713,7 +11773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c88f0b95852a8c27920daea73114d7f1", + "key": "097bb20be55f0d75c74ee4283be8fc08", "notes": [], "params": { "pipetteId": "UUID" @@ -11727,7 +11787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad9c3ff3266a88b33791a65bec4eb41d", + "key": "72f0118605e3e518277ad0e692bff645", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -11756,7 +11816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dfb7b0726ecb52fb00c1d294807538fb", + "key": "0a5ada1d2e47f42f8eda91cf98e1a710", "notes": [], "params": { "homeAfter": false, @@ -11872,11 +11932,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -12097,7 +12157,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -12107,16 +12167,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6c599fcf11][Flex_S_v2_18_PL_Illumina-DNA-Prep-96x].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6c599fcf11][Flex_S_v2_18_PL_Illumina-DNA-Prep-96x].json index b50d85608bd..0b9d36937ed 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6c599fcf11][Flex_S_v2_18_PL_Illumina-DNA-Prep-96x].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6c599fcf11][Flex_S_v2_18_PL_Illumina-DNA-Prep-96x].json @@ -1,141848 +1,3 @@ { - "commandAnnotations": [], - "commands": [ - { - "commandType": "home", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50c7ae73a4e3f7129874f39dfb514803", - "notes": [], - "params": {}, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8511b05ba5565bf0e6dcccd800e2ee23", - "notes": [], - "params": { - "location": { - "slotName": "B1" - }, - "model": "thermocyclerModuleV2" - }, - "result": { - "model": "thermocyclerModuleV2", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9563ff54d4bfe61c469a7da06e79f42", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "A2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07af6536632377008ed92723cc8c5072", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "A3" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8eec906a29ce38c4567cc9831a24cd13", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "B2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8c3a9e08a3edebc1bf4357cf91f0858", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "B3" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e4cba10c2c36d91ca0add460e16f29a", - "notes": [], - "params": { - "location": { - "slotName": "C1" - }, - "model": "temperatureModuleV2" - }, - "result": { - "model": "temperatureModuleV2", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "613c9d35964aadf8f79e06bda11db284", - "notes": [], - "params": { - "loadName": "opentrons_96_well_aluminum_block", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [ - "adapter" - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 18.16 - }, - "gripperOffsets": { - "default": { - "dropOffset": { - "x": 0, - "y": 0, - "z": 1.0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "aluminumBlock", - "displayName": "Opentrons 96 Well Aluminum Block", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_96_well_aluminum_block", - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 74.24, - "z": 3.38 - }, - "A10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 74.24, - "z": 3.38 - }, - "A11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 74.24, - "z": 3.38 - }, - "A12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 74.24, - "z": 3.38 - }, - "A2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 74.24, - "z": 3.38 - }, - "A3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 74.24, - "z": 3.38 - }, - "A4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 74.24, - "z": 3.38 - }, - "A5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 74.24, - "z": 3.38 - }, - "A6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 74.24, - "z": 3.38 - }, - "A7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 74.24, - "z": 3.38 - }, - "A8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 74.24, - "z": 3.38 - }, - "A9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 74.24, - "z": 3.38 - }, - "B1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 65.24, - "z": 3.38 - }, - "B10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 65.24, - "z": 3.38 - }, - "B11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 65.24, - "z": 3.38 - }, - "B12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 65.24, - "z": 3.38 - }, - "B2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 65.24, - "z": 3.38 - }, - "B3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 65.24, - "z": 3.38 - }, - "B4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 65.24, - "z": 3.38 - }, - "B5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 65.24, - "z": 3.38 - }, - "B6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 65.24, - "z": 3.38 - }, - "B7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 65.24, - "z": 3.38 - }, - "B8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 65.24, - "z": 3.38 - }, - "B9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 65.24, - "z": 3.38 - }, - "C1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 56.24, - "z": 3.38 - }, - "C10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 56.24, - "z": 3.38 - }, - "C11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 56.24, - "z": 3.38 - }, - "C12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 56.24, - "z": 3.38 - }, - "C2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 56.24, - "z": 3.38 - }, - "C3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 56.24, - "z": 3.38 - }, - "C4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 56.24, - "z": 3.38 - }, - "C5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 56.24, - "z": 3.38 - }, - "C6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 56.24, - "z": 3.38 - }, - "C7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 56.24, - "z": 3.38 - }, - "C8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 56.24, - "z": 3.38 - }, - "C9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 56.24, - "z": 3.38 - }, - "D1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 47.24, - "z": 3.38 - }, - "D10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 47.24, - "z": 3.38 - }, - "D11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 47.24, - "z": 3.38 - }, - "D12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 47.24, - "z": 3.38 - }, - "D2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 47.24, - "z": 3.38 - }, - "D3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 47.24, - "z": 3.38 - }, - "D4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 47.24, - "z": 3.38 - }, - "D5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 47.24, - "z": 3.38 - }, - "D6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 47.24, - "z": 3.38 - }, - "D7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 47.24, - "z": 3.38 - }, - "D8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 47.24, - "z": 3.38 - }, - "D9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 47.24, - "z": 3.38 - }, - "E1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 38.24, - "z": 3.38 - }, - "E10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 38.24, - "z": 3.38 - }, - "E11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 38.24, - "z": 3.38 - }, - "E12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 38.24, - "z": 3.38 - }, - "E2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 38.24, - "z": 3.38 - }, - "E3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 38.24, - "z": 3.38 - }, - "E4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 38.24, - "z": 3.38 - }, - "E5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 38.24, - "z": 3.38 - }, - "E6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 38.24, - "z": 3.38 - }, - "E7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 38.24, - "z": 3.38 - }, - "E8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 38.24, - "z": 3.38 - }, - "E9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 38.24, - "z": 3.38 - }, - "F1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 29.24, - "z": 3.38 - }, - "F10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 29.24, - "z": 3.38 - }, - "F11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 29.24, - "z": 3.38 - }, - "F12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 29.24, - "z": 3.38 - }, - "F2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 29.24, - "z": 3.38 - }, - "F3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 29.24, - "z": 3.38 - }, - "F4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 29.24, - "z": 3.38 - }, - "F5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 29.24, - "z": 3.38 - }, - "F6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 29.24, - "z": 3.38 - }, - "F7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 29.24, - "z": 3.38 - }, - "F8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 29.24, - "z": 3.38 - }, - "F9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 29.24, - "z": 3.38 - }, - "G1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 20.24, - "z": 3.38 - }, - "G10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 20.24, - "z": 3.38 - }, - "G11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 20.24, - "z": 3.38 - }, - "G12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 20.24, - "z": 3.38 - }, - "G2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 20.24, - "z": 3.38 - }, - "G3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 20.24, - "z": 3.38 - }, - "G4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 20.24, - "z": 3.38 - }, - "G5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 20.24, - "z": 3.38 - }, - "G6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 20.24, - "z": 3.38 - }, - "G7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 20.24, - "z": 3.38 - }, - "G8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 20.24, - "z": 3.38 - }, - "G9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 20.24, - "z": 3.38 - }, - "H1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 11.24, - "z": 3.38 - }, - "H10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 11.24, - "z": 3.38 - }, - "H11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 11.24, - "z": 3.38 - }, - "H12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 11.24, - "z": 3.38 - }, - "H2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 11.24, - "z": 3.38 - }, - "H3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 11.24, - "z": 3.38 - }, - "H4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 11.24, - "z": 3.38 - }, - "H5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 11.24, - "z": 3.38 - }, - "H6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 11.24, - "z": 3.38 - }, - "H7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 11.24, - "z": 3.38 - }, - "H8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 11.24, - "z": 3.38 - }, - "H9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 11.24, - "z": 3.38 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "temperatureModuleV2C1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de7c62a4b7e4ac8ed37a08894d0e1044", - "notes": [], - "params": { - "displayName": "Reagent Plate", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "labwareId": "UUID" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "temperatureModuleV2C1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e093cb1fd5884dada7ba5ac1b02aedcd", - "notes": [], - "params": { - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "slotName": "C2" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "503001", - "503501" - ], - "links": [ - "https://www.nest-biotech.com/deep-well-plates/59253726.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.3, - "zDimension": 41 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 21.9, - "gripperOffsets": {}, - "groups": [ - { - "brand": { - "brand": "NEST", - "brandId": [] - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deep Well Plate 2mL", - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deep Well Plate 2mL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "nest_96_wellplate_2ml_deep", - "magneticModuleEngageHeight": 6.8, - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "evotips_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 102 - }, - "opentrons_96_deep_well_adapter": { - "x": 0, - "y": 0, - "z": 16.3 - }, - "opentrons_96_deep_well_temp_mod_adapter": { - "x": 0, - "y": 0, - "z": 16.1 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 2.66 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "B1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "C1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "D1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "E1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "F1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "G1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "H1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "931ce5a456d9c2f69da65754cb58d053", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "C3" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aebf549a818cad67ee9a329547696d2", - "notes": [], - "params": { - "location": { - "slotName": "D1" - }, - "model": "heaterShakerModuleV1" - }, - "result": { - "model": "heaterShakerModuleV1", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b9478a749b422a21e1bf958d9cbf6fd", - "notes": [], - "params": { - "displayName": "Sample Plate 1", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a05e330eaaaa67c8c16bc22e1de06d2", - "notes": [], - "params": { - "location": { - "slotName": "D2" - }, - "model": "magneticBlockV1" - }, - "result": { - "model": "magneticBlockV1", - "moduleId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d32780a270e92aa1e044621690566ccf", - "notes": [], - "params": { - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "503001", - "503501" - ], - "links": [ - "https://www.nest-biotech.com/deep-well-plates/59253726.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.3, - "zDimension": 41 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 21.9, - "gripperOffsets": {}, - "groups": [ - { - "brand": { - "brand": "NEST", - "brandId": [] - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deep Well Plate 2mL", - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deep Well Plate 2mL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "nest_96_wellplate_2ml_deep", - "magneticModuleEngageHeight": 6.8, - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "evotips_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 102 - }, - "opentrons_96_deep_well_adapter": { - "x": 0, - "y": 0, - "z": 16.3 - }, - "opentrons_96_deep_well_temp_mod_adapter": { - "x": 0, - "y": 0, - "z": 16.1 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 2.66 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "B1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "C1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "D1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "E1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "F1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "G1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "H1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04c39706fba3125a302b46efbdaa3aff", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "addressableAreaName": "B4" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4696f66d1cde1470d7f62c944c556bf4", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "addressableAreaName": "C4" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97d3c4be99fe566631455b7067ac6775", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "addressableAreaName": "D4" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterCovered", - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadPipette", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8c9b64f570c403ea1c3a2dc153329c6", - "notes": [], - "params": { - "liquidPresenceDetection": false, - "mount": "left", - "pipetteName": "p1000_multi_flex", - "tipOverlapNotAfterVersion": "v0" - }, - "result": { - "pipetteId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadPipette", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fe8cfe9a919dba6495c6f300455d6b0", - "notes": [], - "params": { - "liquidPresenceDetection": false, - "mount": "right", - "pipetteName": "p50_multi_flex", - "tipOverlapNotAfterVersion": "v0" - }, - "result": { - "pipetteId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63124a620bf56afa0b14ee2269cdd576", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "466f761ed618df3050889c42a5d8aed2", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": true - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "378eb2ae394a5f6f225011ea0b6f50a4", - "notes": [], - "params": { - "message": "SETTING THERMO and TEMP BLOCK Temperature" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "502731193807925293117019de01a37a", - "notes": [], - "params": { - "celsius": 4.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8afa46f24c58c18a204dcda6ed1ece12", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3fb9e5305f0f5031f9e385d6f787f65", - "notes": [], - "params": { - "celsius": 100.0, - "moduleId": "UUID" - }, - "result": { - "targetLidTemperature": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1afd5a2bfb292cd3b6da1d119cbf604f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/setTargetTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfd549b7e8cab87eca2db1ca9669e1ca", - "notes": [], - "params": { - "celsius": 4.0, - "moduleId": "UUID" - }, - "result": { - "targetTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/waitForTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9208bb9865aa117d7443d3b2380af75e", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63a44ac27b8f2fa076489f918e8a6dab", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab1135ab26b90649fb0a504bce933da2", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d87547fd7211cc060b1608fc3ce628c", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f32d8265e14ec0ea8bafe1dc44fe1373", - "notes": [], - "params": { - "message": "--> Tagment" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7f36e5be661a4160319697f23b71349", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bde01bfc4fe919784e58e14abc36e53f", - "notes": [], - "params": { - "message": "--> ADDING TAGMIX" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cf6945bb873b2ff85f2448e4ab50703", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36c208929e13d8a6be97c9bf5718017f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f24c2b7630be14e31bf3a03082e175a3", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "696044f1abe181f80c940584d7a1c593", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c17febb84780019437dba248ffbd5e3f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "517709317dfd87f11fae7a5449545354", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "618d69ee125ba767aaabc038cdf99e96", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc96913104419168c9684c4defa87533", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3d95db81c74c09b4cdb325ba3e72e95", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd40172c7902238476989a9ea35b624f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b90eedc57445a5626128f246608598e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8800532952bbe3bac4fea21cff79a9bf", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bbfb2ff1ef4f6abd930d10f649a1a91", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3888bfc5c987e1deab10b970c088055", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65bcb33f172237c005710768a7d0fa5d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d3cd44b140bf96147a2494da9a26b2c", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae5c3bd794e2e1e02d7275c2d361b87c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "154bc50da08ef7792577716719bbc3c8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2dbc27bfbc6db401ade921292aff95e1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a3dbdfd1ab4cdfb03b10917d6547703", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7d58bddea629df1d810cccf64217d36", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86996a243ff0fb97580e1c972f9162ca", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6b4265d7318315af37602c73fc0301b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87554faf482a7c56520c21ff111d3493", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "594f82a2c7a126b81512542c842f086e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c19178decb213c7a69b7e76da9357963", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33ab4d3259d77fc529a73db319971401", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66f852f5d9206ef714f9668b5f497707", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "642df6c2fe8b5dda9ddad7a877db3b64", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01eb54faaf2e94284193e5856c82c68e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6965cc7ef694eb273e7cbf17bc3239da", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8b1c808fc1591c71940eaa4b01b5dec", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84d9f23579850376ec528ca09aa18edc", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "665bb95ec76e4262ae1a7ac35277b716", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af6c8b9c42050954518c727a03466eab", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3fd6e850021b60b9c5eb28b898bc1d9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5af44c94c89cbe82bbbe8d0dd5b40f6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4c63e08959592071f3375d9d581c28e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b6a7678ddfd608f5785eb24f1b5dc99", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb68a4e5ca6743fb296bd5c4f8f96c1c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a73cbc798abb3b17211b724ea34dcf96", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6fa357b1ddbb1d90f5a5d716784c341", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a03a384279e2bc5e0c30f4ee890c54a7", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a55265349b25001d5040cf3859d947a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d7febdb6f748bcb855b6c5cd1a611a0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "753f95d29f9d5591abc556d33e11c3ab", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a9e55ea1d749fc81951d623ff3886b4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ac7fd5d85a6701aad4061560dd5a9ae", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1555e1c421f2f79e16e144c86479779", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e61a5e590331e04b632f4e088ccd2bf", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56fc91eff6308c924be6c53e88e8c033", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4f8406808a1754a93bd28cc7f007e78", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a07f62668c0f4ae6d32c6211b2f2bd2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2234fa9ce3cf0215d456fd11135a3c1f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fec18c97a49c03d5accc6caca2767a77", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9a4aeaed225e933226efebc8fd0b6ac", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36ccd96dba95ad1a8477d4b5c6e321b4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9680e4eb304109b04ccdf873e0cfe56e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f71caa0e3d9393c0d316e41e099ffd7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fa4bb73a42200b571ad4628d941a7f8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77b33f4f1c391b8a2f74fa82a599252c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4008277f69f6629e06a12bfccb8dfb25", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cca1671a87ca2e7fffd66ea9d750a7c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a105ade44b9c11c8c1b5cd736854677", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "484e428e46f31398cce03bb2a6dc357d", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91e21dffa9e66d35264fcac2849fe52e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3a8bae80712500c671a8e4fa2fbff75", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0e15f66582ad41c14520d6850b74ba6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e06fae82cec7223be534097eaab42eb4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3716bbf38b758ff5593b4d4fb3a34621", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2fb6618f877976ed42a0a51bd91a17d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28e9f67893f91abd7bbc33ec9e7a40ac", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a6e3bd07a4c36d14cae37a125dac1d6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7de0421a62bb13c7ac5328a21cf9a17", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "775feacc6d00e0a2e35022c506aafe0a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7b87706a707bcc72718133d3fe8c188", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1cfc2f8bc92088e09c16bdb93b8882e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcc8b4c99cb048409b982f17ea8dcb1f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb2dffa7c31f5e2701f7f6a9140406c7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "783ee866dc36073d412e81d3452e2974", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21dfe55a5d3ef4feb11056a067fd0d7a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c5b259d588ef29a7244d125cfc69135", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4f5c6d82f60cc2d51b29a097045b924", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3fda776b3136ebd701d8df3a13634cf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0909938dc60472baaaa3a70a4613328", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78efecddca6fa8a1a982f77f9e458471", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8aaa2536fad715c8d4b5a1dd17ad7d1", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98e4b3fb8f97eee8a957bc0f6fc15b73", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40b99d1fffd5bdf0c17f64803f3707aa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe7f1a94a2f7f589b7694afc757323ec", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10ef36dfeeaf46cf4eb3e51bc40ded0b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "572d95f53a690b81a989ec58391b0032", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89873cb84722d013f822620f4c039642", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94ce9bacc7f83d1436d60fcdbd2bd54a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2db743cb2e711ee2be1d4fc9b051c846", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e1ea549ca62479001c70d5c629ffddc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c3feb1cb20a37f78e8d86bfcee65b3b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16a578238edc1b8d39cb376e74df2247", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8cc3c1911027faea0ae07e500e54060", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47f1f1f27c02d9476326d63fb7e4fdd9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c94b5d8ba1c3b15f92667dd328cc3ec", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce9972223a093186f2eeee759dbf2e7c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d54578279eeeed0bd5d90cd332b0053c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7117479e6023f2ab9be725394a1b2a34", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc9762eea6233277f9f1abba32ee1f18", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1a66353ff0e395924629859d664e803", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2072fe33e10d4cecd3e038bd534b758d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2686a85d4b20f133dcb05381ff15ffd6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e632e08ec68e0d9e4b5fdf079c977550", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "412487122dd61244414c6f9ec37994e8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dddf09127d7dfd5cbcaaa40ada430740", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6731bd946fa592b11e20d1e8c5c7857b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a8dfb6acc9c05691e65af8b22a31ecf", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7245dff4efae6ff957b2e4c9e3be9091", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b7721e8d5ed4a8bd6618364740f219c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "214a33a00be9814a4a99ce2c196db38a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82d8520a07ab007395cec16112983787", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fdff4e25be7cde5990c3e4220f350ac", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fec444a914c1b6c7cf843d09ec314168", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47c14872ac8cb71db332e10b90b1c83e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "050607161675112b5e9f66ba062adb7c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72652813df852f1c9271f6d2f3285726", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a43a9945027eb085f5959ccfe1a829eb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fb3e646b7e76a926a7e23455653bd38", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b0b650505240651f4dfeb6a46b64170", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a430250f1b285f212a6f841a56aecf3b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76de50130df359f7a27615b0570c8edd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93761df36e9f5e8eb1bffa97ca3f144c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e842e70705009b1f7d505196f85129e4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1388cff46b910f14d70ac26312c458e4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53051bd108647a9620cb87034d49df1b", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fbd95c30fe41aa7bd0be5b976d3766a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88646a8306a34ed5d7ca5eb37374aa31", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77845360990259efe00a6499aed67a06", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d54b930fa318ad9246d00f046ecc0ff", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe14b7be957c8e998044f6978492666e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f270464ce7f3230f4ecf74c57a27abb8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bdb1c1ddb073b555fd0bc076ec4081e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93e988feb4ba0fc5887a51e147c932b2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "063e5d6c7d69ddd31c178b1d0aa70fd2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b432b4cc6065f3701095f5bd5c6caf6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34841fd8de77ce32977818da416302c4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "327c0ee1fbca24c8cf558e859e40affe", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9eb3023e709a194fa716d4a32ac7149f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d713bc944d393734880ccac734adcec", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "466ad7ea013e4809edbc47943941f9fb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b61ef89459a6b3ec3b3ddd0be018ada8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfe225c3103e8bf3c470bdd3ceae0ab7", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ac6a759b30c4a7ba254b8eb06240e54", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0040f70f98c61ca9fd9a6210d1c5e84", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5219e220f5e9b57319ce1ce59e21d193", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52516b37f902e749f5f89e14bd553f74", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e56130e25e1cfd5a24515f1c4a2303da", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f8f4f960903ba58b3dc36491f1baa69", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "169408b71dc138ce87680b9c7ff5dbed", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c87ceeac1db0dbfd9dcc9fd231832420", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fa7f7a8b45886542d914e9426d856da", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2188cf4a2465be182781ad3285e008b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b914b29948dd97ebb2f94932b369359", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f3b9e623000af5131b79446e6c87dd2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e36d41911dcf8b30409d6ceee1cf4a5", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b9e448f84d245a185bf8314f2f3a80d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e42d1acf58f640c1df2fbde252cada5b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0a92891ab6959f75d8b9f9cb208ca09", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05e67fb1b6c11667a995d645de5c8634", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b9f32f23d7d329d61bd3717e7189319", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8743578e8e94ea726ef4eac250926ecc", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58c8904d3c5b849ceba3f2b8a9471440", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6f148297ccc7bccb7b49803f98e60c2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bd268e88a70d97337cf1f6b62b16ccd", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f687d4f088f99995b5cef2638ce817e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7383ca8580ded4d2a1d4f151b4265ef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2246a38f4498847e3692fa91e0fe94d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89789a530bb856cf3fcb96cd371f667c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6602aadacfd2ec55b7b4493193734138", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ec2f028ea147890b552615abc5d1a9d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "298e9d029fa78664690970795de98da7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27dae9448a985b52fe88031b721e0157", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84e9f1bd4bc1fa633b485c544971ddc6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28aafabd220d08667f4df3e4afc33fc7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a964879aca404c8be4e206e36a212904", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16550d889167d7065a5802006ab9ee61", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7677d7fd2592925a07a37fc9567bfed8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2119e05f7cbace790089716b564e8978", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55d72a50c19fd211f030d935cca89333", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcb869645d666966771a111cc6d02b7d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b775b0e4bcd8cabdfee7c95b95f83a82", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "728408ee5e9d9dc0cb57c5293c44215d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5cb410abd4aa0e15cb4708b83bb456b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33899118afb6f0be9f666a413a9af914", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd90cdee19a18362c9876b4f958be31f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69af79a3940d83fa5802a0f46bc08f53", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3414ead7a515f7a9bf7092c5f1c870f8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35ed504e3fba90b3c93b7b8633cc1862", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f125a01f8aa5449892a36ea1e294c40", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4e56d4ac5221f9e0b8990aa6bb2332a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7191199d91e99a9cc00a3c4f008bd72b", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82ee91f35c3dfdd5ebb3e3856ce3175a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1d3f196d76a04f41d45c908c24dd76e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9c11a38429c427f73f415d7c180c1a0", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "381434295204d8bedace538672a354bb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "098df2d70e4e501f3a6deb85e3854f00", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc060f73d5ba5144e86a05c10455097d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b1121328950676c3e73c70abea56dcc", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21d5019a6d5acbee0195b3f02fcf5a71", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67ddfa8efea088151616cadeb557c71c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8a2b5522abf9ef337a6b8fb5c7fa09d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66bf2916f39f26c18fd3e7f962713d97", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ef16f847a29b9667ec54b6e0067dcce", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfc432462cbf87f656ddf41f1de99d45", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93f7ab7a3883f3a31ed39a22bf7416f9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b42e488dae8d3363e85bb2c882badec9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1353b6b5fe0ebe3914997a713ac9f4b9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cec2f6efcee84ceff38efb3d23964302", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b6986ef24a14c9b950484a659a77ec1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87357600baab55e2b43f258ca7b4e48d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b27bdd6e102988617f88bb700ddefb96", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ce9cb5b281db13672cfb55c36e5be59", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6c24bfee6190ac4d51ab650a35de40d", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc680538f1c477da35c0381d4c3910be", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96a50e27408a7b33d583e50ad85eb6a0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed61f5d8ff5ae36cccef7be39dbb248d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a0b2efc833e6c378e084ed482d79f3a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "551a73be5d3c88786dd277af117a16c6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5858fa51c00a44955d184df7f114bd2b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad552d322d1f049219f92d7bbd618da9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b843c3532e4e15cb3418234960bf5c3e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e98c35a022605aff0f245bfc2497d65", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "896333959298aec1e6746c93c224a5a6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4467a0d7880fceba8cd3940bc3a84d8b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4502c0e7f875923ea43607116685f57e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab3820aad34f703cb53b2fadffbe1c7d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7944aa4e18253b4ffbc793b0e61012c7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acb2390e35f8e9ab0cad628b93411f5f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16cce724634d2a716d3f3f6af0d544fb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a771e98f89c84e57b0e044d9fb17ed56", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6aaad9a671ea865005669dd51baf769", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "106b4929aca6b6f2281323d9cfc09c8c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7397d0896004b9a11298f91fc5ed56cd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c73580b973fb91d5007bd545705b745a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ffba313a25dbf814377dbccd5c55007", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2042e4936caf67d85940a8eb6def4b6", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16df0720ff388a356ca1f36b8802b228", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "524546810dd907c2994b48476caae2d8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcb80da20730df82a85abf57c89ab74d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d287e487becf09690b5f8f79b9c3f9a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcd0f885c79cd07f1007741770e9e148", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d184b4b8b94e9b9583cc72247185dfd5", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d47665dccfb885aa0baf667a61d618c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "665321856057c1287880ef2f7f5c3312", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.45 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 16.8 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a231e6c26bbf0bb920f93e81670a063", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ec00219ae1d3d7d22ab5d833bae3b3c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 21.000000000000004 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45a73e1ce112fda3dfa2a958574340de", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b15a9ace0cbd1cac48b901e0f6dc345", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba03edc87e01500dcfee032c3bbed313", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "757a506a982e4bd452d813f6111fc005", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.199999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 20.750000000000004 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8378906860955fd6206edca2b0b5f8f2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e35fca1e346176f802bcf59a6f0c802", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "104d3f7fc42aff88155662ac127e5d61", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 31.950000000000003 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec11fe6cabf9c69e1949e32af508fe3d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ff776784c9e03f1f875033d39f39380", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 34.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "556d5744cb5d4e4effd903b7d2552cf2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 39.949999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d88fa84a56e635996023d3f133ffe17", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c23ef2acf859838cfbdb66ea1945859f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/setAndWaitForShakeSpeed", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a7faa4440fa49631f3d833cc8f318f3", - "notes": [], - "params": { - "moduleId": "UUID", - "rpm": 1600.0 - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "903fcb0d8fc9b91bfa4d014d986d9e87", - "notes": [], - "params": { - "seconds": 300.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/deactivateShaker", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89b03dc8bdc55a3c6ca39a0ef5cc3142", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90ce0e8bd33320d2e61dd63e616fd1c5", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f140a51d12531e4cd92d682197ce5fc", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b602a7fea3c281cec5b0caf05d73f8d6", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05e614891189d4110bda4983cd518952", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/runProfile", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22bd5bf7c791b787f9a69aa1f106f51a", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "moduleId": "UUID", - "profile": [ - { - "celsius": 55.0, - "holdSeconds": 900.0 - } - ] - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62b25791afad844348479cb2575c834f", - "notes": [], - "params": { - "celsius": 10.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc391cff46cbbbec7d64d0c928f6ea94", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ce3918dfcc6beff22b8657c6f8df332", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3aaf72eb50a44664e4ef6f87c2fcedc5", - "notes": [], - "params": { - "message": "--> Adding TAGSTOP" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "561ba2595fe15a35cf2c2eefe3bf73ec", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33793af724c8e0396ab6250074057cd7", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0677d41949925540122d62abaf3013bd", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa2cd27e21ffd85f6a3ba91459b0f584", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "390719f74d33bde4c7b2ff5a5a87b761", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90480c3d3e1a5b805ed7637e8d8ef930", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d09ad5e81584f2ccf281540c58d850e1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4fc23b16781faee22e5e251a0b4feb1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97e1f2d2c31551ba63163856be4a37a1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2d76966c0fe4c56ce20b0d2e93a7a6a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7144e1828b7f0c763fd776797e0da6b3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41edbd735857f8fcbd0d71e03d46db8f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e64b36c7e0f7e1ec041ecd92a7c0ff91", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6905a33492561b7a64d9758708879557", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "054bcf93d89a2ff0054adb23b3e668c7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65addbeaf18b1402354c0cb396254c53", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1a62a0b83aa3f556a2d989100b47aa4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d175e02cbe118150ca8a4b02389ddb6d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa4cf68bca352c3f28e895631dfa7c61", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e66df44c83a08dbff06c4108dae7bee", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4635f25c33ddd10df2fe8d3fa22b1b7a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "239a9d0414b41c43dc3baab7462b2b24", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c00293836c21ea64673058dd6ad9789a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edc88c0787fd329cff88f3c7b959cfcd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73f3b8ad2267d7e411d109e18c82771f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64e9662c8a32fcfac8bc9106b987d106", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12eb912c49552b3ae562e28ba8f342ad", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79828a5fbb4d778dac499462cc6a5ae3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a825fa2bbf97ff868b142bb6c93d66b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91e24346c1e34ca5a11194ec629c8956", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e51a4646d4a03fee7e4326701a4c88db", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26c60671c8b2fabb732fdbd58fedd9a0", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a62dfc96f5f9d3c12ba88ad5c5917b6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44c9bb58ee61ad121ed4799ed0470454", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5db384926051b540960796eddcbc09cc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68395acee7dffc89c1ce65c657146c3f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d6c1cbdb778aa5ccedc0a57845e7ec8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33286e74b2cf504ce5083ac234335174", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee29c55714bede46bbefd07e3bcbc756", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "149b2581c2a4073b3404c84ce449a402", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d4c85ab00d980bd675f5d73f228065f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e709daef95559598e73361c86db249f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49bebc2d6a6509dc4f3c6a5ba09bd516", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db656dcb3d79f9ee495734be0a02eb96", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09d16a04c720d46f284fa380ac8378f6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f024b9c35ac1f06b63858028da66c9c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac9721ba229269746859e759c5ff8cce", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e44756d7adc45ad800f5b7eee2df9d5e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "343abaa745a872cd4914963e1323d944", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6946cc9eaa7d5071e767a9f39190d0f1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a18c3024949b013fae4d02b2b23b15a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9af40864fde3ff1761625a9e2ff6218b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c8f0b479d873c183e68070eae880935", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9698e3e8042d80295770de30603c8dfa", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aae172ce3bcd344b5eb4f773eec821ee", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2d4cadd1b2bea8adb5695587155373a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad777cacf4d851e5154ebdf56ab0b136", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b9496fbc850fc29de266f33e22af13a", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac2c39ef1ff020774cdd4dccf762a80f", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3ebdabac02f9940120290447628ba48", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e76987af82816ca187d68f1c7093d569", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9aef3c6ce81dd143425db5580e349707", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f5e4c74c1bed4bd8a01f7313ad1a5b4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "407311afd82a73f22aca0ba5d829a95b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b887ec83e7b6085a5de2ea8f5e47263", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c997c6be85e04f2e62274cb5c147fb51", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8a6db209318eb0ff7be33407c3baa88", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8c8a15731e1ec9df66867af0d4ea197", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b052efc23a3fc511c0dee1aedfc79aae", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd9911c608f03e75f0a417d4c698141f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97a5456524ad5e1c817be8125f055acf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51dbf9f57b03546ce1eb7338a9edde69", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8980777dfe500869e4f29723caaf2774", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94ae5788210f851680a84a63ae58926b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b42a53cac9cb4eb798d51ecd4bc58aac", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9daaa81015b4df0a1728e659f74d6c48", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31fc36dc3b0793ef9c273527f9757332", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa5af326806ae583c03d22f1584bddfa", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6171921959c03d17600dae371fd4e32f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0801118d7e7b967237fc400d233c472d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cee805e1cfc46e109dd5c6dcc585181a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b891538c9361ba74d023195d5c88f2cc", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9f563c634bed07366837ed589e680d4", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a06be40d36f13fe98180e27c820f2c70", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35d32e5bb1377911cd76ce2807044533", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83e765a1c0753cee4970df436d0bd24a", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63e6ba211d46ef6d8985a14d36279366", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e582adc3e04dc0a3cc018a39671a682", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2f1ba78175555c45af24c3c6eb4ca10", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ea9796880e2afb10f245b2ded3b8d07", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ceea4e60456bd6e40e46c1c96c852a4d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e947a9f621243ed400f9d1994beaf59a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c14e0758fac5f6adc59c21dcdf3449b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b770183daeca2280185f1a9c1112c98f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4179cd50cc234f866103aaa73b1b694f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "122c15affaabdd824e8879acbfccc8b3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00d4b6fdb4e636ff5254760f37c46d46", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "effe1e63d6f79a37b5bf38ec72f8d373", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "078fb959d75d549778ac3800e7326e98", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81a15c13d2d690480f02cab518b36fc9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85d16a77e8cdbe65253637f736b5f0d7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f462732f80731d9e8dabd7d4b692ee24", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c43d4323f18b11bb70ae4cea4d95b96e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "313610670b740317569892d1465186de", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "353eafeae4c61eb14628076cc49b1126", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "111351cdde907e17ce171177027467b0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d226f6da9ecddfb088e9cab4c04ccd0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61d1d94523db5baf9515e9c082434436", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e96c688d0819366b8d69abc6bbb0f945", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23c3efc2f157d7a6f028c3db371de576", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7b4fc6ee7822494093f76b28e467afa", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b266d0cab4c7426e1683bce148413ee", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "102ef11c4e2df4064319ab0cd9ae2b6d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c84e3064c65736da1b58633b72bd9dec", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77fb954bf0b684b130c36ecc09802b17", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46df4c5e77c839c706d4f6319ae58abe", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92fb7e3462d562ab72a2e5a986e055a0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b2200bf6f307a73b2395319b473ca7d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9605b999b9284847c6a9d4eb638579e4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f771efeb8f2f9ef1016dd65c33619b3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a272d22ff252293d99ff8e09ccea8e65", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b7c842f1f297b4603fa02244883a98b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e56909ba66e989664ff5041db92b5726", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d7b57bb64afb5924f5025d0e9ff2c11", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e19fe1a46bea57eedd4ebf12b84df86d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c14c878617b40143b0b3286ce7c4cf7a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6fe1603c8a99559781e9ac399955144", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b064b4a14e43848a5c82771199a6cadc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d65c86bb9eb3f162c5c15ee3d9f53d48", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "520f5f8edd1ec04d8666ed5083bdfdbf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5780dbdf799651af2eaf03a2fb3da857", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "827cabc7df216812384436fa484219d4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc6a09a39611e0b28a2880453086f6f4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60c313fd6a42379089aea0ce8ac2763f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb9b896c7fcffe6d5a729b7aba05c50e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24d5571f933e26db102a3b06cba4627f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "511c594ed1dcf00e447e6b2c0ea4d277", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eaad716f7188c73687c437cd1480e18e", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab701485e02404aa861c2ca277c44fa9", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2596ef3362cdc3171b88a69335a9b76c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f358fa0315c373f78a5095283e1dac23", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "527937b235048e82d7868374f5357ee0", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9f787837fcc96a32b72567806cbfc0c", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f3f5574c26e2fe1a4451dee8a33d6d3", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63806b19e32f74a88f3552d8dfe190ea", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa8d2a236ac98ff0ef67902cd7e92d1c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95bd7c1d4c345b7dda12dcd21b0059de", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8473ef1e13492177f4f89dce2bb339f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b81956693ea092efec0d6437e98c308", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c868be8b6f5a4940f33513c7114bbb0a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8406d30ef93fb7056e9fbfce6f32a861", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94f32933e6da3c0e2c7f8a13606c5b6b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0ffdac460678fe56f889432b6f6cf81", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c17ef5cb5cb4eb78909895b277bd889", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06a2bdb3842e934175aa78d9ec9cbc27", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04e009d608a654c31d0e16644256eb18", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7929ea647bcfff388e31ad4a47af5bd2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38b2652c01c44f3267be65151796e33d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "070793cfd5782036f39f2e99b4fc3407", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef2defb9ab4057c0846f18f25a4fddcf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c58a6aa0846d8275a1e0ae19004f0bce", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b9262e6690a3464b14dad75115bc374", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "556544354142bd5b6340565df21f51ab", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "112ef6b76b533f2ba72c12ef5912a860", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64144d09123525f1399de1efa8e88fba", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8382256ef4388c316034420fda6afef4", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "248ea4524e1d487f011ef17db100d782", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e62b6f4f87576f48b824da40293878b4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b2e3443b70b1798a27e9e6c307b2157", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ee4bc68b72c4d6ed6e22588bcfc0525", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5badf57ac8501af1fde3384df2c421b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b8ee7aebc57eebf4f0eb8e4f8079a8b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d75b315c81ae6c74ee6a678430d929cd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "370b1f679effbd9e94827b2a1e5aa693", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36dc3d8b2276d906c323d2555fa62412", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b54d75a0deaf35f618c1706c32c82e7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30590d74cb22be8acd345bb06770e5a8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8df70c57e6f4552efcd9b9c83fddf78", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab274d69a4ef7075495683ab6f7653c0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bef470e4d5be1d16563684dfe38b845", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "865721fbd777908b585f3952eb21b232", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1182ab0f68c1c5e42bc9cf5099ce3c56", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "130279bf9835dc794e95772d0555d1bf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9252434cca681d33cff1c22941e6ddb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2397916593b0de30c92ae188f12a4ba9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13cc3c0aab321c2e1beeb920b4a46b49", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1a4c14d60fac0ab4cf2a1fcece3007e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89c2016a5018525bf39b1e2771620bfc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "413977e230a40e85bc53e8330fa28e87", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "925fa17c2292d8745adf049aedc3c0b8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79d318119fb30dac71b3957d207b71b2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f850248b3e6b1f5473f147003320ebf4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b346d8cfe4493264a2f1e0d6d5b40a38", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ddca051722937b5503c69fa1571d425", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6c6ee5db858065643d1725e0148e8f3", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "003658cf8cb1f0cca007982b68cf4cc9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2afeac6898248df60a54303b42b2eaa8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f09e8ac2d3c7fe73fd01e4ebc0879e9", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "987c4db039b8427a810c886d3e12e03e", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b77681310f38d5c6fee998dc758aa26e", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28ce524bca0a0169284e8a904c10b730", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0f97573447bc32a0aeeeff77e437b3f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2123fb2de8e2b79c8509f004646261f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "733f8da81280b822b58239c8cb0f75af", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c583128928c67ae328a84857251526dd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b6be40973c5dd438d4b4f6d88f5d8c8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38a85c3dabbcf14e2e478690bed765b0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66f981f1bf28dbd1022d77e173e5b9e1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79624c334c78cd162c08a8aea0861bb6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ace8944f338804e86c18a3dc703910e3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9b94b74d80615f057da06e67587ddb0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4d78dbd45942496696530588543649a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "703dc4d421563a84aae15a94d2681878", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "102a265735e5a5265f1be37b59f6e158", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d514a5f5192d9502ef09b18fdf40cd40", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "090361ef14ecb6f121030eeb02889422", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69489896e108e96fe977df5111be21ea", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0d7852f57e954ab721b8046646436ea", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3cf22e40426a14e6be7b43a468e1a4e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c9866eb859f2be97f026c6ac8fc1f48", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4865b62ae4eb553f99ca005e0a81e3e2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ba5bdc83d7fd5851b5036d22f1e58d9", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "278a8f03ded375f3020b64256457c149", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4aa755a30f88184712365aa72d91602", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c8ec61229a10e7a72d108ab54307ec2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d2cfe983f4b6cbaf700b61bd6037f7e", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7f62eb12b2d937f70d773f824924d49", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b2f76f49d1e0a38f7ba9ffc31680cc6", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0559e1fceba38db07482bb7c820a2be7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0fb29b28e5a5b8d2cbd64b5a7a6da4e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cad912af8bdf9f57198462c41f32d1f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9c8273091363fd0ec9ee2bb83c11233", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a060c33977c33fc1eb483374bdf5776", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4eded7b5388af0c67b1efba5be0642a7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e76bbb006bb77b55d5b5b2f19f4dbf2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42a64ae5839d7b084a0eb304cd43f9ec", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "160e3ee147510f49cedfc4505fc3ccdf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f642e1bf3064773e7c2217f4ccd8f5fe", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4244c789ee4a9b7263ee69d1b2b78954", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7e9407aa46e2d8c30f3524327f3a934", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be9291bf4ab11b9ef4600fda052d512e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a0b8c714f5b0d5f57fd3a99d7d0d3f0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcf3b087cc83aad1ae0867c235a4ef45", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "babf893b6de88aaaf46681febf495521", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47edb2cdc80021498ba0dde70ed8f886", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7951d8c1073dfcf1107973cc8587415a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f5053f98484a18c1270bb7573e51255", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3538fbe42de1f13fd70e5de3f1759b7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d4bace13a13ccc5b692acacb1b4f2d3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9778aae7cdd2340e50e5925eec0766d3", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06e6c43a3a9a9b9262ea0c030a846249", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83c2b363055025e696451916a041edfb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "268a2d863fabc4ca7e10c3a41e3333da", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd4d5e03a10091e92c27411f781056f3", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa37f83d5226d40fcbaf933c2ae1228c", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96392a9e35694c6ac59d155e18ff45f6", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d65f50950cc530e95a7c5f786a1778e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6308a88ec377af5a454d5cb765f0d160", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd47da6b8c5026a68abcb20e7c7c008a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c4fe0ed5bdd4ff68aa5d932a10e590e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "202afc65a82cbc228ea5dc7e68626110", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c7b645d2b57d25333d540f833a9fe3f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecd3cc868043f4081d6c378640490ac6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86c32783f1f157d6a5a8873f8f367a3b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a16bba624ee37e467a538b8261f66715", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d49d0f8a6abc5396068ef0ed728eef5d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24c4495d8a96aa125aa2b4a3d0ff418a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "373f66666e662d73bfebb3944c2c7784", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "177d5c5af4a9a96ad298988404b62ee6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3262629ecb9045aeada9f11b34fa567d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2474f3e9a2563583655418c71fa6445", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ea656a938dfd2590517056e351a243d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "638c120c6258ae60be66a0740552e891", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f6236a9b5ec8b3ec8a903d30f81f05e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d51ea047ec301fd760f0d706ddfab8d2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fb3621025a441673dc5dcda3428ef18", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49df4f22e34a68dee381f31e5bc2fc89", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2deecfe0e184b3f8a6ff65d34449a7e", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d6c9c706cff9d42443ce3a798db8528", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8a43f0b22c813714fc39167ed367a55", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e80c4af0dc6862ad96b280c87cb35fc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "981387bc1468c7096fc85e9ec514bb0f", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcc127af707ea528975de9c1f6f0d873", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d4df9e67ece019f787ec50507a921c7", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "619abc3abaeb6347286566c227725ac1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fa5146732ac9322b5aeb00207e74b84", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9667f58ce1d3c99b3404d4953be2e7c4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29e514e65068f71c7386c360586e51ca", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c571f39403b3ef363ad1f012aecf9e59", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec0c0b6349d952221c3f8e17b3417622", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc511154f14f750d86e8faf6b4e06ba5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d30c868464c2d5b4468fda3620079b44", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4aeaa0c8fcd0245493b5c8be10f08219", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e5f59a210598f7f8ccf21181fc05728", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f66f64a105fc80e46354bc17f71c2a41", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ad058f98c67d3ecc7608fe884665c16", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23aa020622b37d415caaeb2428c7af9c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36249f581c29cd2052b519365ec08ddd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50847e531c939f61db18b6079b7edc53", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e49b1eb81122c3b07c611a93c018e585", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d041dc780b374e97fb653749d2f17476", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90501432901b1617fc02f7aecf3dd394", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a25a9872d8992c99fb84c6ff91a55ce", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9745cc158f187db335ae4e36423e52c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24f512635e49b2548613b4e81ce7b5d9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2305c88b768d21fd6e67f8e65164b756", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50011ac735c4b2d91d333486121899b3", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fe6c37067716bc03146549e647fc36e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71c80d77917b1e1e5aaeb6785e849646", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "411315788912c840107205d21c3a495e", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 13.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 13.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92012f1c7169cc84f04a2e0f9ceb63b6", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 181.15, - "z": 3.5 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4a96e1c0716a6872877f93a6e23095b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4a351cde3d79ca3c5174d83e0d896e2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7042ed018dadf5509fbe4f0f5eca0ec3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0413f3f36312bc00d7043221095259d3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "407c656466b941a697e1110320bd710f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70c7b94b6a31bf9ef458102fa281a0d9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff96b5f8f852519dcf643ab934d5e531", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2d6ab35d74751cc826f84a0d2022ea4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba4ade7f6a04ca4b9a17d5fd10a93808", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40f626da243bcf0141fff0adbadd01d1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "265ab2880feb6752a2a1040a2139bd67", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bec439acf39d4c5bda42fbc8ed5f7b74", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e38448f711829f7798b4f09cc945f22d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33e826b9f57bc578b2415d65cc18a025", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cb56789ea3e3d92ab303f3c011cc096", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33cfc7c03b039c3bcab471beb64be511", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76ecab2aaf5df74e8b02f5cf5362960f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95a81b88ce677fdbafe71bf42e39906b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6bebb3f3344311d6cfedcb90393a5c2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a7a99abde88a072309150766c834ccd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81acfaecea5c34562d47fba4962e34e9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a3b5cc808d830622ff02ef2f2cd770e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0adc465126a4bea92ab4000585c2086", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 14.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5dc00138210d20bb466915d7504c38c", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6278769afa101462a1606efdc3e825de", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5e235368fee636e7e478418e1440974", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/runProfile", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7b38dd3e232cf6137d4388cae96121b", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "moduleId": "UUID", - "profile": [ - { - "celsius": 37.0, - "holdSeconds": 900.0 - } - ] - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d48b09b1b66eb1aeec381964a426bf72", - "notes": [], - "params": { - "celsius": 10.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "586981d355e087139e2f76cdbe3de8ee", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4b2d65f6dfccaf5ba527e21647264cf", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2533fae37d69a0543196fd6af07858e", - "notes": [], - "params": { - "message": "--> Transferring Sample to Deepwell" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3ea8a0583e6d4f5bc34158c3f9a1519", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "112dd48f06218d8ad8cd0e1b9ddb0cf6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1802b5658e4a0fdc6e8a49cf097b2fde", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59bc80e8bcf40c19354d81893b9abdaa", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1ea0e32b4ba29bdb4e6cdc7088fa47a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e94ef88f55bbb09dfc483cd58c7bb24", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e92fe7c5d02ed5ba985527814eb26b1a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bee89c773f0faa954870733c01d678db", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30690aea632b583a98a23b44f45eacb1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b9936ca1d2a2e6bc3d72deebffb8113", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c554b110931da840aaf7b3400eea8112", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5d50aefbb611fb332cc7e31a3dfefbf", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffbcc8d063a78514069655304482a0a4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb6a4360d6d0b3b21af86b08ea8764db", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a480cd531da5ab09c4a1fa0435b22af", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45618e03ebe47c372958440a5b5eed6c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9becb52d566eb226549309da60f62f0b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "844172dd51a277daae83e206f0ec47f7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2976b9caac462c6caaa8e1c53a3060ca", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a7294fad4402bbdd31c9a36fa0e2f37", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "602bcbe850f945c3aebd490abf9b02c0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ca8f79b649dbe14600624ced11a7fc6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b25ea2322b57d92d6d36c140afc1c3d3", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d00adb398a54eaa599dc28f62db4345d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "747bb061efdeeeaabca110aa25038080", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51c144f39636c159ef1a06c6e04b10ff", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f826298c11f84738e8b595121698efb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0e94c40975ebe924dd6b165df6fe037", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e520de19324c2ab18ff145a7894f6f4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fcd9bef847ac2da02a17b09b5f32157", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ce3ba34e6b97ad069fca2140a3dbb87", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92963344d8a6c03456dba9aedef15dfe", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0c1ce80b2d402604dec0b7bb1725655", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce16ecbf7d666e1a5b9a2fcd3d0b56c1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2235af25022274a5241806867ee50b7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7faaa95e7e658654c55e01160de1eb3b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e47232ddb97f6ecf3cd18b6eb50147fe", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e32bb79302fd68b20347500a6614acd8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b02deb51fec8180a1ab50c7b92f55fb1", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c01b9b147c0092bf1893aea7b64a1401", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9533a174de3db7936799a65c8c1bf568", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b41f8bb48195b18422004053dbc419f7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "faff67de0e3f8ffd3ef729aafdcff8d2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "461f01a714c396473bc352d7833883b9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d4b77831e15754143767f089897142c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "406ad1f372f9b34d27721a046aa466da", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.75 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 1.510000000000001 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad1989df252d831508993ed8f98ea7d8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e09c04e81697504bde1b0eb379da530", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "567312776728c510ca0f70bc79beabc2", - "notes": [], - "params": { - "message": "SETTING THERMO to Room Temp" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8ec730a4365926eb4fb3c621e4f6ee0", - "notes": [], - "params": { - "celsius": 20.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63547ef0e45b067a4acefee20ac64c75", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f95a3aab146ee999ee0fcf1f75d1152a", - "notes": [], - "params": { - "celsius": 37.0, - "moduleId": "UUID" - }, - "result": { - "targetLidTemperature": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "000ce08b8be00167c50e11865207e35d", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf957893531e5a1872d42b2524e99be0", - "notes": [], - "params": { - "seconds": 240.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d03fc0d8f51ca4b650b625587ad4b057", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76dbb379318a4893505a342b70e0d850", - "notes": [], - "params": { - "message": "--> Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e2d6eb26b847661857699d65d0e33f5", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ecc68c3125336d611ad8295280786a9", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d627e020bacb87a5dd7ee1dfd139433", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f30c22e5838191a747f7a81fa05fb636", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac5a6ea1820160e1847c4804537c45b3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42d8946fa7bd52306458b6e3c7d85fd5", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bac125258d842893eb2b867a1e3993f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a8c5029f2ae3867de7039e9934abafe", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f15cf15203da981cc336acc9ffebae5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35b5dbb82be3ad37250206e4669f86e0", - "notes": [], - "params": { - "message": "Adding 480ul tp 480" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dea4496f5229e88cee65d6b48a475c69", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce7382a25c86754b4d9e1e2d61a38253", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e280a39558572305c53e85faa64e4771", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d27691647e03ba0646620c0abc084662", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8640f1b5b043e43e7dac9844b320c86f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80b2b7295a63e5f2717e5f9636926556", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08a1d6ea072dd36b4c8ed5e5bc716035", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a13695188053eb6b7733ad6510b9ef1e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f10ff3d5d84295ed8ffea436ac24003", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "054a9464f747d355e6b7a4447971a35e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ddbaaade0f173292e9bfcc16856af072", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5ee97189e81910a1fb864c702828e13", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b744fcf8aeac81833e75f08ed9614244", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a94a38694c7ce005e10ae074775adc8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f80647c9ea52e584276e5e1aa12c46ed", - "notes": [], - "params": { - "message": "Adding 480ul tp 960" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bec15378c818be30b7337ca484623834", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bcf36eef41e45074624dfaef8aae640", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "041f8058b272ad0a74eed65c80efc1b9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca8fea523e855df2ff6731730a5c2436", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32d5e7c919049e1d65ff309c3e20a481", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2f2dd1c8aa39a92a3aee6d45c56e485", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a83b053b72f705bfe54a7ce03b32ba0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8cd13a9f0128f2e5e2c1a1fbfea70db", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "251d7603b1dddebbe858db61be606be7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a5df53a373b104e60ac2e3a8f9b0183", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eec0666e18146efbde572a140b06cc12", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "129bb4e077592294f49d414f90000222", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d32287a3ea3b7c9b3e44bcd1915712f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d25fa076346d053fd74b6b9be5428558", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d368da824b8d0345856350dee37c738d", - "notes": [], - "params": { - "message": "Adding 480ul tp 1440" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "156edd2ccee5e0fd61e30bd206a3501c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2dab3c7691ceabc775d5416bf25e24c5", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf0f62d17a90cc2d004e171ca1258143", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e84d708ea7c22cba18e174329591eb91", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47dbff7705ae475613f38d9374f2c354", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27492e91f637436f0f7bee4ea6b3f865", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63193728772b06b4e9451fc35a49e37a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3edcb06ca1515196a4d701cbceaf4c3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ee3400b7f223d160005c7cefa1eda32", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d88811cace0e91888fced7befb8c6961", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c25a642d77708c6115f44c044da8771", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5962dc16ebac14e2a336b80559c9e574", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d825086d84da142b4123dfda0de739f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4576a3a44a8db9ad1740bcf85504377f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e79707a63d60602fd067b2758161c57", - "notes": [], - "params": { - "message": "Adding 480ul tp 1920" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06005483c4da01810719e006391b81b4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f4df2c491c7462c6b6cdc29ec54eea8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bd3e8b721f690e66524d84421a09fa2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adab6f137b0425f79cbadb79956bbb3f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c184d6a03b25dede3eea7d411512623", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9456c6bf3d29cab217ed20239c02883", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b3223d0609992b80bbab18646dae177", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05f926e0829890c7eed6cf5f814348f4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bb3c99ac4f5a4778f62db62ca8c5c65", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a73d77089a0dc1f4aca869493f0408bc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f5c404efa9b4ca23bb96a42c817cd2e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db383b698ce4d35ca2f9e03a3b93363f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa415b830ac77a673ef5a432914cd768", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ec47e62fb54ed4a2ac600c52a393be4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7631b6689122aaeba0c7228789b8c56", - "notes": [], - "params": { - "message": "Adding 480ul tp 2400" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17b1ae9f1462943d7f16e21b06be9237", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92808d4d20713621d328de4fc458ef84", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74e2ceb0d3d0d4646cfda1dcdccbb3a4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5edb393d33cd7fc6c30228587eb05620", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93fc6a57517bf008976b12755b4aa9b4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "765673daf72fe8ba2417be2cf5aa3cab", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5984704fa247ba0bc8f64e42ae3df6f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a1f63848e819ab6a729b45fdf0f84a6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bff98eeb707635237d1a2325ccc43acc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cbf4a5e22a428c58bb855f6c71acc0a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ac1002fb2d8ff21f7c3c99637b9cf95", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "580bd5ee532f3a2a71f210e69afacef8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7bf9abc6b13e601f8f2002d0812cf50", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f93902f368874dffa156b9e40252c17", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9db4e4275cff164acd718e4d8b44e09", - "notes": [], - "params": { - "message": "Adding 480ul tp 2880" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "397a9a497d323f6061265e71f9c5c05e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f440d65a3a0377151fca2eb6b1fd44f4", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "916cae023168d8c8fe194cb0185f4bd9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6178a1cab727fa3fd3c9d76b4f4c5d2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd208914ecd3446a57dbdc869354b7db", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b7a6f2424ac6c21deef1acd171d49b8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84241a04cffd04abf95b4281fb400d57", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f53b229e4fcd713890ca2817a0311e4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2712a310a662c70a5df80ad0b2ce995", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff269f6ec5fb197377b999c3fd48968a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f96f89200cc97f48b1c57590533641e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f346719e353c65658080bb00ec0502bb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce30ec763ff052c38471fdaa65779365", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2fce8b0ac61a68ee16bcf295e8aacee", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "844f336eb5dd75f90854f37b34d6ff85", - "notes": [], - "params": { - "message": "Adding 480ul tp 3360" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a2bbf70fef9f99d0c41647ac72c3716", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35378acb2cc7b7112ff87636facb4cec", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b59e99b32243010656b414406dc95870", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74e3c86f255dee16ba18deed0b1c6e5d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5da8ea775fe1644ef4a790308fea4d6f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "099af073618ae9caabca46774e108e5e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f72ab49225f1631ebdaf1aa1d0117fcb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6fcd6f2d5ede58bf82d8ab58aabe51f8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4ff9dbd8d8487acbeabf6492f64c126", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b3f4e7472c374f8a438442488c794ef", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76b9ffa28df67f277a3037ca1910a806", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4d7dcabf2fab362fb79782815fd1f48", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b443afd5b62b6b14724060c5db8ef5c2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce35ae4654023cc65f018c25e0b01628", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c850f76fde0f93f3c85a3559cb27a4b", - "notes": [], - "params": { - "message": "Adding 480ul tp 3840" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17163ef520661c38072bfda33ca1bf88", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac785a02d1ddfc9eec4f76bfc0689570", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c6b22d67072fe5f19d14e64d4f2e615", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e557e22b4ebfc4efa1267499c29096e5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5613e3f9c1069cb58407275d84c599b0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "187a37a7a1b2453990654305822b53fb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "201334ed269361835e7308f93b49697c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7095a8a8cd51be15f33b2060e6f041d5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa4c06600b4ba6352ce11e96dee940bf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bd6954831e38027e90554ded8dfc340", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "346651a6ae9168b7fdae8bcdaf8bd734", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b71d8ef716947f48e5106d9e45a0f38", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d88c7bee3e9fbbee17615bbd0f165f9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f6754b449eff0c57a74839401f1e289", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6456df4e3b4be0e45eeb0ea045a7355", - "notes": [], - "params": { - "message": "Adding 480ul tp 4320" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89c7875dcf282546d042f797c40ba83e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df42ffdb12063835888b30331e837599", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bcd63dc3015c0f109814dce38000cc8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "693bbce042fa765beef4ea33aa62e580", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a966541ef61259dd658aee3f54375082", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2889d9066085a61524d87e3e09a5e80", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72b77e1b350b892d25c4148c4da56881", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3825a9d17ec39060907c89e1ae2cc7fb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cdaf75749fac85f3fcb3f0b01ac228f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47964e975bf0a7a9dc7cc6b6fc63df2e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ce3bb2558d04e6da397dfde1dde48ae", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c910a3f448632a1942cfb3db5cd6eee", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad1e037c23ae482961371c1934c16668", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c1b6fbc2367b92cba3a7cdcc29abd94", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b5c686a33bbaef4c632f52ff2f0ad19", - "notes": [], - "params": { - "message": "Adding 480ul tp 4800" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58b59363885f8594155f10d0753ed61e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b7d4f59c455cd9c4036f21fda43a99d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d362ffecbff3fc93694ac323dc99203", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62b7c3239057935229afc525f9285277", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "908651b4d10a063dcf25a7e6a2d50f86", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d07a8ed85a0692f84f822833a85c6bd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dff143c252b33d62a3af8f795c2be441", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6782c7ded7ae82fb2ed8d496a0d85620", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87d3da09d0da714ea06d1a6962d465e8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f07601c8dbd21bcf5eef8fd313d69bc1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9144132a660a45afe36c335d1255981", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61f85bcf6d085f856f8e9d108bb102fa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d58d1e10461560cdf3eea865290115ba", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "874e97ff0858db71047502604061df34", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19215bab2f42840f8eed527c7c07f391", - "notes": [], - "params": { - "message": "Adding 480ul tp 5280" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2c10dd36699fe97b4884a6eeb535463", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5aa8d6c79bb13bca59f33117039baf85", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4461c499734729a083b834870f9bda8c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1687a8f13055d89e7b349867c12f9dde", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0233c58263060a5bdececf31cd991e3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9115b20154f6f57436f8921247ddf584", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cab99b4ff85ae2154da90790be2e6dd", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "208b2f11a4fa43b13d29e15691332b4c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afd5ed7cb816fc4da1036fe1537eda6e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8f64e99b04df63d222129e80ab5e663", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ad0f0234a9b7de7500a69ca1d517717", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "783462f298003aa80b251a84bc6cfb88", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2092392b49fecce58ff9e8f945801695", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c5cbcc81130ff29efa86a758ea7d0d1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 74.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49dfd69cc30305812c46bb5c8198d4e7", - "notes": [], - "params": { - "message": "Adding 480ul tp 5760" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b019e06f3f65b0753820b9d9f80f26cd", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1af14cd08a93698547e362ae5c5c64a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e661e69e0be62e87e69737dc8d3e9c29", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7962dc97c08bee4f4a9e39c5053517f4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2343386c446c5e4cde53ddbd0fe97fb8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5227513136103d7ec644bbfff1d30783", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03e1a5fccc4c1de891db26d8dc535de9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55471814b700e766816dd87f47cd24fb", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9223c52a7e25de7ed94dd5b85e7e3569", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "837f797034c971482551d62eccf1281b", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3d3b7b95e945f77ff2e874646ea0a12", - "notes": [], - "params": { - "message": "--> Wash 1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36cc40399b5a052fc4c2f54d80c13440", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06a1328e1b4acba09ee983ccef62dee2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b226cf40040509cf506c4a7f148143c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "830f6f3790cb8e4027cdb6cca79a4cfd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fa7db8b329016eac4da94ff23c957c2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "300c1e3c9e81afe230cc0f10374b1b79", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "122eb6c0923541ca5453790dcd724fcd", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "987fa556a87c411e6080f13ed6779616", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8980aec6a209bc0946e7fbf00726da9", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43c177adb39b3a9a2c7b9d87d2674674", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13dcaaf8ad01d524233370582a9347ca", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5983f7f01bb77689c40d377fd88565cf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0db0c7cf5dde5a6e24191115ec4b9fd8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a0694da316767df53cb9e48e363ffd5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53c21f20b42231c91180b60dbb6d41b1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cb6e8237f9e1e441574315cacfdda7b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2987bf4446fdf57d1238c6890edc6edf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae144cc3b2885843bf52214aa650354b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "408ed053db4af623d76ac72086a4f5b6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7146aa0dcfe5598065c7cd0dffebd925", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffe6f847e90f960218f2005d4956f389", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "298f6968ec9c18595430a154f40b05e0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7dbef97b07d00265b995977d08cc50a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6cf60765e2686786a76e53bbfaea920", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c3e99c03ac6d84d1ee0b4163122977e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24da03ba9b8d2b9bfa9f7496640422af", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1461be634a51fac9bace7aa556b5589d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35de4b46467a401862fa5e85faedf99b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb9788dbc1428e406f5a333c82e798f1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c54e8fa329725a6ccf838ef21b12bcdb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bff285297847151ddf04f3d902b0dd9b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "949e82208ab2281600d37c6066b767b4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d5c4f083b61959a5302be524dded8d1", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3994ac9e9f845f90a719f64327485645", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c902af3c03653cac924105d35fa53f4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "064c4f7c0c83363e4a8ee5f52893311a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9b5773c514647ae6d7a7cfdcddd269b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5db4816c680b1c16477566d03c063ce9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "488d51137bba6cda64444450b2ab117d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a99f5405a3b98240fb337199fd836666", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc3bc498ceb6939ec5fba2b768a05737", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f52faa29daf963de36bd9fc78fe315e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f653b04455442b73ccf5f56c0880aa3", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e10a66b271826068621f8fbb8624148", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9215d8d8ca7721e7b06bedfcad15d679", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c026d1d491487b57ff1bdc323090f13", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d78f2771981b7db36a7c631c1eea3af", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0e922f0853adcea635610399efeb8a2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "002cec8cf2ce6149d73da8fcadb5f174", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58c6807e6b76284b6e3eaa964f16cb96", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "914937ca5418706cd4d67d68645c5edd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d08b06ff354c21ccd4f94eab4a9e4ce4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2eb89946ecc2184d22c8fa420272db39", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a8541a40b211b2d565a6652e51df3cc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41a86fa97eb172afca24085f92a0c5a8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b61a1e13318777b696b0cdf0d18e3099", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "659af0727bde515b9e09b698413d5cda", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ea9f9063da203c3fe743a298229c04f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbc08e9be2d5b00a796651009bdc0213", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13c29e82759216abb3242340b63fada8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20e03c3008fb2834ffd3fae130ffb0e5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "054df269f5c87fa49ab9b8b2ab37cbcc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f5830eba8503d5bee9e66f4d3ad3747", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f45613c34568c7348385ff2c323b3efe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f7f184464b9cefa93c0edf58c0de9f2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f33d2ccbe966bbd31123109df5e759d9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b871b9c0aa9d94c46032ee7f57cdb779", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7872c24c5553cc026f6796c04527553", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0b9456f8197566b60adfd6cd797aea8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c455b0a2ab4375aff2444ad45e16d3b1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22cd4008f1e87137d8ea4f88fd186050", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd74265abeeffbeb0a95ae676a4d22e6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4b3c927c5ac8235333d5e564206ed82", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0e3401995cb4225afa2d9d1592f8c8f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba22ff34ba1d235925bf7d6d84941921", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d95a1c783b5d19fb20b299fca35ac78", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "132ef3da6fbdb6c839b41cd8f659e3ea", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2161a18453b8c77b26d6945badc0b36d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d961cfa1d2ea1ec38c3fe1392a30870", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffbfde78243da3635ef7cdeb7ff4772e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98a4355c401cda40ba5e18d740edbc52", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5d92828198b0dadbd9d19ecd85a3f8d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e9e2acda930463ed87bc01286d232ad", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ca7304afad3e44ea89d1b4dd9c58aec", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4f9c417f8af5cfea818a36c5cba4d65", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41df223360eb238850f7a7201bf19dba", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0c3c366411f2d4cfa98a7d5c92fa490", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7c233ef51129669af74d847278cff8a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "060d03159a36f6a7c6e852b57172a0d8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a23f3fe315533f83dc300bfbba196b90", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55ea6329d9dcc87608ff2e8f05fbf81b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3ec723d836b5aa7e5558c89b2367a08", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef1f2a096dcb4f843e39409fd3ec6f77", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbc8ed0dd1a624758882f4e250609f0b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "552885a1756354afcdf25e9431b1b100", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06105b1fd6ab743bcd1195d477ea4cc4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfe598faf8ed1b10eae87b00b437de60", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf578ee788e720a1e1e297a43660617e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "918a522886e9d065affe0ed78a1a41d1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf84157569b4a874c6c36b1c78204baa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6a4c53f45a71a23263e2d2d67f0f4e5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d0a6ccdbbf5699cd2895cc341513daa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "613c3fc5998ab589d67bbb4af1c78203", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5f446ff6ea97e8e0f506677359488aa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d2501e38c96dfa91608419a6f0f4808", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a33e403be3b9fbf26351de8fd1a263c4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "050cb877e831c27bf2ac0ca21b630a19", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47691951f634acf91cc6f25019c730b8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54b596d3bc795cb2f0d4dfec354c8e0a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "479800c04cce8d12f51c3d187087e1a1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "217f3753f7fedddd324bc836f66dc0bd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "835d5e963cb10cc9e7f66b0309882156", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c9b65f3c7a4c663a434a5ce7c8ff365", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3188ceadad5f1231fecccb6e52b3060", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7432fe8b81762fa5d62aaeca51656ab9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03ca2e518b0c3199429d46457f1a280e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ed9eccef4766ceecb04179aabd543be", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e94ec26624c406580e9cddfbd2c3fc76", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f685fd775259096db1b8c733c1e131e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6946d32a76d03ffd48e8a0085cb05cb1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5db84623de03a9fe564bcbacc216c7b6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a11bcb714721375b16f510b037c04c6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "780750ceabf28dec3994f2e4284143ae", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f203eb2bcf6e2fe09c22d99cc54fbd59", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "943a18d5676d1a4b17ce138e8639d536", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67851b716afef312f4aff474b0aee89e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bf38f3752438c314757c839b7b2b3b8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7b23d761d7a20c3bb38246bdf4d0f20", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39bce4ef8c7cec250cacfdf0b6459765", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b97f91bc9673cbd2d7df6710722efe56", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84b9c16ea285ea13d67fc16503ae1e3f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86a33098dafd499880c735f2c6632993", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6f0d4dc4bdab783a74bacdcf7ff6ed5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d09ad873bb37655448ff81ad02ca94c9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e7b2954c9cd7abf48e3fa1c09f2c348", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "905cff7805d9f9a41ee56df53b999d2b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7376281c7fa87b85082152a2d0f23215", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cad4d584c07d9e582d949c47f7751025", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dea958ec18b29c1565227eb079b368e1", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23ade919be98bd7663375c0f283aeb62", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ce40717982efc057594168f010ad0b9", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0640f1a72bea2aaede4007764c68a1a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15561e8adb35e976e4965df848f8f212", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e5862cda34d9c9cee389705e062de17", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bd99e67998c6cabc615db18f41c115a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bddf65d3df13f2df956475e46198a45c", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "489c3e32a55df9ea3148fc339e4bf94e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b015b9a9e6c61dee9241c5c3edf30397", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d1ff92597e58c6115d585bd39c0600c", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04413b6ee747d487baced7c709190e8d", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fcbadcccaf09fcae745cfa8629d2599", - "notes": [], - "params": { - "seconds": 180.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66288ac2785f6c357d4a65be74f448b1", - "notes": [], - "params": { - "message": "--> Remove Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b13327b06092d6a93e5c315a85f9587", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "321a6383619702423b3d7f919bff29e9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bddb21aecd366195fd3271e38463d375", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "761474c3a43fa9357016c782e7c420b3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efd386ba1b22c483d216afeac1a7533a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96dc4fb495fe31fb8827da6cf0e37597", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09026a655c8323a53fadc29076507d4f", - "notes": [], - "params": { - "message": "Adding 800ul tp 6560" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e521d186bb2c8bfbe5829382830b07a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1e1ab1d62eb5e39e4a57020d78f38d9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44cc0087313910e8d54a656728404cef", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b0758360b430776c8624cdf04a69cc6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2b907a250cf4bde4952ed65997ecd56", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "166365a6a7d8cd2892efa1a702e9af45", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d98922db302f4610c881c8c614fe811", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aec4bd132d38f3024fb9bb8a54a28a25", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9e9de539c20d7596f27693c786910bc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0982aed5755da278cc81e15a558c6f6d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "435f7080d97e4f0017a4250176b131e8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "304f2d2643890a79f1fffc2a15abddbb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ea50592185142fd3da02cc9d7009593", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5e92527e3fd6fa24226c036c76687ae", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7d60436cab221767e7cebee39e8153e", - "notes": [], - "params": { - "message": "Adding 800ul tp 7360" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74b6ff3eff69d32d9787e9f6d376d6b4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00c9b9493ac8ffb089bbb158255136dc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecf141cb3813895523819757d432cd25", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27a7fc1191172e10f1a60cb5ad5dfd66", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfcfaa8817f9627f5320f51e19fd83ee", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a5d7448100806725cbad02bfb9d65bb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d2e449ea21dac1b594a51a38bf645f9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8724127b5a99b84a5bea2c0e68a80bdb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac17e7eb11e39206918ccfd3c7352a4e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6717b2e71568b219b6fd7d93e4af5b84", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1ae304edc8332bf25626a8128ba6fb1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ca5db528eab328f861714bb7abb4ee9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe25247411534337f83fc5aff1153ce6", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96c66dcd4915cf0fe75714a8b15599cd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76b118e3f1eef5d4f8882f0860e0c017", - "notes": [], - "params": { - "message": "Adding 800ul tp 8160" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebd23ca41eb9fe47019cd5233c191947", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92446a240d21c8507ab967a39be54eab", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cb54d773559b8ba005b01f27643501b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d77c9797da113410eb5bdd47d5d21bd2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0aaf3e666042f899552bd63778e0b5f0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00d9c9bf4d6faf39d361db2d5f6aef1d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fb1882eea9f1b471fdeb938dfe89844", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "deee635e7054a51cdc02bfc301661762", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c0c2db09b31e17a1a23af81dba25ca5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a799fee34fdfbe04399b39eabe96a1ca", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3ea105d262ae8cd4f85db184175fb5a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6bb11f595a804e1797a69c66ec98f52", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3029f04faa83fe233892447d3fa60ea8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b84ec65b3e305bf7890f0cb311a77fbb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dabc5cd6fc17c20f51e777a33653f99", - "notes": [], - "params": { - "message": "Adding 800ul tp 8960" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fad3aaea5eab20590a470270fd28c077", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5088ef0f8856d098fcdcd1b09f9ba05a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "150ec6d91dbf47a82b56ea1f795e9652", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89dcbbab1cdfa3bd9250c7be6f81c820", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fb4512e5521398151d03460ececee5b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "627888152198a7ff469b52ec06dd97d8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aca0402a090c10f9982d457271d496f5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e6a0a58d0d665f4da592d630d260b74", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82549b0f46ea5ba215ccaed35d268ddf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab9059282601c4a213b4e7181a65d9dc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd2c496d4e77315f361175859ad2e2d4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90dd66ef207341603c9938e217182f17", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ee1909a1c1fb712aff9fbbf8e8ab13a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d7281025e11a1ab149041ba98787f50", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b4576de0da889a536049efaca6fd2e0", - "notes": [], - "params": { - "message": "Adding 800ul tp 9760" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c6d9417e42189231aeaebedf0e6c401", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eca46b498b6e2a984332b3b3d972db82", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01f243cd193e14ea0c1dba905532464b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f3567c48002eb85ea31df8e575f70f6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b19c202927809d33e7f6110662118e0b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e7977fc72f417d512bd57e74ef61d73", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7385b6d3d949013f8bb5845ee577ff4e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97a29db6cb5b6d2c485875d6d7383903", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81ad0dfde76e50ca9043d557ed668fd6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b74da47f04d4736346334eb0c46b94da", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e304a6c917c1af1eb2792d369de22bf2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4dc953894924dba302035e96d2f18c68", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c76b550a4dc546d54795955b4c3240f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43e404d7b093a26791dae87e42850d8f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f5d39059fd3f7b0cee11c42d3c4ef5f", - "notes": [], - "params": { - "message": "Adding 800ul tp 10560" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74515535b7d15a1fa5035d0667dfec97", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0525cb2eafefeb516454824a31d2f6b5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7eebe51154a0f8d3e55fb7dc8e37bfb1", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f1a65c2d88205a149544835e46f50d2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b95d5aba68014481c149ac1aec71a7b4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9593cc97a9f7861edfedb96c8da63f78", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ebc7ba79553c0c832eaf9535b236829", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3cd2e2b09ebba1221866c873d79fbc1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abba70c4bb502153af0217f2d07ab5e5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ba92929761115cd01fd1c63b6326905", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aff05a7c72c0bf8d18fd4568cf7d7d33", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c33ed90cc28ef295ee9e1b17c292a8b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3084956080d1a2c19e76ba776c7031b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d17e4916c2c118122a9aa14aea458734", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9520aa1fa5fa13af619600fd9469e4a0", - "notes": [], - "params": { - "message": "Adding 800ul tp 11360" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3544eafe575e99cb43dd66f09872ba5e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9be5a3bb4d6938fd56b1dbff6f88accc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35e8f046e60e06abd0a7c4a21fac422f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0de6ac4e7adaee939f07490296400ba3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61077e81ad7cf5b6ef70001072e95d50", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ddc3f0f6681168ac5fa98feadb95114a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d5fcac87d2b25b4b5c2726b50fd05b0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbfe8649d7f0606b63ef36553537315b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79a7b13b079e0184e7d9de68e675ef60", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ccd919592ab5dd8e47a436bca8e6a59", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0cce411ba8e7e1667f510ac7df6dea3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d37adc35d8f2b4dffb646b4cd0568ee", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f15354c6251577932e60e8400ffffaef", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a84415b496510d6af7398129e5839c71", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "695756028537b36b927e5693cc3de8fb", - "notes": [], - "params": { - "message": "Adding 800ul tp 12160" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c80c57ad6d486b36bb057a230f3c6692", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5a43bda11dfd13e251da330e351f04f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "243c4215ca106e07bbb26fbc2f069d83", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a012f8b22a7d453253d840ba2cbb812", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a78453f9c09ea76ad88e49cc1d7a075", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "736471fc2114b9ace3744b0a9805252e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86d33041c5ac3d9ce4ae25e424a5b0b2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb153e0e7377a27349c508e5c49b2a3d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb98b28844558dbc60920c408ba6932e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b40add03ffa57352d2c5727e120094e6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "261be628d65a57c90c1c638612575dc2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2166ce82cd0da5ec0e2c85f9136c346", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7907af38a91e79f045c9350201b5235", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f4ac7da2320597c085127215acf9dee", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbec7242837cfc4813b1ebed67a4eff9", - "notes": [], - "params": { - "message": "Adding 800ul tp 12960" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a74c239d6be34cc0637768657e3e490", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "037b798b28825d50733128b22b3cb219", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b21f070e5eb140bf229720081550b7ab", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c98559d107fe112ee533ff0bd8d12f8b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b6fc59039a7102df986b6bc7618b067", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4132a3c3442a7bf4b93da8fcacfed328", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adbb797c5a4d49e09d6213bec08c5d62", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a29ca9bdd923e61f93616fbe102adf84", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6a9916f4470d3cc00864a0371f4e0a8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "504fd41831a367f0e9bec834ecea402d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac6b5c47296900d077ebae05b04558e5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e363a19998a62ba7886852234f64a1a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ad2546f0c81e864d0bb19b94f4cd684", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f78ac51ff23836ac8c9762f23c8b64b7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "210a7b4e585e7f8bfb5b5bd702d69653", - "notes": [], - "params": { - "message": "Adding 800ul tp 13760" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cc45d5130e43de3add61508406d2179", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "487a2cc972e8c712401117a9dbb511c7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8783fb94087d077220a438000d168fe5", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "651d70956750df7b9f5e2504111ecfc0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e44cace576bc5b23a2c0f40fbcd68ace", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81919b0af636cd37ce8ce8a922a6eb4c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84148a32bb82250822f5ddfb2575e9fd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4918fe93456dda5dcda25a2e32fc11b0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7881a7ac019b1149d6a5907efaff4d3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a214b39144dd282c99b673bd7cc1d9a5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e4e5c4aed000383fdadaefa0f1a3855", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6a04f16322bad4006cf4be0d2d2e660", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7a3dd5f40b06a163f3eb2bae5def023", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6e96e8bb1bd58d7220fadfe20111d55", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "041f8b34e0140112283c22a00daeeef2", - "notes": [], - "params": { - "message": "Adding 800ul tp 14560" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c623cff3b8741130b6d3e9be49dbbe4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03aa28fdbef7f841d34668e931cafb20", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cb0c89d60c96ec7b5d78483c7370848", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be84b813725917967a92012a9abf1f35", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "432e9c85727caf90f5fc6b18b4fa3789", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05da170feefe53f90888e674513dcc6d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fb5b2aa228ee6e31baae41d8a6946d6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e457f1da2518c45229966216f38d5a62", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e14e75e80e682c8099565bd0ff62b02f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f8310ead39e75de42e56657156aa369", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87e3f9c9250b1f79c909991537457697", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4724d948913d201ee06d8707810f10d9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e765b812a129e4f7a1dbe58114715099", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a90ebb93e511cd01892e553d69071fc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cc4950325f075b96df9d748856abb80", - "notes": [], - "params": { - "message": "Adding 800ul tp 15360" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3ede9fa6c8eb9db21f5f41c03cba427", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "279afcb2b2c92e65c4b19f072f1effa8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a831b777a8fd6851f4afcb4cab87f1e4", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a66d00a1f53af2c7d7f89a9c6ef5d9d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "036aad789f34799c2903747a2a2de802", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16393ddb48daa6040d06f3acb58e9074", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1db31aad01bbf47ae622d655cc5a178d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31753791d488694b542700e324a3e131", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e46c7b5f135696a01d48d1c0fb3e6a80", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a86669c1eb28f8c88822504141aa866", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6cf77b686167e00f3703cbd855f63477", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf6bf51f51fa3c9bd125626e58733744", - "notes": [], - "params": { - "message": "--> Wash 2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de034cb52ebe205294949bf16adfcd15", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6f7cf3375a7eb9e9985b71c1730cebe", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d299e3a546118c4093e969f78c7566e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49a5c49fd8a102fbcd6f643a5f5cc1ad", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d4d29ec95cd276fd8cbf605874d19a8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdbd573a838db3022b1f7509d3b030b7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f53d3000d324a584ac1416ac4e796b38", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "102f6fc2875b1135f4ac8c6cb8a7b7f4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8828ba589e945af8d46bd7c93eefdfc", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2742df1a4817cbc7a514d5e32c87ab9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16b1b852bad491c0a8a634c075d417a2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "519340618fdabb94f1c6cef6cc58f8a8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9010a2e37e86071b1bd2ee9bcf41fca8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a2bc874d844afd7c78467d7d9e8de13", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b94d5c10033db5f437255085f4209e9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c572b5b8889c9468215dc0ffa43c0d7c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7601a209cb28f274f4abd14754ec1864", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "134f1b76ac0dc135a03e23e6058b0717", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eeeeea6be0875a87edd0603965577d77", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96fb533f6cc48bc677e1edfcb5601336", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e66ac7cef73c5d6fd01894e2a4001a1c", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8290802eb13897ff6e794df8d1e1c7c7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e4edccff8ab99044cf7131404ae27f7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2db2645a8b0728ca38d6b3d7c3c8ae4b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bd0937865aa7ebdaffaaecc18dc8525", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d841dcbf5bb287ee9ffc19f0764431c5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "488dfe425792d56643f56a23868a30c7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f3917e647f72526dcf1297a7fb71663", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04f2437e63fe95e2a67e2aa17743badf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fb297518bf6d7a601e2f1bc66c306b3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "409e9e21f9f4becdb654da66844ddc20", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfcbd977488bf59c165471420eaab02c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afe980ec7c2b5bc9c7c797894c5988e2", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73b2099635f43bf916936b41872e3989", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69aa6793e3234612ccb3f798a2d03fd0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec1c4bc53171f3c82027a0b9ae89b163", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "280254761e78f3017e4c642393cbe475", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0aa98f87f65a906d8cdc931684b8a010", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5423fe11e7c7227813dcff72117e1ab8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bda1eef8dc30866a2eb4300866de2136", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b8a117e7032e041876c6beb2c14a875", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb6c014493f3d0000e511084d4e84a77", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5649885eeadc62d3ffd7904f16056043", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "872ba61e56ba624e1daf4c488cf4e011", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d01cd131ca20b5ffb3eb6c06316f6c04", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b9c2027f854cbca5beb305750aaa9be", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f27894eedeb671918a4bbb5b60c13626", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed92de059e129bb2b9b38a3dfab7fb03", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6919f85418f28cc81f4439ea95864392", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94f7a56d9ed3d5ecab1892e984f9d183", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5e55e3b0b9d1676f4bc2e4255dd260b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6bc776e1575dec0d6ea44748ce91ca9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a85c704b3d2d9bc6c48398385474ea71", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a04518636344ad8cff5a5dc8493fcb2d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b3639833863cb13f02ef27002c58dc4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e071359ecc96756520cd925accc5ba0f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07777a4de5ab3ae233bb4002800873c7", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b9f768f944bf06a2a98a6ff8ac7ff8a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71bfe041fe7a37d694bd00146b534874", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea9d6b490c062c99843af9f1b2a60472", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5723ff35325e1de360e3e29080cef02a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc57ae14427e7285ad88cc7e05924475", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1e054396edf1e385001b07a30820859", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17fb735b10c05519a748762d6f5ce328", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "caec808dd6fab9b25d4bcfe4fe0ea056", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "beea9fd6fd0c62689541f5f121dfe62a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d16da5ec390526f8d7f48efc119fc66", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dbda8edfb81db946e4623143bbc751c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bfff7bb6a8d3967f8efc15dadbe25bb", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "995bd74c542ae7311e0c6ff1f545b1d3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c78eca52201161dc7f338c3b6e8cc867", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40c01fc3a5d4848f848d7094337ed15b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3683a2f0a070551c34cd2dc30a3ece18", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b1225731218663a041aeaa77203a00d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85e725c6045b7e9a88cd52dad2aa4d7c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd846971ccb8e0ae4bdcb07a53639869", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30569dc5e338dcaf1f505f903a65aa89", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9924cc267e6a536156f2267a15435562", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5d5cdd8175c0c26b4a5c4734ca64719", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffe40c97aa73fa718ba52ac32fed51e2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d7b5fa4e24f185bbd071b935a332105", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb6fceca7499d81a393128a8c54ca51e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6b955d9f43c108e5b93421c4c9bf129", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "006f447031a3b29fdba598791e659acd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "702f2150e29f4ad92f0787971b82207d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "955194e69f03d00b74abe1df896b9e35", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22a0d451ec6db19c5654f7fe424db84c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "709b82cad80a6f1d89bfa576c2f1e8cc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dafa071fe035b93ee1239dbcc4294e2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3137d5ea258a90c6ef4600edf38cac51", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4b45b68aeb7e782097061b79fce8139", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5166314d8892a23b1df73d520dac4fd8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "857f44af2681f7357902bea7afd41e0b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fc2bcc5680d2b3d962d3ce4c50f6f58", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc047ff9fdd7a4af623ed89a280559da", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e074ef1b5cb3be43af4d2064f8d88651", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fccffc7f7977d44589b83405709e2d8a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc31bce318b20c08de3b4bbefad03646", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eabe9190941614ae0b4795c5cffd4dbf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07ddaea37ed7b0f51e36d56e72fb4956", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f22178c89b28a1981fc974e70b727cb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86931cf3e4aacd95cbd93e326e65b481", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26d3a4031b18ce9ac53de811c7c885cc", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f1451962afabbef5c584dea7eadb5cd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92d88720e6834d2b546a8bda536a6d6e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "447856d8702b29a4299fa6e0c054634d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43af0e19bb53247f9e271ff10d3e17d2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "761d9630aba74a0950633325bffa4b0c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b77f56c640919b10c44aca14fbc1bfe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5603f6afb1f4a346634970fcf1389a01", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e3a0ed128af6a3864dafc9f3440b99b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "939dde5be4e942ea386f920a6df99576", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01f71c9a22afca52bf71286944f4fdb3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c435bf05b19dcd7140c1ef93e92cc96", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad378636debbf684c8ea519a35cd01c9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a465be2720c6f766a99ca4418967aebe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6608f3251b9a929619747f74e43de2b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d2feedda484c9d51429b45356d27854", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d70a6983c87507ee49fa0d67e5db1c04", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "267725e11328aba109f9ed9d29638f60", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e49f19e25a52d0c5cd6a57d1e2a78b27", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e22cc3c667df17ab81260e8ed1c23a6a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc60d012c91a854da82eae46dc828f3b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e8dbbbf01b24f94aa0a391cfb1b0121", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23d53a6282d9b4306e315e6bc4f974d9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "910086120060bd914bb69d71b8fd8fae", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2572ba37e7ca15dfbffd6e79e6213bf", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a7909849485f985992c15dbafccc579", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eabcb76a7dfb8a3eec6a4977a6dd8395", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e28ab3eb3a1a59de04441ae1e9a27d61", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23c0398600aaa0e47b359e33ce3c4976", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "019809aacd3af7d2b7d7480a27aaf721", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77472fdeada7d67233d72b73854b3097", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a73cb05cea3e4a8e4fdf3725692b356a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35e6b1a059cbad725b8ab7872f705643", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28b7803fd206c489d03953be017688ad", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0440a7aa9d1b286443fbd307f6617d2a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d783dd98c147543875be51a43d820888", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "265711ea94d74c9a3990fac33a52437c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18986e90255509fd05d99ae5dbdd4a10", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c169ed4820118f411d3abba9a265ac77", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "518595a181e836449a28a8209af21a2e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae07086addeff8acbe15fddf03bb7c32", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f5905bc25018e6369ef7bbaaa212aef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcde61c59e88fbeafc2534f933f15879", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93f85eb39ed56dfb5f8463bc9fbf6b64", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f9bad93c7730183e13a6e6cba1db630", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5b6086f12c62cb380f8152fa8c28a62", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c40c2fcf7ef213ac34db72e115d0fae6", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45835f53cb61194584c6a8182696e3f2", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41923aec808cbc1aab6af3cd2e2648b0", - "notes": [], - "params": { - "seconds": 180.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8da2bef3dd225a2dc1c5cd6753d61cb8", - "notes": [], - "params": { - "message": "--> Remove Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ef6984ae2f89e4719972256fb940dae", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a79101db21600e8563b1afce35678660", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8ab3a7c995b0b1ed0996d5344063e68", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5c26091392cd0244e41c13c087a110f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "687ff79842c547ad3c9bd8a33455de53", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e811876ed2d4a981c168d3d1f89c0ed0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cdea46173d8ffcf25f4b8f1d889bce0", - "notes": [], - "params": { - "message": "Adding 800ul tp 16160" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1fc1712a3ae8329cfe3188f48ac51f5", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c9925f82d91107795265a27c6a1a9d9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08eefe9fd55ef66332440d7d724c4cd1", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3991f6534eb3ee452dd1613a819586d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96f3aef9511ed71ac41a354e54602da8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "521096fdc7d44a6b47ee4fc332f4d9ec", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "686d890e702efe564c24eb88dcf4e6ac", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dee91fb4135744dca48f7859eba8fd5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80697d657224b400d25743c2eb620e77", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ce0cdf67ef2c4179cd86b082145a25e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7236f17b819ea38d285ad555fde2f392", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad5ad790b9b039e3c792a2be60de2617", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2df78f08f598fddee6126225c11bcd88", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "422ed5daaf5ab3c3d111fdc0715725c2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0ce883bba8df9e8a4115efc105b7512", - "notes": [], - "params": { - "message": "Adding 800ul tp 16960" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee211ce6aaf2047672825859e3e8ad86", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7813c5e8c76376a782dfe911a8c7d5f4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5601c372f196c944da98c2f3e007907a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7d41bf80736c3ac851325ffe511ea1c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46c64682b6b4b75818742309ab0c9586", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "433c4700c0780e8c5659135354ed687f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37c3870b8c85d1b4383761c1255b54ef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87b48aa270ad4bb1305cf6ce7879c900", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "154d07843783d83174cc3dcb2c9463bf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57c90865b3ffcd2a862d0b72c7ef9fb5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd3b4647e4d8ff9e25dec574fae623b4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "322a831ff3ba74c4c12e3442d82b87fe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8de2d4ad8e07224df365c150d40025c3", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "245400c865e13d752d39d373002c8862", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "898d15a71838e0e0912f3236303f35d4", - "notes": [], - "params": { - "message": "Adding 800ul tp 17760" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7b786df3a009e1af86930653b613820", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d45c0868262bd34904e3c4bc61b3bcd6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac952b978c8de52026d11ef3c01949fc", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78a9ecebbfa47756e3a6da22dfd5a725", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed0a4e3f98016da2fe4e44dd76945583", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afab29095d0809c6f92106a231fa1aaa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe9a54154c70f4affd441ff829d5a1ec", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00e345ceb3f3533b7da99a8795e12b66", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c26f45178217930ab6b1d0cce5afef73", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e003e4684a37e362956958d6667bc76", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fcf6fd078dfb6aaedea24cc47818e88", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2abcc5ff49c4f9cfffc116a236031939", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f52cbd0d207547a64da0506b9ba1245c", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecd367d1dd96171b7f5ac454ac449ded", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba808cbc99a7f852e1d4f0a7f3ac5fc6", - "notes": [], - "params": { - "message": "Adding 800ul tp 18560" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e77f4dcb98ee2ba280f013308094402c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8381acc0642a894e7a1fbf314a335d9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37db39027b75b4a6a6cc39cbeeaf579b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71cbd3a2da6aa33dd46f720793d55da0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b665c7b47cf50df4429b08bffd93221", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ae85371e8020c8af2bea5db9a59cdc5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61b4d3b0982f68c31a309f3cfdabff7c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7d95773eb18d5cbe13ca834f7723a52", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5d762a6ff258c6f0fe475d4a7b597d2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58c73dd62f341acf37f9e329069f2bc6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cf5be7afc82f952340a962fbbadd997", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a39b3d7271f4a6ae41ca3ed47fe56e2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "332d10ed778b1511c6228a3d4317c2b3", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ffaf0f08b0a6aa382c38f87f7c4abbe", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87eb6b7d48ea8c5d57c8070504c8d377", - "notes": [], - "params": { - "message": "Adding 800ul tp 19360" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a025daa433b5ce48413abdac62282f16", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43afbd7cf8c1d8f98509e1eacc6d5a73", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47fe5c129fc25c63343e8e4df9d68b88", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0eabc551695cd124a2dbf0d2d8bab20c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c56e4167e2de27e8732bcd4e5c4cf30f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "468c0d83cd6f3717cb0dd3a3a13c0b47", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3841d65b284c570a4c133f8fb8de0834", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36d108134306cc810aa655883402478b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "879139c3ac5502add015c9d9ba1804af", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b90935afda50fe3aaec2c32ea346db38", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc522fa904cb287e8b713add29a07beb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf7016198ee29c7b0f2eac9f57fbf6c0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f13fcb5ef23a7ce4bc8c7258c24b24f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9df4dca163c8c4c10de007cf15f2bf5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c7b17aec1e9ed1e565880661f405994", - "notes": [], - "params": { - "message": "Adding 800ul tp 20160" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53e39516bee2cadabe35aed8fd3b8a7f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22597dd143e74432608a0ab20bb18b0e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2b5b398ad0cd61fe879e135fdbd3b83", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7474872d7a3c7871bfe1d889b7f07f8d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1efd3056124aed5b346e87f7c76f201d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2280a85e3d8f7f8f60825209cd25b075", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e3bf1c33756f3ba815ede60e75c4f7b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a5b4a3e53296affd065a2b7376bd3c3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "344be05f06396e5946600fec6df6360f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f22afee8e977a62e266ccd9bd5a8413a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b27b26e68118b462611da00555c8eba0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0652b294dd8e00cc115f7b5fb313a07", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4ab178cb1a4e7071f29b783305a9b71", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cf01b32693134ef52c787ff7b071486", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6fe4c88cbdef267d2647d6af47dae5fc", - "notes": [], - "params": { - "message": "Adding 800ul tp 20960" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1c7585f8d01b43f7413c90ef9c50520", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39170d3e824eedfa4abcb1800506a9e8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd812ccc77cec7ece1997a9353388238", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bba9ab09a357e65ed9a25bc05af576c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c19d17bff0f124c123ed80de3c7f1f2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dffc7887e95c3b432e1f8bca21a0761c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f983ca46e57657b1738f965d87dd5dc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eaafb220cbc4eac0ccdcff16df2981e9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e89f35bbfdfb758f87b782fc78fda3f0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "327bc1ecc252ad9db994be910d137894", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0eaab6b13dd101f13fc57107cdd1ff1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe6c6693465806b63e44f28a6da00139", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d63c58ee5966557e4061cef3d120ad6", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6599b31fedc7a5cedf09fdda3e265802", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b71d34bc9f9ea013b0daf5f9e369d52", - "notes": [], - "params": { - "message": "Adding 800ul tp 21760" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0476a69b323f290df72d526061f8d71", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11f95a2feb12505a3a6206759395d976", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a2853ee598af966c5cb4d6fd095f4bd", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c9acec88f2fabedb4ec0c48fe29ff8a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfb8b1dd1ce19db5943287142b20964e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "758a743b770d4e0a615d2e0a52568a2b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f49195ad43fc48a84acde3c68600cbe7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c935d697394d34d3031dc969e0f94933", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6d01aab2f22364645010a3caa4bcd77", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ab749e14352acde1edff6bd48389a76", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46e89ce542791e05dfb2888b4add8129", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3feb5a974708a1a669aca7f79b3c0544", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d996d0bd9874b5e8fb75564ebb49713", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cdf47e78c561d598fec7abbee8a26a2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c69920e01e8e9afa8868ddd0e90baf92", - "notes": [], - "params": { - "message": "Adding 800ul tp 22560" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52516515a7f696b3bc841f06e851d1d4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2db45e33521fcc120ad3d47b797b5b2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2946b713e7e19b091155fcba7b7e5c12", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d08fa8c3ae46048052a918cada3ef756", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b4daee9b1a7b54246d0a9c2a174058a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eae15038c490ed2f4c1ed8f138075895", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7b0de3d16ba8d380779b28dde0eb09f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eea6443e69c1ebfd09e4e43928bb793b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0218ff4b074a6ff473e0412d48a49c5e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8dde97da653ae5231931338ba9794e64", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9848e535d0d8b73ee4fbe5622bbc1350", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8db50116d17570edcba9bc79a0b931e9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2f9e6104c9643a13d694ab9a0584e81", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d7f9404be2c76ad7e41ddb1dd9ab802", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c10f35fe492ede7100f767f8ba2462e1", - "notes": [], - "params": { - "message": "Adding 800ul tp 23360" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7d89cd348c2c705b51c081cff9a4018", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8538500aeb355be830256baa5289d100", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aa74f505599479b2ef6f9a6798441eb", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cbcf8aa76b0a2380d032c3cc841fbbf", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a97dd89b7cd3a05c0b1ac0bd3c4aef5a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9545a5cc8326c44ddd35498fd2ae164a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00a4c203d54e9f048ed3e9399cfdb82b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "992747902dab83aad6141169f4b1d8c0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc7180f71659e15eca6b4d3aa31d78b2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33537de4f4171fb321d0c3fe45f92f08", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28d83150cd5554d37d6839f62ba19efb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d38348d893b86fd74cfd542a75648047", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c2ab1e5e7107610ba424a9e79152d12", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84e78b6970ab8c3b1f335233896eb3c8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e8097370a887c0cc403592d39eab0e6", - "notes": [], - "params": { - "message": "Adding 800ul tp 24160" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bef7221d9af95996d3a279b038a1326", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "597b2935e0ef992b6a0e590fbddd4986", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b46359dc44c18215fad55dab5602fac7", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d49b6d2f76aab4644368317e1204645", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa306c5da329bafd6d251a1a6e05266e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "296c34956de22aff5f7828911bea8994", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49e54c80cc57d770d0bc1d6c6eee6ab7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e887ee98e540845248f6b663cdddc2c3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38274ce57365d80b02653c6d6368cf31", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9aac55402f1ea8b6c1000adb7d85638d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7eb53ec58d8c179cae9e139dba1c12ab", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88c76c4625ff2d25555920180af63b6c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f77bca585c6daf6cc55c05da204fbd06", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03847b446347034ab527ea51f7bd5245", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72572d1868d019a79977e2f93544a2cf", - "notes": [], - "params": { - "message": "Adding 800ul tp 24960" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "759697e4885567a7c771bf2138f3a146", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00e64bdbfea885a0a6b3a243e8183102", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad4213da64d2d41e7304ae7ea1851c5f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a5a842b40a32cb6b03ca32c795c84fd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7096a3c73e55cf2b36025e4ec8867200", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac80a7dc32e1a2a832ac470d196eb021", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a37e4bcd1d32c08caedbda12ec241cc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "058ced2c5407ce7b6783143a817f2490", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10db313668813738fc72d8a5fbc5386c", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee23c9e11584c44a8018a891d527786b", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02ed05946e460286ed4266dbc1a41df3", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b20aa0cea20737af2bbd9bccb3dbc62", - "notes": [], - "params": { - "message": "--> Wash 3" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c9561a3cb1e267d147f8bd8c0e3326b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5295e311c122379a53720c8632bff381", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29bc799f35b0ececb0164d4855f94acd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee803486ea88c676a165cfd7e9f238dd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "453a7ea8a772d3a091db4dd39f74987b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b51e080320f3788dc06c46b3774791cd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36e2cd056616501b9ffd3303a9b6046a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c65b20ddadaee55b6ff45e2c7cdedb57", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "004f5c8c3c5a88aebd4aeec9cf811850", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbff582be2fb375ddc04121cdbd5bfa8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d6f5ce115500a6b4786c594636c4307", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d868aa656c16119b83dc67d6c3e7f5c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62c7a7a9069291a85278c5ac1db8dea8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74a0d69b85990e5c6796740eb550486d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0dde543e8e8cff61cc0e533b8cf02f81", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e577264e399c11f3d8799cf4cec9254", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52f224059ec60f43f64498d5cb00efb7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35ae1ef337ad6554a9f95155cac2b469", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92695dbc94b0cbdef04b77a7c91cac1d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ebd34b668ed732902c4a845c46fd7b6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a626823b4ccd7a146096a4f1c98cefa3", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b104fa9a0d7704ac8e85569ac3b9d87b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d053c14874613a8052fc0690c416828", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "595c014864ff8dcdef85c1ce22daeb5b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa41971939f0227fa3b1840971013dc2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "825a49a190cfe4749c55a5a6bdf3c53a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec8ac09e873192cf20d33b088befe4d8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0786354b16c4ce899adb2743c31e419f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d80ba8bb887397dc5ca24de26f78b92", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19b7ae87d911f5d18fd39bc765faa38d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0af1d3ac02bda0412e2b49535ec18abd", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f90de7025f8a94d056b6ca8007026ade", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2bdb5fc364f6d5797dbd891194add39", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ecce916933ed98c635f70666ae15559", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93cc88ee27bee0898d8088f7d8cad9c5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c7ba6b8accaad2b5e737b46f2b8d288", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ec3feaf79884729f174232d25ac9aea", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da6afc8890f572b8f8501e03ddc87707", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55a8dd7583377c89dbcce5a13d471fbd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "833e7f6b93dc138d6955eb454ceaee79", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51901123613c3a1b6942e9cf53e3ee81", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd250d89bc20df5bdd680e52695131bb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ce96e90f369b419f643da5f835a97b8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b678c05a15089805cba79c35a08bf0f3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5554b7735e9bc4a38f78b5c3cf97a43d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c9195a3f369346c0c00d18d2fa5b7d0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "769c258afa501d4aa82374eb928c668e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "031607f459d8e54f88568ed2bab411c2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "809a48da3fd1712ac782463b63796468", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd6bd57f72ac31db9910644e46a0c225", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edde1f5c15ed8c144bad1eb12f223f81", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b25c754758c6ceec834f212e380b7174", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46124be79fabd1b3cb059dded95400ec", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b973fd2642ba3c2a092a33da49578f38", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41a7ef7423c778c499e3afbe7fa2be64", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "033982853df2c09a8477d78232beffeb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68635cd228e09ca2b50929793a477cae", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "204c177f27a5b12753634396e8a5057a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6fb1254deaf86b38bf525b46cdb29764", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e56efe3252333c76dd68059d3e5a193", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05de4571f05621553421c54a747b7482", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fa0c48c977d8329e5f92cd079b27200", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c341d02099f7a9be29d38f130aa11f6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f50213c4da700acb75cd030ebaf4a15", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 200.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7240ade8664122c67abad956e200e9b0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 192.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9ff424643720c70e627f2afb73d7f76", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b10dd4fad150f75ee92ae5c082692ba", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccd6d96b980f2bf8bf66e8573d344c5a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f36f62a0b571df6000fb489c41b7ba21", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "684ce5cfb669171af1715f9aaca890f3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7033a61dd5d7fa7b58252454a7d99cfe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf80ae3b9c262cca0e48ee2a547b37f4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5feac15667743ef525ca6a9b32da019b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cb5d4344058296a98c1bd78744c9b10", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "469983dc79623879c692ef2b3111aba3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6f2cee6370392b77a2f9614276784a3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cd955a321f3405728c993b9871d57b3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4254f3ebb9a1040a9647159b1a7b842", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9642abe5a059127479e16e86e95f3857", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e999710a5e30a2b83b47813ce35abb3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8aa77135dd4fe94b968fee4907b152ae", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "956210e204f066cb5ac9adce820e0692", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd24ffc780b52ba45926432dd79a445d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72b4d86d1e72de908bfa13e1b5b7086e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c584de7510d8834855afc79d17825677", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29f8a163b6a73968097147ce9b898dc6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "939cbffa8e61ad8a0ad576fd19a51c83", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd45c00986de957a00080f96f5263f37", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0cbc5516a635827edf6e8308070504d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d405589cf8a7cff41ea9bcca77f2706e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7bc345dba2cbaae9bc5fdb3c095ffc8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da0b143b4e650d53aa3edc9577109b2e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7e6526d6760895382530afa510311b2", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "127819dda4e1e454f1f90970cc56254a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f771c28a2bbf1aafda6b3e342ce37fef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bc4c7dc418acdfd3ce19df91d671baa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b16260793b9c32ee41ab7b0f0c98852", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67b25d5b071141e386e055b1b0bc9b77", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2622615404e14c42a3e7444adde350c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c4e336e6af29ca56ceea47ca748d799", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20afe170c90ec1b52bf5ea68885b734e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "513cdc578e306caf232ad5990b6848d0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2be4fb0c301018f34ca6a52208e6b075", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c4dc25441f44287f9158df616f9a50d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b9e10c9806a88b5ec2db74ed8de79e9", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b93b88549f3e877ed305f6105d698ff9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acc3c336a75e7c9b465b2277437d569e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ed86aea001f425ace5b846539711f94", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7f70bce0b3b1054bf556319e4a5242d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "730a5142457af83b382cb39dd137acfa", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23bfaaaba820f8f4b4f0edfd2b0cc65d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7625e5290fbfbf9ccd72592c8a201f9a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd9969987e0674a813b0dd64b5dc13e8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee31f40bf0d944b0420e19a7b6a696cb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8f044bf9222c26c9c3cd2715a52904d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc8cd0753b29d2d94739d762274bb683", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cddafc094dc13f181bb19712a171bb16", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b32b45f6408e203b3c5c657eea67861", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc021ea85ecc70675057bf2fe9cd45ed", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55e43c16d020c7f014ccee868d42f0b4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cd12a62eff7c058f2f610b68883d5df", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61e08e7d95a7aca92c9244bf3ec3d456", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b49a95ae77607df805c417a6b303ba1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08c9fc89fe85d66f8420577cbed5a186", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e691ad36d0b4076e143b2455ce6a5b1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74275788cf64d3c49f590f37c31edc14", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1241a04c059024b64c0af65cdcbbc12", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f871cf3ed205488f553cb0c29c95e04", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0233a3545493ea99771bfd752143983", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "292f814dc75fa5c5cd5a9e8b685ba742", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69466a35f66d2397369dc80ddeabd438", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dafa6b08e83f12070179fb88b687bd6a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86a32aec03e6f305fb202625e72a8343", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7560ab73eb72516ec0cec99118be23c0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 103.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 103.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c97933e27bf654d03ad2092569150f9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8e5fddcdd0834a2844cd79a8fd9390e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 209.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61e63dd6c97d3a7d46005657d06dc749", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 201.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5f24e8b2c76d4e9b24a224329398744", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52a9310797e87abd62991cad71d44cf6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5767b119e2eeb9f9b8f3a80275608680", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 60.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ea186041e59dd276fab7ebc3f809a9d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dabc36d48e8898e74d3d2d194b98fd36", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ca38697176e4f697fd4bc0bbb79ca8d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29d66a902cefc46df17c07f1f81d10f7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96dfd838d07197c5cb3af2e8eb319ee2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea082c2d0db1cdd0fd5cf3af5700b262", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bfdd0963a9042fc98e7a49f05eb7262", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb01cebca3b2f5b6ef3b83dbf860a53a", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "108c4d77065e2aaa36c96e99b8608066", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ce6d0f574fe40a3dc29dba5c996817f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fccc9dae2f18d802ceba507779cfcdd", - "notes": [], - "params": { - "seconds": 180.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f29cf59b486ae9b39e783ffab724ddae", - "notes": [], - "params": { - "message": "--> Remove Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38ee7db2b2405eae1ee184c6bd4d020f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "484a2bdfe8a7cec364a9a39db6ba8c3b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96ab8fb208adc5cf3a7d1a3dac6cc779", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a34b99a99c85fa22e27b92e99d23f3d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14185a81538fab149817379e076061f5", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9d33be7930c99f7ab724052a99e8df3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffbaeae80925c3e431127605d7191681", - "notes": [], - "params": { - "message": "Adding 800ul tp 25760" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea3bd4ab64d238f6f7539ca36b7921c1", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f2dcdf5cc992f15f16c057b4cd1d7f0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b9093d78a6fad9011d1e69322490cbd", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca14b4c2d68eb409f61098d4efc9d1e1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c76f83f97d9a3311667043d03a63214d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "052e72e1489cf4fa60955d30c1426dd3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "624105daf14c7d9be0836ed44e2a47e6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca57d5cf6aa4d87dbdc8b3926bb0f64e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6208c6e43f9d877b35bb79f1c671e3eb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc3b57d41bfc783f49a3501a03e01bcb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "419bff139f9fb94643b177f3f9b14684", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36fb5cbac7b4b9ced13a9c2246f5a508", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4793b2e2948d3071b6068600b729e68c", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ca21ab22d7552db1e1eb3098147c674", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3723af075709669588980dd00dd030d8", - "notes": [], - "params": { - "message": "Adding 800ul tp 26560" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fd12eeb462f72d8b0e8267d3a108eac", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0762b53980ba7e4a29000e9fbf86874d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52d9d20e6bc6060684e5e746c655fbaf", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84a5e37714ad2594878d6605a6ad4c67", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87c13c9d40ec4d41c3757bb8ac6b4831", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a6ca2419619f5cb9fcde7c483dace11", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "202d26b9afa17cd0ca60378fd12d840b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b9ffa834f4f046fd556291a5a4f6dd7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "679220845ca1f6627733ff2df9dc8a91", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26a34507cbb2f39e24643d82060e8565", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "778e8db28cad075c2cf1126e389d512a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e3268fa484674f23121504af9c49d4e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7014f8fd3af363bf2fed260ca078d1eb", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "444c0abeff6e1e3240cf4164ce7a9daa", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5771c169b65c7dd6dd7870547881b745", - "notes": [], - "params": { - "message": "Adding 800ul tp 27360" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee2332de464aa4a355d6cc2bc17f9d16", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2201fff0158eb5a06621204423806f0a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed0f5170b8a276a28c2923091df132ba", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae15c6579c58c4621c7e1a39f2a75303", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3ddede14a841925eebe56a70fd6c9aa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a645196efab620c2ce133a61d626d10", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fc778b6af7280e8218d3c04d0484718", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e2aa1257cabd7f9e7d49df5942e2365", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74dfecca6b22968d7c69da19fbaeaf3b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14e15f77179d78bdb556a6cb9174f606", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c17680f55f1caf0a568c5ae3356250cf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ddf0c2259fc954e4df3199d7ce7f5c3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f03de25c8b6a8f3d1660415aa487db42", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8dbb38d391e3f4e38d7d09dc865cdb3d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2dbcf4813f301fdee90f87d9ada4ca1", - "notes": [], - "params": { - "message": "Adding 800ul tp 28160" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68ff0e930d4f8ab6a5d10b5351ec2ec5", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "705a5a336a1b956a1c5fe4f56f84d832", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "181347602265e40a94adff27231f3d0a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3dca823239714a42d7b5618bfa19e8bd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb42fc914dccc7dbf73c92bc6649b924", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af35ae76ac1799b449cbafd0fd4f7677", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bd7499653a3a62f5411555d0fb3ce3b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b2734c65f05ccf6b533babd7cb78947", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74cca890a843732d06821f15f9aa66e9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0075a76d6d2e37c4e8307e6c2c714ae", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "884c55d8b2d5f60b93e06585de720a7a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "550f6fa94b5a05b5e3f1dce7a9efd3bf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a2a715fb0a440a15d4b1e03ca62420f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4e4b6f92c5ed20dd6982856b5011013", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0781064c7e93913d276dcf6feb1e710e", - "notes": [], - "params": { - "message": "Adding 800ul tp 28960" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "040ef1145b6b26ca6ea5215fdb183d5c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b5dc2fc32c09b95dfff2fbae13aa85c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc9d6147ddabb16ba6f2d4803fb2cf70", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b579806af203bdc48e6135461ee6cf34", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5a9b715b493a60548653d04f92e71ef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "235949d64880e06de7382c5c41729c19", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f35165095ddaf634fa1c9d9678e45e2e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b2e70b468d1b3147ba125bd341bcaac", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b14df94be8ae8b49c618baa4e71f783a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "342a8903bce113decdc3df5583cb1377", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f78ab4877b6dfeeac6a2eef7df311f15", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed2e044da7a239d734557cb6ada1e98d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46144446d080def4f8b021f8896d0504", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6e19403b987943de5ed881d3c941f66", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d594ba8f78b22823485caea954d90822", - "notes": [], - "params": { - "message": "Adding 800ul tp 29760" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab4a54f5da3989784120b03279b23a2e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32be4557fca393646ab0cc92a7778eef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6227cce155dd30506e0d749e817db6b1", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1331c4d2d5a19e5f26cd255c6edf857b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05056b5a1a54e7f5eddab6bdb4d851d1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b38f2052917ff9ba9b4f88cd8316ea0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fdf7f40f3b3725e48d58845cf1ac9a0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81fadfa448563b9d0576d67f09973ed4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1f92000eb69e81b7a5c4cfc6dd12506", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33198b38fd3865aff0ee57b1eee61f3a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d222a08465af70c71ce27cf33af0732", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7e0042acc0850e5675470bbb2116938", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7410f91048127743b35adccc49602f7e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d304a0d742777f36222341fca18525f0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a3a65f29398ffdea739556f193ee9a8", - "notes": [], - "params": { - "message": "Adding 800ul tp 30560" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7dfad4886f7771159a2d63465f319a4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "877ef3c21ecc591acf8713dc20b37fc6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "025e7094128d5f1357a19911c212f3be", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66047eea12de8d3d719535a85715c45f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c84f35ea9090be96550c315a6ca372ec", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c62b64e3537ad2beb367c8217d8c3d3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37b8f1132b4e192fe9314c12c788c851", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac9564d912782fe5e63cb30ca58da8c1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0d40cd7be4300983f4c171d844905ab", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2801ec2fdd4417bffbc52e305b46b18f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c3dca1c0f28107ace6de9e76902fdca", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "763f6907863e683978af1b154b789617", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb0e878d066b5eea040554698c448e1b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3cb907798fddcbdd8324af0dc1dcafe8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f19ae0018c1195d254d2650a48bfc51c", - "notes": [], - "params": { - "message": "Adding 800ul tp 31360" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da3126067442f14886feeed6bda0512e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c765a31ecba3719556ce512a94f06af7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "632683ce9cdc8710bebe84da2ade6a19", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3875b041b32d240e942e1d809906476", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53270513490f277ee8a050ffee397171", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f263a7f920c0277e19662f347c399a6b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f18a0f5d18895416e68803624ae753b5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a88bd82df06b71fb9472c50cebdb6bd", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b98c9ce7ca53151951551f3320f7eb7b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c07ce20f4b4c3062a2597259ff3c3d6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9148108cfc2d7b4d31340f3d06a5f5a5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86dcccdc89cd2ecf75e89a703bbd05cd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "838dbdd0f1013ccbafcf74838dc8b4ae", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d1d6e4286785025b77422d0100ea2da", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f7ff2d57f105dd5c06aa960173621d9", - "notes": [], - "params": { - "message": "Adding 800ul tp 32160" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "baaf268dac4bcceaecdced0af206fc88", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81e7d4d0c6e67f3621bb4ea98abf81d3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a549e2bfe6eccc31157bbb6a65860d6", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7d4ba21ab0b6ecf70fd36efbb46ca18", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a70323c16dd74b85adae82c7e9b239a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d92d27807a59a315b639cb44da13e71", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "637d7c94dcc9d8cb35a61a2208278194", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e892d70ffeba05fc0f8cd63722aa2d85", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25c06c8034d247c6b047c26e7e4cf1d0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "051133405be580068b9a32096660e7bc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0780bcdcfa25f096ccff57b771db87e8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e82cf16591aa70cfc95e9fc1e3b22e05", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "624ed3aeea9dbecebdbba9b028528c52", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff8e67004f68c66aeae4915bedbbe446", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "862e8165548bd3db45be30563b73078a", - "notes": [], - "params": { - "message": "Adding 800ul tp 32960" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dd1882d81f20a8d2d6aa1deef2d451e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05fd2763149419686a40f2bf6b3f749f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d15a5098af8542e0ef72c7356c81635", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d5ff1130940b7d5126a9e3099d370f6", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56dd49da3bd3a2fbf30a44012c18930d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1334eee6ffbbe932d13a09f71d02108e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f27980f3637b17130ef95aa52d55fcd7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ea7ee487c8820f09a88a57caa0b3bc4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f216734e8451e138ccb93df00a95b8c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "932f9981a5894bdc7f5e8a7141d987eb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7d9e41610923bd5e0eeb3d3b0ad271d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4aa0005b433c14bd9ca88233c39b264b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4afc00ce8e1fd510e2b240b1ce68f79a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b07784797a95de440815a2a7cc6608ed", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dee537136110e3fcdd8c81a0d7d70c0", - "notes": [], - "params": { - "message": "Adding 800ul tp 33760" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d372a63874926c2e21f30ae682a503b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "742b2239c320d1f24231d0e32d1d60eb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ff79366661127d85490d6ec8c906760", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cd14313741f9e33812e704bb8ccad45", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "761a144e73449b243db3d267ea86c781", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8644bcd2841c059905abd9ab1702ee1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d447692ddcb2ea2fab63e0a300bfcc4d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62b71cc11e6e4b28cd497628f566a00e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb2358cb2ff162802f6c75e8e907f340", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f4c5280b5199bf61d1c69848cec0b8c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f8739addc20248abb6cacaa410195fb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 110.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 110.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc5c7aa9ff8ba7a975aa0adf32080ff2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59aa99c7f3b694fa38f2624d70005e23", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90c620c2a8fc9da1e5215a56a079538b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 90.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 90.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6902b922845df7a607b45e27bbdf8a0e", - "notes": [], - "params": { - "message": "Adding 800ul tp 34560" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59a8af6ddb406b6cb3cbdc54398290e8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f984aced83a9039817df3f4e98258062", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98b8ad6f205ce58476ecba56f4e94644", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41368eed7ba3bf6858076fc8c013f2a7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "451c013e32dda0fac243b146dae232ba", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5fde38cc60af8ad84c0208790b227a5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91f90eef734c5a471c3e495133faf604", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02db34e9fd3ef174e1cb1fdcdaa6a110", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83dad29803d0475fd16645a3fd5eca32", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a4ddf530631410a2caae4d81f691188", - "notes": [], - "params": { - "message": "--> Removing Residual Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2300ea921e394ce2845f6a139eacdd8b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8ab4bcb38dc64e686582548dc27e74d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50ed91d350cac18922e8472a8ecfad88", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9847e2ddcbb88e2126d8395db546317", - "notes": [], - "params": { - "message": "Adding 160ul tp 34720" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bbe501f2ecaa90292b130fb9242c74b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd502f363a1f055c468128bca0515ea6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88915499e992b469ccae3c361506fd65", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e59469c56f4b2735c15e4596285b6d1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c1127b18977edb0e686f043f003f796", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a36eb1dc67bc821d9a38dcb876f281d0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aeaa8f76fedd62777355392f5f2d974b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "117275edbcb893c9699eac3366b55b25", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "171e3238b70c77bbbd8060f1593d736a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c61de2de4e1aefc5c8d60f4b8ea366a4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fa75cfaa1a8ae7260fed052ac4fa3ca", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c7dbf97dec32503ccf0b1e53779caa4", - "notes": [], - "params": { - "message": "Adding 160ul tp 34880" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd404ce5eeebfcb2225797938ad0a34a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5cfb419cba79cb4ab278f3b9a9c3054", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdf163dc694d9d7206223abbb0025e9e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7647942aa2f13c30f43b125b7bb9bb37", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06f7b65b0c7bf7f25b13da561a61bb04", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbbb85f44b8a2dc7603f7dccbd2f0184", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd1e37c74eec5d985e384bd55882a12a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ae72cdb2a8951dcefbe920b69e08e52", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a8d45589fda342926fea9cb56a5d1db", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b7278fa501f19806676c27d4638cf9d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aefb1acd4de5f036eb783fb9c4ac7e6c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "968ef5416510ec3c51b3797d2058fec5", - "notes": [], - "params": { - "message": "Adding 160ul tp 35040" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ab511f308173116eb70375f64ae72bb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0af73cca26556011186162f6fcdc74a5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33760f0f48e58c37af048c66d88fcd4f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67a1a1c5fda08b1c2bfe014158aab3aa", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e69817edc2b6e6ee54998923e7760007", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5158225c1cdd8666971baba24d7a58d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d374b700727628b86fdc6d1df5639afd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cff52aa2c23fe0ea3efa07d1b82b12b6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "393464fe853b4baa2dad15d1a8d265ec", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bcd342bb2da947d2e3ffb1a0240b57c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a28f46859ae3a3f2b77c5b5faeea5472", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01f0f4c72d4e27542edb2cc7c8424c1d", - "notes": [], - "params": { - "message": "Adding 160ul tp 35200" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb08deef5fa7a723e743c90ed0418ffb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "466fc243790cba8b0ccc917fbc362252", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4269374f2d105a5deb89506be695fe2", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e2664a16371d684c1aa4a59419a6e13", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e1d28c96b92755c49f5d214f783345d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16e1a5e7c0ca6f20446846512839ea4e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cadf4909c7feea5e6ad199cf7ac061b6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a35d3570d4c2d1e3c0d2a29f1693efc", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff3bdadd205141e3bd091dabbba62ba0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "636a41827e5d1322bf84783a38cbbb0b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9763cc98052580be4ceb63c8d81a0438", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8bb34188f6bfd93f93714034f7595a9", - "notes": [], - "params": { - "message": "Adding 160ul tp 35360" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b633fa22e21d7544c40e9b0b3695c46", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3177ec916ef3d9270e10f9c7d35effa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "009ad4fd0b3aab47c91f0b2dac6ae48b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5132acf0444d4df403b6514b8b63e063", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc8147b1cc9bd30eb4cb0fc58cab073b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9241bcc8b2b71a7979419c336311da6a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3000cef4efeecb62685ea3e355685d04", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9d0893d329d8a4cc48d85c5788ac1de", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c1c1c94575dddb5e0c431c26b5d15c6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c5f2e515b80f5a7f2504c72ef555287", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7f84732a82fa0ecb9a3cdae30307f0c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49518b1c84fc66fd2c4c4fd66602be8a", - "notes": [], - "params": { - "message": "Adding 160ul tp 35520" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "578db6bd5e577522ab0ed35325e0cbf8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dd78a0fc84b3b01ef78518cb84ba1ba", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9f38206a5b54f103bc76644095c4f6a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91aa170e95614ad454e47a89e78eb36f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1318eaacfaf18e76803fe5fa7f657c90", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3949e17719175653bc8692b419ea29a5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d921610443b6155e922f12cf827261bf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9387efb91cd02b599b31f6561cf4a6fe", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6286fd130c06d344e0d81d12f8470e9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "556acaa6704c7fd702cca85e162f91f8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3972c194fbc4aba5760805fae4a7ca09", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc98e22eb1e2414396e61332ffb15648", - "notes": [], - "params": { - "message": "Adding 160ul tp 35680" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a5a1ac00ee0c747757a8bf679478332", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aae2b608fdf5f76b44de89bd21bb8a7b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b84fff4db8c5239988780a674197574", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52666ad05f97632102b6443dec6f7ec1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eaf8f18a3bb12aa7be01fbb5b49bfe53", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0311895f50bf0f3f22a00777bb87226", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec16f41bb75884d0f7af62d7b561d32e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d847f199423d029ac0a59ea3a7a302b8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "290d04064ffa305a9aec3fc2520dfa28", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a4277c2df57027fe2747717866fb41a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e233866f183427daee52e3c08a96895", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31f17066d620beb3737cbb5291d64172", - "notes": [], - "params": { - "message": "Adding 160ul tp 35840" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52b1ae9a1f988ce5c9bd2857755adb20", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "049bd73dda0595927f27b7661b13e510", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e67ace7bfff7564d471f17eddbc893e2", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96edec26b2159cf8ba6842cee2e6cb9b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41d2f72eb4cfa078ebf1cd7e64ea2592", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c3a658124a3c78324d9e830df82f940", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ab1a781e49ebd2f1595e43bc269d3bf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f28954ee9f2a848ab3cb1506692cdcc", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d10da602da64a36c9cb62b648495bfdb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a06b88b79f6463f889588119cbcfcc4d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53327d9aa4caa181b138c45f8ecb128f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "173a4b5427812ed11252da65d7689e07", - "notes": [], - "params": { - "message": "Adding 160ul tp 36000" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4cedfa56d3bb2972ff42dde49e88f7d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ad4cacf0bed6ed3e01eff289b45ddb5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c2aaf0c44758b1b910b6b27cf894e13", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52f766d034b6b364f60c3433a0ed0fc0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfaedb3c9e349c2977b27e623eea359a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c8e0503c7bee83d34fca756a1d06437", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d59b0e968054393cae599be5df934438", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a03249345853a0c2f4172f4d12b1b4e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b05a5c4ebab67ee5f43a824bf80198f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ba1dcaf5443f32a79ef9b2a5a499ef1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c25fd21685aa24a7775a22929ea2760", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "042e106dc3d529979b0ab0e88064257b", - "notes": [], - "params": { - "message": "Adding 160ul tp 36160" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "393b7ef0c03945c65f600c215b6c5929", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8f5f7d35304cd7429913f7f873897ab", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d70a432ea3b1fb2091b4b4b2a4452f4", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46e981a9c9f6e7854c3429fe0c811cfc", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39431c45cb0c1c84e15a85a2ddb4b939", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "606bf5312c1ea3214f30f3834dffcf4c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9077b4802a9fb03a582dd63ebecc15c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c893bf70e1a59c03463560ad3d9c7f8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb6fe1adaa16c73d94a0328a5c3b6ee6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4fe681ebfb302488f4a19ccc21259c7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7a9a66e96fc48bb90af82f28b69b5f4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "569ad6cdb76e5501a71c2251fecd4df0", - "notes": [], - "params": { - "message": "Adding 160ul tp 36320" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afe23cada3832584a318a10e45a1dda6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "621b32489b722aa315da3a86620f4568", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "649a71a12274e63a55a294206173a85a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24285f3b02b02bacc89863d0ab49e025", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b75953d2dc093a00bc5ffe7687eae84", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c05b99401706fa9e79b31c611b57c7e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4005babe9b5ac5318e11bd5b0784aee0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58601974f8ac82afdb4bf049c2214f3d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7a227862ce3f328d493c8843e4c184e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3598bca545e767ef8e2db001f5faf4ef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.540000000000006 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d1899f1372db0f4d31930cd87ddc7a3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.8 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.540000000000006 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b7204f93161ae563a92cb5fb06648c7", - "notes": [], - "params": { - "message": "Adding 160ul tp 36480" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8067d1fa812859ebcef40e6b85c38cf", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "204c096a580329d9fd5385537f853482", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73674c670f282a8b42968279336968c8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e96da60535c3c70c4a747e0c1f84612", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a25f2749085d3f1d1ab33fcd415355da", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3b861eb7e51ac5e4ea328633b3f4853", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7cdaef6114f9eda10b59b12e9ce561a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3659e72a8d9399676db819a8360fe00a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3246587cd269c1b63776b78b57b168c", - "notes": [], - "params": { - "seconds": 30.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4353312f2a5ac8e79f3150c021fd5b3f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf21576c6de0f6be21b5c6d1c80cde31", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1c32f3f6a3fa22338714a9ce05cf2b8", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed946d94f3af4b6b51e4ebb4a766bccf", - "notes": [], - "params": { - "message": "--> Adding EPM" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e812000967db3d3157ab395fb579a26", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61be378eb65d40558f4a3901464a3033", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c299a67946558b2b3b5dc0a3786ac50b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "507e32e30ded3d4f6e386effbd3c3efa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 15.34, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "714205ae715b099516b89e68b5f85b60", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 15.34, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "580388c7f92621fbff9cc396dfc38519", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1a7962a04df0d3e066124e11ef656b8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78183daf3e2efe1b9de83571f02c2d13", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "faf71375c10b890bbde3944c0cd4678a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "263b3d06a20507a76c9c76eea4f29bd7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e4677cfad637a9b3b31225fc5630ac4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bc3ae750ea420f100b0f6ed184d1767", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 13.260000000000002, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc2acda26381473e114777d9e51ba776", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 13.260000000000002, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b37fe712901aa15184df7fc46fcabc2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "555589e5b162a7c7cd1aff8fc1e57ba6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "016c750008f676d85806ba1603ec14d6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a1a45a7f97b3532b4ef68b56fd491cf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "063a45ec4c0a87e462945c1fda741e65", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1570153d389db75483c4e9cf2ac56bba", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54622ebb5d50d38e203727221c53df10", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca565bd2a5be587fd746286be34b5f43", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db51c8cf4e862a702b07a361d1b1b5f6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54dfbc5379cb99bda7c6de46a07ea7ec", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80cd772f7771368827d0de4c361f682f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9722269a7c9fb2a7e644b65898c18a18", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ddadd4aeea1a12c0b508adf8d2ea864", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd3877987020105e4be4dfcbf07995cf", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e142bba409901a7a327fc06adb3b65f1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c603e8786ee77f656e489a4e375a4eec", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "632795b7da975356414fda0e3bdbcbd7", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc7ed8c97f6393ffa3ff4b134e961dc1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 24.34, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a968c7bff85b8577375d3cca04fb1e9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 24.34, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12283706ebb8dfab999c103a8ada4c38", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a5917eb40d8e274ff52c4c7aac08179", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d12c6f873d4dd78b781c52449816c311", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f3c12ee0790893fa6beb5bd0a00aec4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "379225aade850c31f02d49004da0c047", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cddac09f9e21188eaf119b39ec4615d2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ee27ff02f371ca7e42d507008f9eaed", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 22.26, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d554c6a804a18266b764f9169cc3dd5f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 22.26, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be6165f54e91c76a8173d1c8d22019e2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fac896b53dd2ea24fad062416b755ed", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02d1d6f5e408e23caf36609dde11802e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40e73ed3c9b283e4944b2185f150f676", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9565cb58255036447d06b0663af5c6e1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21a3e8481b32ad4bb397f05ef2f7216c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78c3a00f7d684d2420286e15065d9081", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c6c857b85ca3353f1e57bb02827a500", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae24fc0151f2eb1ba98856803924b72f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31f99c42e5bf27506e6108bb36763493", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d7e853d2dd43245e352779301fad226", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bfe27501694b9b8369c8e99ee7f8a0b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88e62b3afe71dc37ffe03befd5e25787", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "547933d384103cf8c8def1a5c85b0a82", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4580ea7ed2bf17dc4d9898a2eb71667f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e9cc650b2a85e8dce8f9bc90c769635", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07b04f27a167c59328e6945e551808d5", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6271457aabb841b26763e6a5537fd076", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 33.339999999999996, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c71d35b6473d7c8c89f9bd482f31eee", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 33.339999999999996, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9ff2468292b4bc02a8ea8210ea14093", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7c0c1379b77a6e944107a50cb839b95", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5aebb6b41a9d5bce64c52ee9467da4b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b105ad70f28db104c834f73cb9d5db4c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a391c32a8615e0c397aed8e8f79b8723", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4341a3830104c036b93ed1f0e5405334", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6b7e0230da5c75b50e5304815088f89", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 31.259999999999998, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e145a9c3c80fec06da671cd314ab15ff", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 31.259999999999998, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b41ed3138cd03718edf6a316a0bb283a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81bfccd931e8bf74d72ccc6a7587aa8b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b03a08b102c5b41d870f318d2270cd00", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21863f1c3aea21f7c6f7e8652387a945", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6c57cdbb229caa194cbd092786cd024", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb555bdff49aef9782fe8d4fe7b0fd45", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "616c84c8517563f52c445a770abf85fd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7237d4181863449dc37a474cff42ea92", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4418dce8385ac5abd5c7c44ef0481f4e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ec222e15bae3e3f2ffbb67d8aba5c73", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c094181de265f3a6a0dbe72ee2f03026", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac72b654f89fa23a597cb1b885138b80", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27003ddbb2295be1634e7cf36c180f7c", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b888e58c7707ed2b7ee54bbd3d34589e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc7a19eb1ee0b1cd2eb06919f3f41d8d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de445f1ac7ebf80ee0096586ef150dea", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a36cdf0cd8f2c4135b726dbce4107d6", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7b66b4a88e26e33b531363d1632144b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 42.339999999999996, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8a6ff6b5bd43148b4426e9132a9bdd2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 42.339999999999996, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af1b6884ee26d619d5296e531d02a1ba", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "099273e56bdd86abb6dd22cbb5aef157", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86924d994b36730802fffd27c3d0052b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adb599e208014f7b54da00b237703832", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bb0a5aeaa8f2cf2b153cd449a100d49", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84a23f7dada91850b5acf6a727d27cd7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "136850c4ac75afc61520ae49a49e0976", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 40.26, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3961432b01cc7f28fe5c0af0b664259", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 40.26, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a88856a395e735a8dc602c125782092", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a673e84e8ec9dffb506d6b4f06146a44", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebd1f5648a45d29952bfb3a3f593e8bb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0d35f6dc0a72727265795ccf75509ff", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1d73387dba505dd12188b15b9f51dd7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de81cf776e79d47ffdda31a3c376fcb6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8551c3e39835240d1904472de2834d14", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ff178a86f76a70c4be08b967d49906f", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23ba95a26df870c2c380cc08d649ebf9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "329e7e1c9377a2132c17ef1b373aca8b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8913c30233c060f386af0ab18fe84347", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae887b534f5cc34a289ff0faf766e030", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1ab23515e54f9fa8db7bb3b5fe2ee0a", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e59625ac74d8ba1cea8625981bed1e29", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abe3f6d14bbdd08cfb6e186b6e5a1682", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b61786b194de74f684bd6dfa23b39490", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "173d57cc027c8bb2ca215c74100eaefb", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d27de392dc89e6b6d5c5605e2c59407a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 51.339999999999996, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a4b8e7415e510a30c3c258472004789", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 51.339999999999996, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84babfd89bafc2e2bf16c4481157ec50", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b7f5c113b73cdc0405187ca577a3330", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9716c3623752e557af3c88348abff53", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c4048d38d4338980b060ed677e56d9d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26c643da2e91b8fb7a000efe6ef69c56", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "023dd60fde1155b07d00f4062bc93c26", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "faa457e28ca75130a14028d1b36c0b55", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 49.26, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3b5ab331090d1f2bdc31f1a407413e0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 49.26, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7feb8749d2390d674f017557e5fa68a8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de2e6865f115ef11bf8ff1796813c475", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a9bb0cfbe35e544a320d86f000f57d8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "096796a3ff667e6210f6227bcac88d8c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55d79d7a44c6e8abb335287f9e7bf010", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "432a9da56d25b6432ac45cd9ff2b1130", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e0471e0869f66b6d13a3e8fa81c602e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "816eedab56e25b183785918a3c842353", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "992536affd4e616d81a5c647bfb207b0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6771a98d105d5d78a261b3786afba77", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "798b1f51357327b93ce06fcde27facce", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab84eab0f8d7209809e2492c3f8c13af", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36a1d048874c2763ec669bc927d035bb", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f053f0babb45738b2cfbb0672bbb2a3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c85269593f0d92a5ebcb88cbb9c474b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7e7ec92bcc274556dd8d7374040883b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2b600a05e7f977f3166ee71badb9245", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11c55a328eb52933531888e0bd13ad22", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 60.339999999999996, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ae75bc6e9374adc1cfd42b2a9a1aa9b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 60.339999999999996, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1621bac8ca2451431fc8e4bb6b3bc22", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ffcb83fe2b7b65b056edf87ea088abb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fe92804c54347f9762d07e593c285e7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bfa80aaa29d5d91c0e83979b6a7e0bc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11c8089914eb94b1edab36a961cf01b6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f71f496b22b68a5f30e70f9c3e63a33e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d0be5bf9aff46f5a891a9e570b881de", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 58.26, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "305dffaa18bf166720600047c030374a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0399999999999991, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 58.26, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca5af9508758560b46f904a745a4c232", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8af46a55ffbbccd9c650a20713f0043", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d23dc4e07e62169d4585df547c9b8df", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fde4ac0ec5f7afd3e25d143a529a1d31", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f19df2f1e112ffa23ff9ba40c0fa0d7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8cd85d75bf81724c13a78acd25ad1c3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5afde7ff6a4b5d24880c3d01c1bdbe76", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ba2b01af07d2bc3e8516cb133e40ea1", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edc18dc5ed8b49389d492b46db00e17a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f3d040d7e151161469cee1eb370f766", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "799f5c248ba83d6fae4fd758fbc15b28", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "146856039b213034e2380eab23d3224a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a9f831c4dfea362919fe064bb56f682", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fad4f55aa79dc180894a7caaaf0f764", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f47d02627db50be5d9b7c16a9b32730c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98a4ee468c6ca9d1ae6b99106999f6db", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bd3a1814717b1d1dabc08eae3fe0e31", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f235e37eacccbb8b20cdb0ea18cbecd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 69.34, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e44d0c41472a56d7f837a5b13ec2ffbb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 69.34, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c8f99caf17c2cdf8537794cebd3a7bb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abb70638588ebecef34127ae8cf44001", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f8d613a9a581a7dfb8c1157ecf10dad", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a615738449e4a2c8c26ee5a3eda2d07", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23ee26750c26d128ac86f01eeda89b3c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ee791022cc31f88b6594907a22ba47e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de5f2dbba4386782cbcf3a837064f4de", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 67.25999999999999, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adfdad1f8acc4874a4ff69c597a55692", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 67.25999999999999, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18ebad7a5ac2718854e1d9ac6868bcd1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1faadc5adef8e06ae480867f234b7a3b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "198d47152e4f228d7fa0d38fdc3064cf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e9ffdab56801c1a2f2c43d89d55b45d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1091736929ef23de8c203cd81d6681fe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fe4ed1947468b4a62fe9184f0e7f8a3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b56437b65fac5475e21aa179d36e9d0c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4ffd99693645ccc1d9992381757d88c", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7453a4dcc059df045bf3152229101b28", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d5ba99743b48b686f5b2b96b7fa4753", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "056fdd890989bd46b7bf1280a610fb91", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40eb84e6aa7baecc402010d767787714", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcdc50975f058d5fbabd0f636c2dc613", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "144ba4dd9411731ebd3007612b69e08b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c585b6495b1e4da36d8ef087d93c35e0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bae45d6be85d836f5f358fb004c3bac", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83c6f0d93c3c8a349c47be3dd4d908ea", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a982f7dc8049805730190d0d924c3ac", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 78.34, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83fbb4af8e74d2b0dde712b17a3c3ec7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 78.34, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b20b9a25722e69ae410e83c943d2e0a9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd750e288ff5ef7e97e260031014f68e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfbe3fd270e79d89e510d1a45587dd48", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b750b2f57412a9753d733fad89c7ef6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dce234eac4e662e767206f944fdd442", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0b0fd9a8a33a941f3404906528113e9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c4f548ced2f5f747ff4b7c49486a5b7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 76.25999999999999, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d340486b284ad2bfc15264528a9012d3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 76.25999999999999, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08e574a2997b570405f620460a13c066", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1153c92ef7d8b77e239448f606253d4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c17b1eb5c9147a9de041a44da615f2dd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a2c9bd0d5fb026467669d4889601147", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "926a995083627e59b4b3317f962beda7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "686bb8dff229522cfe9822e667bdac39", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d655c1de6c35ced6c63a208b294806fc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff36487ec29c549430ad272262c9af00", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22c20ea4c376808e6a1b23b0f802e7a9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4760f416cb6a601cd63736328a7f398", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d621d13ea957873acf284c307a69b13f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "749360a219308eb232383693dce838a3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ebddd4e95a9bdf362b5f73f5df4756e", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8940149b78d33db4e94e9f6339351883", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ce6e0fffb3eb9d87d76fb2eaec3c450", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2833f8a0a73a87d1a147c537bf501d31", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e20092fb10b56ead8a1c538f098d2b4", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "451ae2a5d88ca61f1874125a7d1880a6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 87.34, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f75e59d3fdd7211f98e38bb6b41584ce", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 87.34, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3547d2eb1f648a6e4044757047c1a570", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc7ec07d39b955fc403ec45011641e45", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "920619ae84d3ee23b32b20ffa42eeb37", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55540de57ff6693952b8588a2d914f81", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "898456bbab53c78b9a32db7fd4de5126", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a16e08cc1fae1281a77aa521ea6ed3fb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89cfa67523d5931b7cd45c9832d874ea", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 85.25999999999999, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36bad6cef9293149d4a6366a37e528ed", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 85.25999999999999, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26c631cb7a505fa3b8f0c6fec588d55a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d481be65f6b738791b67999f0de0f32", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0ae2fcbd6817b2225a1af1fe8125ff9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc10d9a0e163ffbccc9039dddc962d31", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36f6f66a41d7a3aed21ac3fbab9f79a9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4ab2077d23e3b2720c01365ee9bdbea", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7520fa20a4978b4ea144ea4d61bb1e76", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eeeb4f5f40806642dcc50f05dd036a4f", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e0ff52501275bf92e537cd24f69dbe7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30f26ced944d2ceb4c42441c0f395672", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bc4c4b575b7bea821178883d3b7d667", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2061769475bd9c1509b2780f6feca7e1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ce1939ac93f59e0a96b361ac032b0d4", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23fdf97d85efa7fc8d819d2626fa056a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "623b4f3d7bf8ee5e3afb8df6e253d785", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b196f473a2ec8fb236c536be9a55996", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f649fe426f10e5e945e78392aa1832c", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c7e1f1fc9f5b4309f4e05a2f02c2c08", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 96.34, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46eefa2ad1d22accc4cb18e395efd85a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 96.34, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2894997042c2787bfd45f050b25ecf1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e7f01e79c1dbd6f19070a4b3234d235", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0378d21b9cc4085800c24eef65e6f06a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21071dd823d61561134c114ac23e16ca", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c551c03cd2a5fdd9cd6fe1311a20365", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9e16aa17e453d626ec8561f9960fe7b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bb50c98f42fd0b1a281fd8f398ab210", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 94.25999999999999, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab52e821986e9e1bf3a0fb43ed467d0c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 94.25999999999999, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18c9fe3a6193777a14ad2574d9f69a5a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38c8dfe9af1f613f22ffdf24afcc85f3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02de729b5b9e49601ebe180c5b1ebf9f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "545470958dd95b4d4d90b903dc86e9ae", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "558a2fda0637c74df3040aec4c4b5096", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c4e43ab921320d1c9d231472d1eca2d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da7917cb689356efaf1c602d7a282731", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6d9b754e7948a8edcd373e942d99502", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "838cf3fc2244b6137e7a8eef89d1ade1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65d3eb569810eec54eff16072b102edd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73022f454485f0e067ad0b5b615c193f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3384722fb83e4d1dd98172470b678a8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "064ddf122c2e0faecc8f3febe62696a2", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebb3d251a61a7da9b0377bc5e8e1c34b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "833946109dee61b58913ac7c0acf14f7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8574abb4f356621dde28a79c7361b81", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bff8d222470b7f145b4852d0980b0b1", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09c933c4c1295819cb46ae57caa672b8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 105.34, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3254ceb83541d47e1709c28d0b3f5f2e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 105.34, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ebbd2ef1496bee1c239209733059637", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "913acfc17f70bc0833148f34c7290051", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bee58a90cfb128630c74dc7393b28f2c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a26505f1dbea215aa24f0db2f479e97", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6284f8c514a8d0c5b0a466db9b280ca0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8639b33dcda5fd663c99c88fcda8a6d0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fc898a3f39ddda8ecad4d9d68594c4b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 103.25999999999999, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41bb90019b315567bbc48bdc8882050f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 103.25999999999999, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c7602abe1729713d4ef2d34a3a9fbca", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df41e5f39e382e3f23e95d46feb2248e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b35f799d3ce08be344b5c2d195a0b13c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e0aac1a60e168eff176e36af55674a3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d18ac9cfc37b2755c2f392c40c87e58d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f867a2e60c0d7b0e64791d461767712c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3eca6d5f2ec01d5b990585f9e37ab5f2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a81ec54c92fbb286f4219b938d9f5a25", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1046b570f8ad8769df9f41375ce72faf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d9c3a4c5879753d464cf144f56c9c6a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8654e79bef55e58961c8cae5742e8c24", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c638db321d6f714cf4c68fc4d0f378d4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97e3e6a145996404a4a688050d0ce8b7", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e36a7543ea68814c47e3fe039d263fb0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf843c1736f1e01b16789c800889f26d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ab0cbd871c504d2a1229ed9215c5b59", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 43.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 43.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca0c4f2d7ab5821c6c473ec40d1aae65", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b063ed4ccc1ed401cb3cd652a5e36d4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 114.34, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fac96a69f974f50e941f4a18334cade3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 114.34, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "794ef19921da7e4a2a10290eb79ea207", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "725c121ebd8f16c0a48c34b524372ab8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b201cba14839725d8a67c9b343d9edd5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 75.19000000000001, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3bfdec37570aff0ceee76e224e3e1d1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 75.19000000000001, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c66a170111bc923dceaf1933a8c1bb37", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acbafcf7866bc06196e1c10debc18494", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "033f73baad9cd6f5ab5665408bdcc2ed", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 112.25999999999999, - "y": 74.15, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87f6aa7b6ad9ed0deb437b148481d8e4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": -1.0400000000000063, - "y": 0.0, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 112.25999999999999, - "y": 74.15, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "216825adb3dd2f2badb0312b0c1aeac1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e073df0cfd45a70bfc31ee43ddbf676", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f8c5f8cda7f5130cfb118e527bbfd61", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 73.11, - "z": 36.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcb1b126c88c42b24e48b88ee3a06569", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": -1.0400000000000063, - "z": -23.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 73.11, - "z": 36.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c58e20c9ffa6d6567ae15d0c1248740", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "465a0cc51f7fc1a7982a881f0f29074f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d541c82bf88968cfc05cdf4bed35699c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb47209af6f775d1fab0f37b914d61c0", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 40.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d72db074dd976a735a95887270af646f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.7 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.249999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3dd2020fcd769a364abe50aa34d6b546", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95a5e7092844ecd03e1eccd8c17933d9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 59.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f23ce1ac7a0d3a6f25f48bc3d0c9c28d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 64.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bee2842a6c8b1072a9f166e2458a4c4", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c06c3fce7a497dff35f9b2f7606ffc8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e086ca1fd26e24c0aaa6789bf5e8c30", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/setAndWaitForShakeSpeed", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dc9a0955767f37a853109d74bf48045", - "notes": [], - "params": { - "moduleId": "UUID", - "rpm": 2000.0 - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1e675b63e903373fb486ce1289723ac", - "notes": [], - "params": { - "seconds": 180.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/deactivateShaker", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d47abbab6942d428b1dc8cf96e4ad90c", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcb3c85dac97a5bc1cc9ebcfed2581f0", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc4f1b489575bf7d0f648782d5540828", - "notes": [], - "params": { - "message": "ADDING PLATE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "699433865ffeb5c687e821b05015899f", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": "offDeck", - "strategy": "manualMoveWithPause" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fc287b1cc5e374c04119c0823cd68e2", - "notes": [], - "params": { - "displayName": "Sample Plate 1", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8764f01231651fd0593f8035a2856410", - "notes": [], - "params": { - "message": "--> Adding Sample to the Barcode Plate" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de90055ff7adcc2bd14121c2136a5245", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71742587d1837a9f04417f14703bffb2", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "A2" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab047db6392b59043ed7302044df8f89", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89290c68f70c9d769014f90801639b98", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ec7a9cdfa3f82dac6b7d33b691b36ff", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "890d149b6d916aa92d547522901c3eed", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14d9f04f85cdc9c7a92dc7c8a9b6e71b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e253f85be2809abbc623f0ff2e2263ce", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b89ce4e133f991d4e02aa1097438799f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15fae50989ac3a8be0b7787dd0cf6bdd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7b4a7951041d19da8ac4f74b73d716f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c8b5a6ae954b21e487a6d39e59919dc", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c41f6e8dda85cfd5ea4c3567e480a4d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c13eab40a100fa3ddcf4b7f8efe50ad4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a5810845735f88c5559752d9bf44142", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b6ffbb82472cf34b0546e47f871f717", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05dcf47963500966f7b225c7c016dd27", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "648b91b8cfb88b350eb9f2ad14fac222", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "411de2873e61c9f5601c689a8f158e90", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a12c211b94762d5041ae8af48547fc10", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da8bdb28da8911f53de1ba84abf74dd3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bc4c768f2ca454c5de8fd70c6d50412", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2dc74fcde33f7477f61531bedd802dbf", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43801ba98908c646f52481fe8f51de6a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69f0961108804ac5d2e62dcaf1414034", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e9bac3d1d704d8065ae8424ded3ef6b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74c9e12b3aaa7a073f313cd71a62d55f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30dbdccd4ab2f2baa6a1b1844e08ad05", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca6e5e657ffc85c871df2af727c41b02", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b08acfe11043e1655a5e6b9752723eb2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b37b7ac38dfb6dadd3b00c73a442475", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "624cfa7387fac0a6761e43bcf4ded0e6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6488e156452d75aedc5dbc9a04899a1c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "635955cba70ead9fb91a8da8b02c20c9", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dc2386d0f9ba9ddabb6e9de6cafd386", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae676444e41b32be3df124aabf8fa8d5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2138e051e8d47c04c857ed796c86b1b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f410fd60683b9783b696b92fd8776beb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d207233ce87ac134e367b333993e16e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "749cccf84b9f670e9282406ffb2805b8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "084d00f4dcfedd31bd49226d341ea1d3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2ca353395fa853289372eff0b24adbb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71c346f287afa090bdcb0c515860bcce", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5d1318fed6daad60415686af2985104", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a940e1a726ee1f901162e92fa5bb6a0", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d81e9936029a99bf01abe412ec60903d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b64db61f17e07ada8e97916f123b0e88", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fbb833d2d24112d191862f0f49b4a3c", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c52c29b679745ad283d97e45a718fc9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59c0c0eff7014ae2073b484f8d3ac126", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "734e982136159150ac46f0df9dee219a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6873863d35a057fbfff3b39089986da", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa65bd051ae5d96b093a61245f6748ca", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f0841a4b13857f5aaadc29cda3d7aeb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c04ced9c81e3773bb24a9fc05cdd5680", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d4ac89eaf6c0620f628b78cf751b503", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd31210d2e9820c8847ae6d4a5d3e730", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27b7182bea8a17ebbd701be2fe23a15b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b779a484fa8772ec14cae092490cb2fb", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fa7768406d3b034d07bb8e1f06f7760", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51e4be2eae96acd48d6ca38248fb3121", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "799cd54ad0ba3785145325d53d345763", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5311abebcad2e509f505dacd7e2dfc8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56586c2c1ccdf9d2c5d5dd465a0cb10d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79ee9ab3c65d9341a63459884000c708", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd2ca26d1cd29a3b2c15f961e0e22b57", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b3ec834fff0859b4ab54084011f5b95", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "448faf1490937f64806f33c7455e7e09", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b43c3f79c0374c66173ecab5046e9a7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4f2079e1241a35f4d35fb3cc0885a51", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7e332eced13448bc7b5b30e1c306602", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e51c91d5ddea9aea1da559cb08ff7d0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c330d2bcf979079923ffde6e91204e4e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f950d0a23123db9dbd4a1b580c04f435", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24f3bbe7bfad3a0cb1717f4cd074d2dc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e89c407183f3e8f5b38473d0214ba45e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d00672cb107ccda406bb63889cc80cbb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bcab4a0ce420d5af93c677a384766b2", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28b235a0695490b3b4f4484dc2e8c77e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49747f0f7bbf28eb55474a7716b4bfb0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f43ae69c5951fab30f46d1d3c34b6cc6", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cf58f3282add0f1a5d3e699f0c3782e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "999b0c56aa10aa57a3ac3d2422b75b61", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c319905e77bdb5f272149b0957e297fe", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c86133221d970790b63e3a11d6fdff3a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d5a15d81c8b00e6553840951e336370", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b6a4d61930e1f024fefd5b965d063ca", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22e63d0358e31198ef3e718cbe0586f0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb3f10bf16d10bfe2b744389764fb41b", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5bf493ad1f0b9b186e4c24b7c071b68", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1bde720cfbaa35404ecde0f119b046c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2078ebaf4bf9c0122e08530cc9e74ecf", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c3cf2703ae8fb44098002aca653092c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6a0687e0ab880e41d92a80ff341620e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "049fdd8ecc8bc282299da6aef7b62809", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79962ec8755098ba3b1a8b622688c40c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9689b8c73a1fbd98a5bc2d7036eaceb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c516e87b493c432dee5393293542937c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e59074d20d5b2e7ea8f9df36aa5c119f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "639a9f8dfc3c70c75e92e248abad2d26", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9ff482e63e4a2bdb71ed9aa874d6cab", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bec00718dbbfc8062fdb6bdbed1abebc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10541bebfe303549d22be023f407f02b", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f5b9b280b3792189d402ea9cf51f0f2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60e6052e86abb9eef59b67fcebcd208e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61c637825b7d3aec93e540e1a2f0d260", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1144b92f5ce06da29fd65be7c7388914", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6eb4e3cacbf3dc59383ab971de86543", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba89d396ec061cd4b31bfaf50ec4f874", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88d0dbe808ab5b7a0e470c5af4b8d53d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3be91a9b765f31e83ffd2a4aabc188e", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9212966f9ad53da5e484ca418cf039e2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "699a2a2919fe8ada891303fe5e727c7a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2df0d79bf4d04c09e45c2169c6f10d70", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dc2cde346e1ab3a40f0a7544971aa8c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e200b6ed050f7ee79196508114d34ba", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd73ccba5651e1a2986e1e03dfdaf7dc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79abd6a63ce189c1334a034a584745de", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "804204f50d8b9b48f1bd5c45aa0ba631", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcc8afd224bf96ea37177b3587256e15", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b2b0b92fe9f3993b334344cf5bcaa12", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "626385a48c0b1a8518150562d3575379", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d61a27e47ec88820b47c3e0dca20c0bc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5b0220d4adbf7d941f75b3cf5421e42", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 47.849999999999994, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20370a2a9d5b5680fef1aa23d9ecee8f", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.800000000000004 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.149999999999995 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e211a0f286858c6a407220fcf8adce9d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c6ce5be7bab9e33f3ddb3a7d9afdde4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e642f1eecf644ec0ede499fa35fe8649", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afbb4e59bbef8e83994714772c715895", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95981661207880f5c216f785c946c7df", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "341079a496fe842d7a0ec00cdb4afb39", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bc47a46b82dcb1b5f011de4e17cd146", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c30cb6c4ed80007a2ca5cf5ba155d2cb", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9a597d3ca01e90b753bb56fd2f0009e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d3f3e18b3792cd9921295136bda349e", - "notes": [], - "params": { - "message": "ADDING PLATE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76211aacb4d47a77a703eb4c5016c8b7", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a6e5f7b2518938fddc3b31849ba3080", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": "offDeck", - "strategy": "manualMoveWithPause" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f05245c624fd0821f7a178fb262c885", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "436fe10c1250db5c1dadbe63dac0794e", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c23ad7ad1e7a064e8a60642ffb6ac26a", - "notes": [], - "params": { - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "503001", - "503501" - ], - "links": [ - "https://www.nest-biotech.com/deep-well-plates/59253726.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.6, - "yDimension": 85.3, - "zDimension": 41 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 21.9, - "gripperOffsets": {}, - "groups": [ - { - "brand": { - "brand": "NEST", - "brandId": [] - }, - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deep Well Plate 2mL", - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Deep Well Plate 2mL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "nest_96_wellplate_2ml_deep", - "magneticModuleEngageHeight": 6.8, - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "evotips_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 102 - }, - "opentrons_96_deep_well_adapter": { - "x": 0, - "y": 0, - "z": 16.3 - }, - "opentrons_96_deep_well_temp_mod_adapter": { - "x": 0, - "y": 0, - "z": 16.1 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 2.66 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "A9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 74.15, - "yDimension": 8.2, - "z": 3 - }, - "B1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "B9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 65.15, - "yDimension": 8.2, - "z": 3 - }, - "C1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "C9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 56.15, - "yDimension": 8.2, - "z": 3 - }, - "D1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "D9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 47.15, - "yDimension": 8.2, - "z": 3 - }, - "E1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "E9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 38.15, - "yDimension": 8.2, - "z": 3 - }, - "F1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "F9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 29.15, - "yDimension": 8.2, - "z": 3 - }, - "G1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "G9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 20.15, - "yDimension": 8.2, - "z": 3 - }, - "H1": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 14.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H10": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 95.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H11": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 104.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H12": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 113.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H2": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 23.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H3": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 32.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H4": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 41.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H5": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 50.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H6": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 59.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H7": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 68.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H8": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 77.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - }, - "H9": { - "depth": 38, - "shape": "rectangular", - "totalLiquidVolume": 2000, - "x": 86.3, - "xDimension": 8.2, - "y": 11.15, - "yDimension": 8.2, - "z": 3 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19d776b40e5eb3eb3cec1daa4ffb3ccc", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6694fec1c1b18595007ccbe44abd1795", - "notes": [], - "params": { - "message": "SETTING THERMO to Room Temp" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3bf683277a9c0c3f4816668de144348", - "notes": [], - "params": { - "celsius": 4.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "960cef9889e974ddd11ee99f6e68079a", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6e86289e45a436392943d3935ae7ba9", - "notes": [], - "params": { - "celsius": 100.0, - "moduleId": "UUID" - }, - "result": { - "targetLidTemperature": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5272e3da207b0bd7502a9860f88a3c8", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87d1418c96ecc2ed4937ca1b9c64b26f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/runProfile", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4cf9ffcbbd9f205e1b309e708241564", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "moduleId": "UUID", - "profile": [ - { - "celsius": 68.0, - "holdSeconds": 180.0 - }, - { - "celsius": 98.0, - "holdSeconds": 180.0 - } - ] - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/runProfile", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "132f476437d859a92f5e872b6c2aec91", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "moduleId": "UUID", - "profile": [ - { - "celsius": 98.0, - "holdSeconds": 45.0 - }, - { - "celsius": 62.0, - "holdSeconds": 30.0 - }, - { - "celsius": 68.0, - "holdSeconds": 120.0 - }, - { - "celsius": 98.0, - "holdSeconds": 45.0 - }, - { - "celsius": 62.0, - "holdSeconds": 30.0 - }, - { - "celsius": 68.0, - "holdSeconds": 120.0 - }, - { - "celsius": 98.0, - "holdSeconds": 45.0 - }, - { - "celsius": 62.0, - "holdSeconds": 30.0 - }, - { - "celsius": 68.0, - "holdSeconds": 120.0 - }, - { - "celsius": 98.0, - "holdSeconds": 45.0 - }, - { - "celsius": 62.0, - "holdSeconds": 30.0 - }, - { - "celsius": 68.0, - "holdSeconds": 120.0 - } - ] - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/runProfile", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "264d8ff7f39ce2871a0a0753d3c291ad", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "moduleId": "UUID", - "profile": [ - { - "celsius": 68.0, - "holdSeconds": 60.0 - } - ] - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "609b870108e7637410074c556b91051f", - "notes": [], - "params": { - "celsius": 10.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3730f00497f9a34e6ff15ca8afc9ab29", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a982e2c9e82bbb942491f6845ecda7f5", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82cf47db7c78d10dfd217ede61839756", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4fe812e39f5380d42b168ae6f8f4e06", - "notes": [], - "params": { - "message": "--> Cleanup" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7e829eeb2f5fea6baa9984a54324e2a", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de8aa9369d44bfb5358f9e1d02434c0d", - "notes": [], - "params": { - "message": "--> TRANSFERRING AND ADDING CleanupBead (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31361768017921abbc779bc57285b547", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fe9e391cd745e4e84a9ff8b1e7e18d5", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "B2" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43e4f855a99c8db3fbe35cdc89013543", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5c400ae24c945db8923d50593a01f28", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df1f6603cc0b2c69a09f33ab6f13e596", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8459dfecf57bbb55e792aa549a080abb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2169e1ca101cd66d8d5eb1e59707dc42", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f3af03cc47d80f7e6ce866cc9e3c580", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04e05438e4b3a0b2af264e8fdbf088b2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84c317e0b9ff5553763734575ce99bb8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fd00a86a6b2f5dc44c1c3a4c1f6150c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "771c04d1b5361c2578eeaa74cd09d9e3", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20943817e882c102280dd5270515635c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61520f4a510f2b3421e20c5882243cdc", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0434923475ab5895f42f44ea0fe1735a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "269e9d649e265a1eebcfd248e7480fcf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87b7a3ec3834cfa7f294a1ead0d3cdd3", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d5fc03f346cd71c7b8fff507cd5ee72", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05b11040d8d615d0342dbb79c31ae735", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64631ca46a6718695dec712aac5cc9a4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79785a33444f47eea0e277c470b90bd2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11a4ef37a6d3b15ecdfe6284291a0604", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2daacf8d941463fa81dbd78e4c25f246", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7b05cde4ffbc5fccf1c29228cc4b48b", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54f25f4e65be76f250bc3636eb71853b", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2d79465295a8345bfe6af8acbded021", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "067b3139303bbac094b1d3249ce04e78", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60e8b3c95f412ae390de595e258c3c13", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae982c87c332ca40558f55636501abc0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b215063f47a8cf9cc2023cd2ab725797", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "188ccd8c0747eb1b844bf40e33014534", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6b65bbe1e0affe138d4d1598429fc15", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ee80f72f52d008f384f5ad181f23bf0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd5e8c582635eca0d9bd3dd30fc6bd50", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f6cbf4fcd2857f04a4df1ef79b31ec7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "caecf9413720ad9323b73abc0eaf7886", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "301c449d8e31651699be06e4fb7d6516", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f24ad83ca544f6ef2f382a6f66d53696", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbe34536dfb1be52760a20ec64aaa5cc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dfae884bb64e4c64c71e536a4655259", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cad2778b4a849233a3a711b60b36dab9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff637c40005e42c4442fcfbe06d6117e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b39d4e1fd45ad21f8aa91b67cc44022", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d95ea79a06e4cfde97899e2792e186c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3dd4e68c3227df0d6a0fa4b7cf0ecd27", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "997c4bce64c685f40f9918f41e97bcfb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36cf9a86948fee0cf09662a1d11887bf", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d52933f2302b7432cb458f027d9b62eb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6e29f99ebb810e7d1cdd75f1953b088", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "441b7ab1d89cf9103a7dda916f536269", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbfecf9444e3f4b2e0b98b325e7b9ebe", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "deabe7fbffc5f4c8c11aa2b172e13632", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d7eb39d88124b00d0eee3df060898e1", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f43478a8b593bb76b00ec9ffe8125233", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4088539e3eb216ced28851a4d015cf8e", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70df95d79c3de7b99e7032eaa767a4f4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09f720b965cd394959dfa7ea4c114141", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c6f373e34a3cd1f07b437c47183b35c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60cae0c57017b94e2335ab30c40197ce", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f91d1351eec98c44fb4ce4723c3db86b", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "843f14a9e92e1193856407c90ae43373", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42a10220806a3289516c45dece632067", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "185758904e3b3c9c008b9859688a44f3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d126bb13fcf47d0fef53f7533203a89c", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a36240a2ae01baef971bf920546e240e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77bbd68b76a122e96f8892c8e869386d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dcc81bf5f58bed97676d6b8359a5743", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd98276bc56b02b91bfda9de1bc995a9", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a2528f2f6c08c99b1ed66a40b27d986", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "288bd31788e80742115940e4f10bb921", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d08360eb51f46e3041af4f9671263d0a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b0997b36db9e68d13f7eb1b02831afc", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0f46670c34756e34ce31fb8e4569330", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "387f9448ca56ea8bcb4b505d0f0c246c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7fb20367ed86259a9e1c8880094ae8b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f525a96f542982697485a649f19c2ab7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6a098d221a2e0c8f1ccce194f659d59", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4eda1da90efdb3b6f0c7375e828114d3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60c17b4f4e9fe35e8d8357dbd7376f4d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eeaabb552ca56ae8b72c80e33928f37c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c018e44b398eb57a32defce4fbc5c0b7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07ffcdb54bd6c3510a7d7985a148e2da", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12de4b50f0c154acb170a8b30fa7b4d0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dd09e79fb7f68fe2b2bc3bd5cd9c354", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0cd90b5d10cfd2cba8f93aee0bda7df", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7663221693876812953b5d0eda73874", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e8bedf7063a54390eb2403869c2ff3c", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a159a8c4c8262edd352d1dc04f58924", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f893d0312c3afe51ab965c538bc7411b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f144879267d0cce8c2c12a372a214f6", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9174c0e05e37ed5804dd51ef1b8b24dd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df9a034f9cbf365efee18c47a7a14626", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa539b78c7dd9175488eb2655ba326f1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76cca5ad2c6d9b39bc4199e13be46de4", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebd882f1957396632a5f9223c6a5f786", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb6d00c83a853f8672db92e23bd3e318", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b5be7dd50dc457c7988e212dffd809d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63d2b9146e0a033ccfbe52a6bd02f57e", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbec1de9cadfaac94cb506919ab1f0df", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a08a19fcdc0e62372e2ae6f76d6e9e5a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "278366bbe3c4218ada51814d05b5f2c3", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59cf21c703a7dee69682a80775d9ec56", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad78147794bceb8bdc514eb6b1e5edb1", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d55be630ab919dbc7eae1cf1082a0415", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3247551539e091c13630e4eeb1243c0", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8408cab859ff3c0436062697d38a853", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d051be92b8327687a60cdcdeab38a8c6", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3da7089261e18f28334c4ece68934d4f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cacaeccd9c8111f50c0bd09c8fb4b492", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b32f93622f2a1db32149e7da9b7fed3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c67077efff4e594ac112c5b175e5e28", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c95098c77461dd196bd380745773e5a", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92cb39ae39b257c8cb768601df2d46b7", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9ae598e3191a0a8a59f40a3eb430d74", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70a060da2336fef3ce44921af9d3e5ae", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abcd260a1e91053a36ddaae14f1b9aef", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cbc54584cb276a9f3c8881a88aa4052", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1a122423de29f902852a024afed88ab", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3e7a3948890a07739f7df24bff7b9db", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7580f032a83ed71648784fe2168a2583", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c907e32638f7a8739cbe41c41ebf9575", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2dd4f3d0b90732a31952da866c375b9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a742560577c647ec5863f805643c9a37", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d9dba9da40791c84d019a14c4a5400c", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7dddda60b862ed3df63aafd9259d30d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0ff11f89847d09f05539236ce9f1827", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a69e9bf790e4fb5216aefab1bed1a57f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d420c18eb760f85919b092b204c9934", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0b7e4e56acfa7be0cadf65c266de07c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8ad53ab8937224cbc38f245e26b0375", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6167687cdc994034a37d8b8477339f5", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0f4e471d5a1046423448d3fd70bb299", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51e20fa991f78ad6bb8d77f93b4102cf", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b79af56f9a1b685bf8c00c9d841c3218", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcce96de90c9124d88424d465dd868c7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "def386bf11558b9ab2813146a6e66a8e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ca3cc604504926b03869f21ec9602b4", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a393b9dc30414a49a56772386cf93e0f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "589bb1ca008d50d508a726ff21295460", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb58251d4865ef42b91f4711d7aad6d1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5a1550548c94c3c9ba9a5ac10d1d2f5", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "454c76743285e9354614f76ad7dc72c3", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e94ada5a270ecfa14fd5a37054e023e8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f22e4c9af0dbbdc7bd510ec18f81be5", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4859cd62d910929745407897fefca0fb", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5b3090de9c9580231e0d3aa6706b42d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48d31b8708db0e29bd877b9f4d39ae97", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a53da2308e28102bfe7681a5e6b0492", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c1e7c1e88274e0b7387ecc41f43c98d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b314cedd1830877bec365cbf26851abe", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e2d3526b0c0ad2642b6ba0ff3a8c807", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32c9270d8af8ff85ccab9c968383b371", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53f2b35e4c8eef499c66c97cd643e8da", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "809cfc1f092b006e698d5d1d1fec3580", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b077b09110d10c1f9df113bd35981ccf", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8e974e2666e4ee563b71600f5d57d8b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b27c3aadbe0f8e1ce2b5296891609e55", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a25304ecdb20b1088a46d9e4e1f48d6", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88bcac1677b1e5a84a761b4953ad23d2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c81a4a5616327cb537db762431b34122", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "feab6981a103634d99af6592bf24721b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bd5d71ce90672de9fcee95616bd90b2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "392b11b6b72dd710e1f3ea32ee8c8f7c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d80c9fbd43764b30fd771f7699619c9d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64a3e66f2640600afb4a7141a20458f7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05398df73da849f5fb9e0efaff3cd997", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d476bd90a482e3f2b14c47e734d248e9", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15e26e51ad463ea448e5a12b71c4f2b0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ed854348a83591a6c5fd207ae7993e4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc31b2819e4d9827c12dd542f9701a53", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b96882b600e188c06a423765ce42d37a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad53333273bec806e5ecbf958ec6e9d0", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d516ea92fdba720c123c96276406629f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4596483dbc6650b78da27cc376d89e0", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a8f9796113e82adf06396b05cf1a7ac", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6528fa32e6357c2f1dc2e28353a00882", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d4558adc2be87335c29c9508c6e2ec0", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e12d1b55091cec71857656fd6f1e4678", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3c972153d84b567b100c67e45afe856", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "332b1d28edaca0c2b9a3bde46794d4cd", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "480c8615f515876573bdc892ee488ffc", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f43eddcff84ea9c1ed6ab589323fe5d2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3aabf01cb78ffd91545c009dc1cc67d1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05cf06f3e28a63a1e8d47df1a6c56ec3", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9e14428f13edee19331a306479a0b21", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20e259deb6b7b21ac6e87f5928b16afd", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19001510bcf11eb73588ac389c7fb7da", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4346abb219f7c2bde3474239c47d900", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdb0911307495bc0e1239d4882e8b241", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39844c53eb267592325f8ce2f2c8bc87", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6826722ef5e0bb074f46752f58338bf4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07bd0f450456b3024ee708edcb7f0c22", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c41d5bdf9dbaf30311b59bb98c192ff", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d41542f8e57ccf332b42d60f89e083b7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29fb5d491a470751c027e674a65d6b77", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50ff66cd512e89b75141216da15de4a2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "461caf4f15663877d3ff698012723885", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16d4c5775981c52b173ea79cc6b73c64", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "594bf347ea29f0ca54ebfcec596310b0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10ddda63dd8935383ef967d523428df2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db7cb445ac7c242a454341717dce33df", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a52ae4e91f65e9de5d8c34d8924e02a2", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56c1bbed3c1ec301ad596951bf02db09", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78797f2fbf0f7c7a611355327a17a4b1", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ebda2582c131d1c732ad3b975ad171b", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9eb1dc8d3a3ac6d24c075e50d15b805f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4d1e89e0ba0a6532bee718ddf78d117", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be448572687ba92a9958a487aca28e6f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe726d01a7c3259b212151356b34c03e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f6736a63b3ca0046a1a34cfc29ce8b3", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad98f49fa77599c605f094bd11f56dc4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c806b8500743066477f0464810793cb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "773589310136c6899dc782d6bcda4e05", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29160b3deb5c81467e2ea0efd08f2278", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7fe221c5e9317c6fd8714a99de6b0a0", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bc41105e55a1c3279bb3a46a450e2fd", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79fb64f04bface0f648a80c4e4fe4590", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "601a336d34efa75880fe353e0789cf19", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e050065e905dc771557f05e0101c875", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abf098990c823d3cfe08e7ee640d0895", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72f7ccd6f8e6a17a6fa997e34a3fcee4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c8b6ae5b7f17e21025c4b1dfc922b6d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df32d1bb4524ac1dea7303505db04622", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29408b14c55e88d69de55607d3d37c14", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4988be77aea52a041c0a1dcc7b9f8cdb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "478652a327e5cdab2f8378224da27d4b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5166fc85d22c9dcfef5c6f86df9ba645", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c7c4b48113e32b9c5a1d54711109962", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34ea96b858dc6617454f8fb5d564abfe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26520e3b1938cca632ff195754498ba9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bc30ab3777996a8195a32ce99da6f3d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6a3417c15bbb6e160f1e83d42db526d", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02c8f45f5166deebcfff1f95aa1d8f26", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf7da007954044963a9201f07f7fb77a", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90ed4e0561d9e67fb4d24d204c63e2f4", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ddafd8c289e15fd5a945f4935673442", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16600c069c5b21311d9096ae817c30a1", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0db2b0ea2443e7d9374b11954a0f48ba", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a313e9a930b2904072ff137c22ac878f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6904ba87d806f136cf70ffe32b9bb18b", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5b810e73f01dcb9b8c1409581452351", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d629e88b23a2fd05285e4bb32e6ac4a5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd4d69c2887f22bc86c782707fc1a385", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf1a560ee9f9cbd5ca99c0f467a32cbc", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1f7d8596b9a65cf53b4d771e1f6cf25", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ac00054921655803c689a0c59b642da", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53fcc5ee96471dcee1b113a3f12af4b2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "425a1e5853c8822d9aaedeee196e40af", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e4b46a3bd436799621769297418ed38", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0dc41cb7288e919203b1a5f5e803052", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5dc7d672e49de08a76b7caae93b81d0", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57806ef9091d1ba36781e43812f8e67d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edf553af2e8e0c849a9299638c2a5838", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b28a67a1c60697869777ef9f3972a29e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec5bdeb6f93713906b005c1c07bba5b8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adfebfad99d3949824f2fc9fb302dbb7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b035ecc9671b30a1a7ecfc4063ff49e", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee81e59aba89eff3f40c8d012a9ab764", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c691176cf87298f0d034efdd723dbed2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "015cfc8bcffbc69d0450bb16f73928ff", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d199b448af01bef0a233231b1f0701aa", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2224bb09a9a1f8782281607d5fd2c4cf", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "636bb679b8233c7530acda4d5f93d617", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d8fe8f09010d4ada655de1149ccff9c", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9462f86830f7b5514a5e6d369c9a79fb", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d362b532f2e1da24cdc50e1abc45d96d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "388350bbdcc7bfee6380157767f922dc", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edbf78456421c9a25aaca8d8c4431558", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88d8b3445001eef174bbd56281df3a07", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16c1132d2bc41cd6bbfe1a580045d780", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8a589070ba304a1eea4c9e26bdc73e4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c2770ce7a7f587b672c78f55ec64862", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6fc1bbca97db8d4a85bcc10566c411c6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fb3aab6597f21e8aa32f462e7e76a2c", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "511bcfec0e88e3e68833efc17f2d48cf", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c21ff8ca66ce28c74ff70de8f2e80fd0", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33db4ffe7fdd665a6ffdee727a6d4c32", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55eea6381b6b2eb4f6a20b7ef0206863", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69be01ba2e0b44118410264975e3bc2a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c4bd4c40ffe3a63791521de3dd4b057", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d57021f1d5cccd3e16e5a9726dd9888", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e286922b17b623709ebaa79d861ce00", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f3eaedef478cbe37894bd3bbd0b2509", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62e729d288281dfdb35d67c268aed814", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dd5da8f53b087c551a6cc245725fcd6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08e9ea37d5043fe9ba6e0c33fc2f6c53", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52684027115d234e013463ca9a495a2f", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e22a5fdc4faf6a09d72232e8e490bd53", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b531f8e3a6d3a86e8589623de3ae74c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72b0749672a9ae9ee2d770302b4a90fd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68feb1cb51b6ee99649a0c4c4855c53f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5165d72e5ec5a61592f9f64655b6e107", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51a8d0b0f0f2c2e5877821de1f67bc79", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbec03805c95bfae48701c7e736fee44", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d461b259dd9f90edd461ff1f32c0c97", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c64b9fbaefd62560b238bee00d95c27", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b5870dcab931e4c3e63e3b9176bac99", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "483ac334ea05f4a5b5e5f9ff1dcddf75", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b85fc2a8af526c2ba63e5176db9e19d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5aae14db8d57a75f0d19155d6680af5e", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bd994414be03564ee2e521a37858fde", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eee044379df1d7d329ad216dbee91050", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3964dcbb5d538f3a102ee170e0d1051", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3435d7f3c25e710cd033a9c83fe69355", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24cf5e2492b74073d98e02305531fe10", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7911032a3b811f32a4bd1c655c323e86", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5471cc1465eead13e71f07e080edfe6c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5930ec24bef54f9997440a0f16a3d412", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5c689c87137dd4a750fe584d159abde", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b49189c7f067b48fa3c3f7b8bd19eeeb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c37cb0503894b4ed1e65717ac78f15b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f6d11087706022b41826b24e3ee1a26", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "522815520ea6d0ccc2165a352ba09000", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "177bbd593f2ac15ee8de701f72f928e9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88357ce37fbd0bf9211d18d5638cd037", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d90e0571d8b3c86553e23aa2633e968", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5d00e3add1c1bf7ce21660a55a19028", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "505b7be32190cb6bc6397f2e8ef6016b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a574f658ace1aa3614a62454484c1aa8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e5add265b7cc4cbb84a8760aa3e669a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "730a8e3053af8c8864859beb866acd7d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d7d6dabf8e27ce30333950dee74aea9", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a38c9425e67fd3900cc173bda60dfb7b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aeb88c0a81107e0b88bbdca4c861c9cd", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16a614f13eecfec459987ae550e4c415", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfdff521dd6a4be66ac2c18461775961", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93dc80fb6dfb0ac192f5634485f0ed2d", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0851a989d20ea8fe52ddbe5d5f8c980", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3464c66884d8a38a6e7e9fe986027ddf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adab081d7d316f3e12c018e65cbfe99b", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3aecc07e00d67d8727729829e1899f3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2dbe9b8091c2d5fdae1ecccdd6bd68c2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "526a32da754a19cb51f4627b9392bef7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d169fea480cdf3b5cfc1bc799f26e449", - "notes": [], - "params": { - "message": "--> Adding H20" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92f1150dd8ebd211d2f5bc1a92828fdb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c159ace0843e7a5ae54dc6c684e95d1", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 181.24, - "z": 16.3 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "988bc2929685b26a07825878ad2183fa", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fddf438f5fd79ab1c05c1c6042182622", - "notes": [], - "params": { - "message": "--> Adding Cleanup Beads (0.8x)" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2ba2c9ab3b64db482bcacdc49d4c31f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "626eb9fc6f433fe131ea093b38dc7d16", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17bea0fdb015e53b9b7c64041b70cc5a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dbb520d775e9cc9091b46df6b63e8c4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0731f6ab292d29c33dd264ac696a16a5", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7f8fee1b721b216c237b441aa0f9327", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a25a41166a3a0a826648ff8001a5d0b4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8676014b10c24b9aa35e74e7fa507e03", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba554f7e025c2c3485c89d36e3cf8a38", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 3.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 3.75 - }, - "volume": 3.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04acb4bd2f2b8d33227ca53b852f302c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b5fea3ea94a796e69f43a5e9ffa39e5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 182.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cf3b1695ddbe941d3089cd16dc2b649", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 174.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9485d768d16c85ae20b68b3f713e0ad6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb1ec784bfb13e9afab9e9127dedb3f5", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49492c644d82ac0b4c8eb69470657588", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 57.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5b51dadf1de3b0fede553db8a6e9cf9", - "notes": [], - "params": { - "message": "--> Adding SAMPLE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4426bf79136f697696177a3f4d200aac", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.2 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.0600000000000014 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "820d39242f06f6d3f993632f6a38bde2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f7e918f7522cdae9aeeaf7114ba710a", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a92a1d67bb23dfea5c22d5cef8eba403", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e3a54e2eb7d2646addfc2ff63573f0b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "285cd70e5c7e48af395971b8df541840", - "notes": [], - "params": { - "seconds": 0.2 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84356140bdfc74dabed233d566cdf89c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "604d6c53b6a8cfdbb994c2eab895c49f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/setAndWaitForShakeSpeed", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f762a390cbe662bdafbed56161e2c87", - "notes": [], - "params": { - "moduleId": "UUID", - "rpm": 1800.0 - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "730437e4766efd2913878edf2533f957", - "notes": [], - "params": { - "seconds": 300.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/deactivateShaker", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed11bd0071017d788e01bc73683d5df8", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d675f4bd07b5975e869472cb9cf6efc3", - "notes": [], - "params": { - "message": "SETTING THERMO to Room Temp" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "defe03f2dde14e51f9278becc4c18747", - "notes": [], - "params": { - "celsius": 20.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5adf2e1e98192850a575c2b97a29ad60", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3a0bdde93557a529231b662a66918a2", - "notes": [], - "params": { - "celsius": 37.0, - "moduleId": "UUID" - }, - "result": { - "targetLidTemperature": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26eb7c7baf652e6e5b696662ede79933", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b18292b391fe903db9e31086a4f0eaa", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d703ab29431e1980c6d2306b94147e28", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72fbdb6315fe0dcf0fc18085b8b04277", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cef971fd0b2f7f13330ab36263fa412", - "notes": [], - "params": { - "seconds": 240.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74001367c3118299bd318126bb7694fc", - "notes": [], - "params": { - "message": "--> Removing Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34d92f21ac84ee2bd3e4e99853b7f53c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f00a202eb646839dc44f41d4a87bbfb9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab4febac803b86598bdb77c72438b373", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94d092be5230cbdd676abcf51d9d1e44", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76a7b67b0ccd52495c683cf99654d0aa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b6a6a912ec48c815be47e07d2c11e33", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcae8a3272fc086aa80c12721c3b5818", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b6ad899861e897d339b2d2d6e5322ff", - "notes": [], - "params": { - "message": "Adding 1600ul tp 38080" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0ff2a2a0102ecb81f1fd28c14c601df", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a82fbe8259ec9942bb75dfaf161265a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4abd59c34e8ac2b8ccf5e7fada573244", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db603bfb4b1b3d45af266e4ba8258e72", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57730819b21ce31478cc9e8c0c2b0855", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e3fbb6d60e490db888ea8d8dc1c3dec", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42e31ae7032b563105b870f1e965f56a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9959a02052e414f5c26ac13eebb166b7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5574187468b86c861e95af919feb3e0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c8289904ebbe95518814a6c94be46e2", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b472f10feb32f30cba618b4fe3a2d4e0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40fab3576300f195cdfa2ac3531aa5d9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "306e6065826b0eba660e0464efb36da9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cdae31611c067f2ce96a6902c01df3a", - "notes": [], - "params": { - "message": "Adding 1600ul tp 39680" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a347d0fe878c159252057d49081726a1", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71a400fb56edf2936565e2dd01aba15a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfdd29f59688dc8cd3274a2a6b1cd205", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d877d2373bc172d4b0cbedcf2e1c0f48", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a4f6a76fa278409bd833987962ed0b6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7293faa695096e25688062d06f1be364", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "528e27ef9e7e457b0482ae3419d705dd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c30ab622f23be9ba12e37111aa911746", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bd66be8997bb9a272b9a124f3fb1423", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ae0861baecb56b1b96b3793914f2171", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e527597928553dba4755814c95d9db8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04a1addb85c097d6f54b2bda6bb54c47", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d86e5de2e7dcb65d1657bd24dcb96c52", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61a9bd89ad889a8607244fba4e75e291", - "notes": [], - "params": { - "message": "Adding 1600ul tp 41280" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a0a6cd559b30de2d05037bc331bcc0b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "149247df051cd4e11fedf0695eafd142", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3bff09e2393618a38f332806366599a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "748855794c5080291bb8c7dbded0e633", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f44e3f29ba29fa6b3ff40089bb2114ce", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05e06156fab3a46a0fe016d605897b4f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d64540377c17b609cab398f5d4b01728", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2538f2266283048a623c2ecb24d7617", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9739198dde79954e92f72e12b4f1d46f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d914b9824001d64d71a8362cc148bff", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76c73a4ee8f3aa8a4583a3219cc8c2d3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd107dcdcf03b440db9944290229b4fc", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "868bfb522c18bf04f79e3e247bd803ab", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8210de59bd81ad183b8f533c1d5ecf54", - "notes": [], - "params": { - "message": "Adding 1600ul tp 42880" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a9bf135bc583bb68dc6811a89172011", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3350729f866c7cebd5e6cbb66e3e5d4", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c2414120f05cce4a34bea89cc2cbbb3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a051c3782b003677fa48fbcd9a573a6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54af54864dc9fecb54830f0644a625ce", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1b51f389e09f863b60d0e5ebb15b552", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c555ca983541946c8682d3037b74a991", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de9771a356d8ce84294088cf2dce6863", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce6edda9ef924f6a47dc6af974cf7aa2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83aec15fcd9f14094b921d26d6373102", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca72d08af2a3cbbc2a7238fc397f78fd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38106f57a4ed7ad5e8c9219678f70f59", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3aa5c796853b21bffac9c5aa0228037", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee684d71d34ed9a758ac596023c4d49e", - "notes": [], - "params": { - "message": "Adding 1600ul tp 44480" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3cd585f8e45971e6af9fc791723c198", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc53b35393618dea7edfd40e972c4809", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c722b4c1a04896db3f06a0f863844d86", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5062ec041b8074674df5e8513b63d2a9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee6b9be95dd369cb51d54b96ce0d161f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01af26d24dac5d9dac28b739ecd3a865", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ecfd67a117ddb8e31e26949829be96f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6e12d1277c524f54da724c92c4accca", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb197780afc5c180e64a4fc2d6678b2a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd55439e039960c516c17380dee1479c", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e27978be461c1c58a56eb38b8962b9e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "376008bb2f5e21e311819130c275f07d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad21dbb665938b411c99ddeb2cf18102", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93bfb1622a3d5bff8bc7db5f7dbb35f7", - "notes": [], - "params": { - "message": "Adding 1600ul tp 46080" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fbbdd50d19229c542fa7ace6080aed5", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ed608ef555b7a2f9993b9f38b39a88e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9481bed61b3f159e94bd0e0e42c01d3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ca99ccd731ba045bb8614631ae99178", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "820485a43130d0cf83731614dc944da7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f05cdee7b8df184e6ea489b36550136e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8759935a1b7a19cb37a7888e7950cdb2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8cdf8f67a723e51331fdd04d1692e03", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d529de36bce03f388e30a2e255a4209", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b3496d7af938b953d0b65d23aa6f3fa", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fafdf8584c1bd643301ab5b91848997c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "756a57f6fc637296b1f0c63d7c0e9b62", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd2aba5242a6f2dba5c45c692b094866", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40cddc6e09e035694f1e855b1c0dea76", - "notes": [], - "params": { - "message": "Adding 1600ul tp 47680" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eaf05a455493416e5ff804ac49d02098", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36c6a87180d6af799b9347bd437e26f5", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ede7345340f4c5131954c75af5eaf57", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "536197340b9b4bd65f6c82f08ec7e98b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4673c220a557187a1fe23c6d31035ee", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "262854773710683e26da631660022a53", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c538dd794d5756df32af6882070ab197", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc95641fd9db209fdc0e360b4681b5ee", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7826d950bdea304aed27ac5af6458f10", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "232b871cabfe23a3d0f17a3c318cf64e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc57d8ac034681d2fcc44c6a28702c34", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1de2d0004b767e3fdd7b83eadef5981", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e49ee41016100b3c191e8b5f90022a9d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e62710c9b760d837b8727d95519fe3ff", - "notes": [], - "params": { - "message": "Adding 1600ul tp 49280" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a22063387b8b4f900509f2f0bf876904", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d0d5089d68b152ba9e812ac62440e73", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98b86efcffc00465fe5475b94bff0f8e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e4cf537c224bd0f14f83bd8b374b1e9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36fc5df01df03d939a1a3beeb99f3218", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0ac46d9948893a07beac400e67343c0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0185fd0f0984a51590f0534c81cbee86", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1ff46cb1fbd209b8274c2aabcdf55bb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24d19d549b229a00eb89335c9dd584f1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7001bca8f224afd480ff1a2039ad50e", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "764507c4ad66c710f8e274a06cd71fe6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2fea60cd1215786089cac3214614634", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df814710124011b88da2bfe6c0c481f1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e91d6a03402489fac928f8828f7b14c2", - "notes": [], - "params": { - "message": "Adding 1600ul tp 50880" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d5a6d86d97ff1a1fea9ff6b3220172e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93354328b8291c44364d5274bb5ea8e4", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36e0f64ead5985a76924a6b65d7430f9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14aa267763e97d106133834e5e9a94cf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cf16881eab424d1a2f11dc8828dda8a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1089e51d98844b8c48ce1f9a1839e20", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69ba36dc3a90d19aa57bbf03b9255277", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcdc8c2142615ded9d0d089b3c03670a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35b475ee4767007186d75b1207ea104f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "986a1f6e3f47a15e42459f687239a1bd", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fde2d740ef4f66fd08fadeead5f8f7f8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73238a0d1de5104ac0fab85cb99f46cd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c1998e589dc2cdcc28737bdebd1cfdc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "869f9ec9478fe25c66112af60ef4ac4f", - "notes": [], - "params": { - "message": "Adding 1600ul tp 52480" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2437861e7f036f0706f05284605ad0e9", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "306bdc0afed7dc5064a046c55a3e5798", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbed66b82fab9f5fde93279aa9f6ea1f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "439638f32d2e433f7a7283621dc2c0ac", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fceddcf89ffc3a1a974d1ba3cf74029e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3ab52a15111a4952f8a8994f58ce269", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21e2a0a46773efe53b0ba09b1370adb1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "402372eb1c4a3b6a5c50be408a2e8aaa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "065033bd24be513e9e6fc7734b8b1cc9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6ff60b89b9e5ffdc2fb46d7aa59cbd3", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32c34e75dc36638fbe94ea3fc6521b0b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aec57d0597528ff5663d1485364ee378", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd7c5e65a3d7317b435773ff85478ef9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c5b07dc4bcf68e2db2f1053bf34ddc2", - "notes": [], - "params": { - "message": "Adding 1600ul tp 54080" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b0d9c5544f557d417c412da4f4808ac", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6097296e96bda10dc5e2a14183e71d56", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0aadd04040370262851c4f778cc42094", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ac503bf5a100c54f6bfd333bbb96475", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "547501825ba51ee62824119de056ed2a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c66121c257d4821c04a136ac8990373", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1db7626114d163e50399f83097efc3e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77d819b9c746ca53b715efbed9899213", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c7a36acf80ea270734e32f161674cab", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd6444fc664638fa96b67528a231b768", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5de34ea462530194060055f304ef28a1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09719940c57d16725859dd9f1fe2634a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b9fee8950d825e350c850f7e1eaef3f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a76179768f1ed6c2e891c8568b80338", - "notes": [], - "params": { - "message": "Adding 1600ul tp 55680" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5d217d2419d14b4ea8a79ec6b305046", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9616b1904534e53f275c1c43f71781fa", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2effa09e5d123284425a3cab46e61a63", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19171aebf922325c1ae47d0478c28b00", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec1b450a91df80cfad4fbc487cc90929", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "342a598a541e501e43c505ae168fc9db", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1c6a916c699bdcd0d1e47c581ac21cf", - "notes": [], - "params": { - "message": "--> ETOH Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a00704067ea6f3bd4c7b4222d6eb2925", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7240059dbf46c410d41bf1c9872f6ce8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "331bd9d372c7cfcb28b84c4ad7f42b50", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1972179cde01618c50c3d9a1604fe425", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd5d5bb9ee1f66ced95be889ddc10902", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d41b235e9b7a6bc88cf4698573dd79cc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c60f14f72890e84bab8b762e8b2d04e0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67621a72895fc4ba6328bbbc965db0f1", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11cb3a018f41c945f81b43cf674fc9cd", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2a807c5a3ae18a4db168d1e756bc0b3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "033dd16c901680b90efa0c36418b13c6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ebf78ef7cce5c751a9f3b2dbd891d85", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "deb3311cf7055ede03b7320c33c72841", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a74e177ea1e3e7b1605a486b40e8b347", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "858b1c1588fafeef3e89377240599c9f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8f4e8021aadb90213b62a59fe92182d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd680c0d9ffa1925785dca701c9934b5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8023a5bedcf7c6c2e93e3c1bc3de4cf4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10199b042cb9855b0d59bffe36d42e45", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c828855571ef3cacbd22dc2d86b3a75e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97d1858d488647c952e45f2fbdfe584d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32efbc900226056372a828e899bdc118", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c984cfd94cd587a9ca3b9ab0cdbf4c4e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fb8fdbe7903487d8178d808616d2bea", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "239bb519deb6987f73b650d393358cd2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d521896569402d8256a2631d4855b75d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45c341eb820332a4778aa5c76ae3e203", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfacc78d104b0742a4cdd28128f1b044", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5d3b868f41644c7da372754ae9c5ec7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e849d5d9e5ecb80a534610ded09103c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37c936812f2a011e84a29a94c6b5bf19", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "673d0715d3e50b4eb6af479999f0cb91", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66a49f9024467fe145a025bf4e0fa64b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2eaea084c666fc45c98e2f80e26b31c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13044297a2d9529188c852c370830a3d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd3ce1430172eafec8a93e58f6854b22", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f0fb0798cde9feae0b747db8d9dcb9b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc093f4b58d70d239cc8ee007e842b6e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b23676cf86ce9f6a98448af9cab8899", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7c2d7f4d669d5d4865e0a0e5583cac2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6ea55eb61e87b5d97d7ca9eeff49630", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2eb6662f0358eb24908ab6ea02103fee", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cb4fcf7ae3d2fb74659316a38730507", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "879638ab3f7f2936346dc461d5ab4d38", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aca6e8c29f8b5346d8d09b1d803e9dd", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b91cc398d17d55f1f0030e0ca2ae796e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "908ba7c61dcecce38d96ed1bd61b2130", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a52aefdb71e857818bc9c47ebd68ac7d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4df46faf660a1988d131272cbcd802fe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adb71b1e4a197124f179e0c117f49146", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bf6439291856714ce34d594c9e071d4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c7159a3e3d182d605dfd28969f6f4ae", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6cd512d02e7cef4b42a82bb625576912", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "627919a107c44e148f1f23f03293597f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e1415c99741d2d126ef7a24defcbec9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3880ad8d76d508ba66715b95512bfe36", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2adb34ac970e5a05a9aeb52070d8ffe6", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "970c97da663fb4bc9c8ae53cc6c19370", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79333c79500aae287a51330576f0386b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f43a9ee5365cf131187461132cc2a6a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8c2658012d20e6ed9b47c89978237bb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bbd26304470abd4487ae2ecd8d570e0", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35cd641da21d520613df6404780c2bfa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bdfd8d97baf4af8a28e8b2a4bbb1ade", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ed43cf4e068f38c17a46506edad0e71", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f169a34bbb777a5a80da00cf66fe947", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a006d9f6ecb3f32a0ee10751648d0812", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8eb581cfd6633f768c8dbc526339acfc", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1aa5181e01c32100bdb69a5288ea2f41", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb1d7fc785c5af45e5dc86e5c649c992", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfc2854bbbcfdc18b5dc1fb38e6d5cac", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7846505f66b8028e679b71cf585429cf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3fd8903a284af13d9e98876252467d3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c272865a00773f4acf914acadbb1d26f", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "386eab4f2af14f438b8f2f4a96f64cde", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e74c288f6af317832ce381d37cf037f7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6e60ad81c12823fa079197ef6146dd6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab47abdad0fb9bb32f28a6982a4c3746", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee9c8151c24bd92ab45f18a2f81c8d87", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e750240c40a037bd5435b3a2197143c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dece4804c53c4674d9f03461ef4054e4", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d8cd47fad1e5904579bc7410c6a055b", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7fc37ff67455801a0dd6d6a9c49d75c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "669e5e389fbbf7c63d36f675b50f421c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27994803c905ac308ce8ddc0b1c00819", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1842c14ac37d62094bd4fe3ae37c3c3", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1eb1662ec215775f0f9f576c2d4f9a28", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "095d9700797440b480091d1e7d5db1ef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c13e1f298598943ed268b3381228a5de", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfd1caab966926da8582540988c9ff07", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2629a0565edb0590000cd26dffbf8812", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b45da15980fe809b1a5b72bdff966a1", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "982cd47054b82ee81626f313ab981261", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "642a93c17d4f7970e1ae91fd8fa14005", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5bd1d0d9a11bd78b0acd0fe05954283", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54fdd3dc22158bfc213e2375f465c812", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e40c5272c114575d0bfaf57edc426ef9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "276e2860da67f2848780f7db2f72e451", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "763e5596ab898a4d516c739c45752fd3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48e72396bcc141d982ad41522455505f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce6fd6445a99fb8fad056cf7d85951bd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73b3b641c5781ca1d27685fe76d82708", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e8d21ddf2471f0825775ad200adad72", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8a4ac042da8bca0e1b3f7c1969f475b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ddfb3ed286b7b448f6c21400c0a6fe42", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da7bfdbbdce95a971f01471a405100a9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aeab322be6c8c7e6e81ffca32b523852", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bdb41e7625a1e01889de9b1b162a5eb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fec37d2a30666319f09fdf70b677304", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d7d8712f6d30710e1db6a64469cb9a4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56c52b6f39fda5f695fb427aca4ad9e2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d5e666fd0a9c7c634582f22bfc16dfa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50f49c8e2927ab39733252e54735d2ea", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d277be188e1cf479c5db81a02481ac93", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec544b9108829f163395f9374743d168", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91929636f021ba4e8220b493588ad121", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f96d716b918fe1d676e4cec31a14af87", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2610234471053a3df2634c2af70ce6e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bf3100d73d2cd28750678d9357f0d87", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76b636ba46e84a5e8d3a4793be242453", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcb070bffc50a255d3e61efd898ddf7b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2abc735a2c34807c4ec68ed2195d4d4e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1963d9954e3054445c9bcac299dfd1d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "debd5fda42fd047dc25f26ea976b64df", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31d9bd39d4a92907ed1ba8c8999ff120", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4579c2cce5c565a383394f34f748c4d0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7da6f426ff09b9bb32a42a9f4c42d1e1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87a41aeaac84dddcc7f197192038dc92", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5ac623bdf13e63a535f9ec9ba2e12c8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7ad3951c6c46dfdf7f4363b13f1c9bb", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "465b6c815c6c2f4d667e5c79f1da3b66", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6020bc24dfa80db9d39f23aa8699974", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fb1f9e13bb1934cd2c2d5ab61957ab4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7b68facdec4f8265bf35e2d3487864e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4c0d3320f460648e48bdc24a1e49cbe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf3e27f23fa63c61935ed1d0f360ac16", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2856a2f6cfd8432d48e9f7e1f059a280", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9951d43cdd8056ff21bca9e5df751295", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68c64a1db6f8e92f102de278ee9491e5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2560a51d2abaf3385ea8e35eb0e00d4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24cabe3b6039a8fbc6841eac25103988", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e28f4568529548031d1387709853508", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcefdfd0b52331f9e62fb6ddb17c4be9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c64ce454f2aef4207806f25eea1d27ec", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad88748315866837c0dfcf735f066ae1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14c1055f417c539432ed477758440e79", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96637167c24e907202e7910bdbc30bd9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf74f6e7c5426c0fabc2b2f980d8958d", - "notes": [], - "params": { - "seconds": 30.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ed9e3c0cf740eac201f937407edecbd", - "notes": [], - "params": { - "message": "--> Remove ETOH Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5971a953d5659973f77f7c2b7ee87f9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c8d751ece1415c39f873acedede5c09", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "309e1afc9175f4097b7b5e130d8717ad", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f95dae2e9fc6e935a9d4ee2e2d35f301", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a79214ad99bbb03cda1d1874b6f7eee", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c8f8832b3cac01d7c364eb2131d6fa0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7833050727ed8ff28d1efcb0ace5ca0e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c92819c0d6498ced64104991d5757ea2", - "notes": [], - "params": { - "message": "Adding 1200ul tp 56880" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35dae49822cb36a5ad529d8332b669e6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77863974c0cc7e54c3aba8bfb81cbc9a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e6588cf40134aa5ebca4167b0de7b7f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b05979638c049aee9c2bf174c592128", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08abd565d0574bb6c99bf2860140ac71", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eeb9d3654330f3cb61a3cba11062587a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "501fef64f3351d59cb875baa6a3034d1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "719f609eb847975637f3613d647157da", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62b2cf378904a1259b6336cac53f155e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "407bfc18fb27bb8ef1692ef8639731c8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17a266e52a72cade3ea7beb6c7437c8b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2064fed913beb7aefc15c275e74e3ea8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9c4072af6773a2dd69c7c23cba124c0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5aef3ef2df9eb9d65d59fded40f254be", - "notes": [], - "params": { - "message": "Adding 1200ul tp 58080" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fef7c4ef106f315c3da9dc65ce4c294", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02864e3cfe1968db609c084aaa0f22e0", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c0a99f7523620092fd98fa993047616", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79a4030b8d365a47528fbf9e323c2c8e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2db436510544a105b22acfb3108186ee", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bc00b8330e2b23d9fccbd4ba875604d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e6dee136c925bd5eb4c1f696fe69107", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e226d07b5e81b49ddf7d6da50957e98", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3ca75e7b8f038c66b98ab795362b7b2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "318f1fb13f570f88c1bd7ad107e67f80", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69f56fedac30bab1fffa811230acd661", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28c79859cf0160b15494f939364571a3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10a07d86c97043abd4c882509fa7b1a3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1305d6e65f2b785789a9fc48d380f984", - "notes": [], - "params": { - "message": "Adding 1200ul tp 59280" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c34a3d88d5f503bf9384ad1029dcf046", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca38883c43117eb8b5e6615718b1d171", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76c1c5e1c285b811bebb82d95ba6c3e0", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "935eedfc87a2669b0b4e501a55981172", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e37907f2f0ee1d15605842ec147abd8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "057845540971db0f88cd8c3a3ec103fa", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fadad6f44ac46d64e28792f7309accb0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78646b1b4c82ec81e1145afe660c6446", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2de77b529b4f4fbb526f792af55eab79", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "658a7b3f637122ce58ec745ca3551da6", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f04ce9927bee64d654f241118fc41d21", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "791b05d31da3b9662797e115bf40889e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59ec6139070f32ec6ba9c566e6f19ad2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b955eb9b902dc9ba5de95da619dc6534", - "notes": [], - "params": { - "message": "Adding 1200ul tp 60480" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1c589d8f12013a42af5a8feda20abb8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b4a425ba7ece0846615ff427fae4188", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26c9e9d4f3141ddf519d9cf1b62a0de4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08e0dbe5be5d04fc15b8e0794b2e248b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58767e8bd13b1f7356a20bd5e1735487", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73bdb106dd00b42bafc5431231480684", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "914ddb86c92c2e77c029b0a789b3d97c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fc68531c04951b5092872d53f3a9a8d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64da57f25079b0598035dfd23bd872e5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52a16285454809abcbc03528b3487ba1", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61993e4204efea0f882abb9f4abe1877", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c02ee61e2f42ed9aee43faff66b1f92", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7874cd9fbfbafe9181f9982f2d038ec", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ee4955d4b759015f3eaef85ccb14664", - "notes": [], - "params": { - "message": "Adding 1200ul tp 61680" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce12dc5a8f063011db263750e3deb4ae", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "126937606e208c35bb3eb0d3f91cf6c8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03b4cb69e7d90ae901b6214ee77f7cf9", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f5e6f60ed6a8a804caaed757167732b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "633f864519964fd8ed4a6bdf2fc77bb9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca73b8992c78be126d18f6f27cd9de20", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67b774df984aba30141e358bb4e7b293", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "059479af32da76ca08696cb08d90a8b5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a32ac9f7b718192c526771be223126f3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33c9e3a86ffffc6d23243b2437cb701a", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aadcb03554d1561c2120085248d5f2a0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b87e31d9fef1e9d1a6c2b139456f84e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0987e7aafa565ade2d5dc441711e7b5c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b695af217f24a120c98414805febb7d", - "notes": [], - "params": { - "message": "Adding 1200ul tp 62880" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9108bea91a7b68ae512beec885a46182", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42dfc551097a2e56720bbd5c89949d3d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f15699e3a262319bc754c67b4a131b2", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16818df440a7a17f2e8fe0d9f09fa2c6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12edb4a49adcfc5c87c3fbc7ea8e1067", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd4a03eedbdef72ac4f981e18a05444a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c198e616cd184ae5d0a66bfeb06439c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "307de14f98b9e55375414d9cd1e188a2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "020716f50922c131b8b99a2330b8978d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a482afc1a304edd950585bf410823ecd", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "288bfddc0b3f2898910fb10e01851770", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1f3d63d34cecb868e9a8f5414fe095c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13f90969b1a16c2aa5d4f96a98d6004e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "807a412f4b0703c8dbe21e15d3625475", - "notes": [], - "params": { - "message": "Adding 1200ul tp 64080" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c54d075fd0cb4553561bbbe76d7cce0d", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00fac70d189d0bf2dcfa863b32827620", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc8241457159707266bc417c5507ef51", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a47fee6414c2a4a1735a3ec9d7d0d5a6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34df7aad104096f1d4e3077296707dda", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b528d98da88a180b14d304438a5ba241", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f1d747071093d1a2346f797aae18b22", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "112fc75ce2f109fddcf021c45b09c82a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "482be96ba85a631b30f77909a0b275f2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ed792718c7cbdd7bb03ad6f86e05ddb", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2a4dd0ed13a1e78ab5e658b9cd49b8d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce89aa33ace23f213ae19286ac88273e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "774d3d84032928481f5e748fa3649d4c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "639f8bf1a20bddee4964a85691400a08", - "notes": [], - "params": { - "message": "Adding 1200ul tp 65280" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d0b162c52fa6e097b03d0317452bb67", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8be7c08d584545f7a9a68b1993a1fd42", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f249e382c3e2d8f1a51527eb17c6b795", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc6f1dcb3cf2b5c229f8b8224bd108ce", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e1f556ccb9bda013227880273d9e6fc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9cd8438857cf070a3585b4ea53860a2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "126ce8df3662573e44a3f329bae14b15", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6b74d21b9c4a7f69b2ae35930317539", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39dab3e996733d453f90ca86a2218770", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7719fcf531d4ddac695316840618cfb6", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bdacab2a7edbba60fc6ec6fa08f04c2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61e01ccdd1eec495b809ff856d7f4db2", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ad76ce93d34d63f2d242cbe533123fc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b85970d1f1e96fcc5a226b7078f072a4", - "notes": [], - "params": { - "message": "Adding 1200ul tp 66480" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6e92c54a9da33f8cb50336a16fb8a92", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "335c8d1e31ba48c96778c60f1bdb211d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf62daaf4b2b8e1ba7a4fe39707c0486", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1166969cfc5e95f6f5e6d5f4104f0e0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fed3caeb4829434a788eee5c40a94d3b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecb51d77009bcdce431ea781e2368c2d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db8016412e84689b0f6a3272706a1d7b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dee9efae181f36dbd8920c2f9ad81d43", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2ee84d68f53d81910acebca469cccea", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95d54bc25b3c96a8ea1e0cdae2db7862", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93360739989b9a17dc56ec9781debc2c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "469c4ffd3ca01b01afeaa5a97a09e3a9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a89de5bb88cce128b345e74f497e526", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9524015ab80778aa78645c290ad37caa", - "notes": [], - "params": { - "message": "Adding 1200ul tp 67680" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8db9ed9ea4e602b412d9977f51e9c264", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57137319818531035cb80a8a1c6c6f2c", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cd22c8cbd49d6f7c4c234cca3438d19", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fa5e9e489a8a53ae3582ffc26d6860d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a135c418584af278f85e459da69babc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e711be33be7fee65f114b1a008a1fcbb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f7573665b638f5af7b48bb519e89071", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6709e0cd6163cc741080996b815c339c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df09377664160433f01ca002ae7ae7e6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f300e6e3a5bb65d3a796aabbcb7e187d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbe95799b66a9320ad7a2f759329de6a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a65b01d09ece91bf53ce21b49074efc6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7b77f4ca217e35ac66b4ab4399879ed", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1274eba4bd4787141cd324f008c41e17", - "notes": [], - "params": { - "message": "Adding 1200ul tp 68880" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdb369cb8d01b4ed69b5e5d1ad0f48d3", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "747e1c6a70a386cf2231d156a84a3b05", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad1dc1c3b46b4fd92205e85c210270ab", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3e39956fd97e2613f7ca385417eb7b2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "757718b2fa98601db4a00532931be7bb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e15748cda37d3b02702694941767c9d1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7efbaea3be6f7e9efcf997b66e3a552", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c32d29dfcad57b923a2c63cd2683247", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3407f32890a2ad3fc2593eb19d0c4843", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9de6d2b67aa2a42d98b02d882da30424", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efde5e2a10542ceb4df2cc303ac509ab", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dde21fad357f065c724c561bcb8ba415", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "701264d9e2a6ede2c3a871b7a434bf45", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05293cedc58e0c9a09356f75eb9fe7e9", - "notes": [], - "params": { - "message": "Adding 1200ul tp 70080" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b405ebe43998e8e2c7c1db921bed834", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7f0d017c1ebfa810f3683665e85c07b", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fc57c5e529038135d072a91e384d4b4", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a5eb68f3d57869708539da3348c927c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5915a2af04eef7b50fdd2c9ed5dc5193", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85a89f039a301c9c46d4cf8f8de42068", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf4d6e87b6ddc209d2bda12710df0c29", - "notes": [], - "params": { - "message": "--> ETOH Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd7c2f341e03bed897523e675f2f0aae", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ce479567949345cf3d1da93b6837b88", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1a4a6b66a29924fea0575e513affa66", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58aaf74fd714e9e8cef83f1e8ffc690d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a8f046afdaa30bbc425a59684059fad", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a453c438a90ca48070af3d236b6e8c38", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8a495de3a319563c238abf465e43a1a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "332125033654579aeb86a9fe7c08cbd2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2dbd6a3f4b19acfcbb21a5ab30983a6d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39b263479a2a339b102c3c04beeb8c53", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8af12b8f5d6fcbaee88988bf291f790e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd91bb04f77d002ab7c2adb3483b723c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8bf0a2204e8adbfd1d7f848212b2570", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "166f6249439a03a4a5e3c15fb51beb3a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd65dc3e80c2c6e92cfa4064b33c7f21", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "062457d57c2172ef867882b089c78e02", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8b9164c3baa780fde0555d75bec647c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b84968e26989c1a5b563115f654d18c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "810c687664ef8c2bd86da29577afe0b5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adc204406571bfc3a378719099f1fffe", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bec7370406d75f844199e8e279cf876", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56e420bd788b67a7e867290658a0202c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "855338462c8acdf8e8e0504fc71ffc5d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee6a080d5413fddedb2b77a0043eca3e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31c257f0e3def3bc2a271a4c9a510231", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d5c23df0bac6ad9f8219909d41f79ba", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bcf9ba96eb74b7071faf0069b1ee4b2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18fae3f5647a2ee90ba141bd13d9d9e7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6ba4688cc41caecf69d8dedf9cf8ddd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6552aac657934a2eb712846813d494a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdeb46920a02dd1c7f8aabe50aba376b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c89235dacbb7ccab0a8e5bb9687c7b8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "262ce8a92438dc46ab0abc98c8ccc022", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8be9e2ef2649bdc9a5abcb15a51a3bd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac9f214bec7f642b1fe354e8e99d1019", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3068e813445a86b04b9ca3428038397", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cabba435460a5ddf8f970aa91adc307", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88b5c877ac4f919f417c6b1e14562d58", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d357db0c33441ac0f2f845748a4b975", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cce80959b11822302068b50a9bfcedd5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce6d7adba78f8d1865c8636fcb6bd6b2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52830797971bcc7c6cbfa9eb09334dd4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85b9a5784164d01df5f972b9063fe2f6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acad5bc5cc55a79409a570edbd7cc7f6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2eeb4f370939f199a7f8013d793d1c04", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4174fcb1dce1767bfa69d040204b35f5", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "570fb6ccffb7865a70c0b6db1a302f53", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1094cba2164c8e952717980804266c4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fed1c7cdad3856ff2f483db3dbe20058", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "060c8a92e1c0163a418e6196c775a5ac", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27c196bebbdac5ac2a1e181a7f557647", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74829f67d7f65e73938711bb707be646", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b99c4c081aa9341bae2ed9055532244", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7c2c938e3a82007b05f73bf854d6f67", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93ee9c2c8ec8cd2f5c9bfdf1865412ab", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bf49f0c35fa78dc2eb027c8b1d4ee06", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97c22487c932792e3fbd1f992dc15231", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9deaf12ca263ee5ad800b646ac1a5787", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a89ff88ab5fddb7c4662d9a992f6d414", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c856f2d77a8ca401e7b9edafbeb20681", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa4d49a62d4bf93c0e5763639fbd5ad3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10ec5a16c0af0aac499f575ac16ab852", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae643cc41d84df89ab0f63383b87e691", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dd0bbff554de50cda0b8b06db7f4b87", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab7d7154ead310ce0d73a116326d3d63", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 218.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f5a8a17dcc21dd90b4302ae8a0029a6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 210.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7cc60d980a912c1bf00e16193217694", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b603942e590d9d27782f86f30baa5ec0", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ec1b0d547582587088974179c10da4d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cc6b53d9e66fcb711274f28ee725d7d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "975cb64723f66658f95677e482020454", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13a44fd1b112059c645a994de1429823", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d551f2a720a04703c792d6df740a9191", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "332d7c10eaba8dff1f26c25aa05ee9c7", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89e943801294efa5f9d051f7f6e14c93", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6dc3809d67b320dcacb48f52ed12e21", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5675d001cc562325b1602ae36e6852f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "412e945904a1103b24217626bbb156ef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb60b26246e30492f0b7100c8ba1b9e7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b36acaf6546fee684bcfaa07ce2cbb95", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9874103bde256c369b1c526a0ab57b78", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2ab806d8cf08056c9167bb26cc825bd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "579f31d3e6b81acf78088ae000184bb9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdf1fbd13d9f6dc53bed6c053556bd83", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e418b156c67b2b07adb1ec700be2326", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5744c875146162c1a55ce0d06a2df48a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63ceefe0aca15ebb796fa2f6a30a8ccb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7c66e6e7e51e7d39789cc2941e45eac", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40c23d92081c00331b1e3f4a357779ed", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "968828c274430e0e49cd16ba5825a067", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "caf91ccce23f5707b602456775f232f1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7f5e88362676b3580d1beb772aaa5d0", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5ba174739015dcb158aab3136a0cf11", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33c52946a685af0c405928047849bd40", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "698eafacc3eec5e2fd83df16c60af3b0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c5e6586d2311a0d4fbf944514c74c98", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1039efcf7611c4dc8a1dc97166fdcbb2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5399d3d20b8185367600826188df5e8c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66cb65f1a577708ac259d248adf4ea7a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e55523b06ce0d2cc7dd8ba5ac08234af", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0b5bf4f48a94a07721fc61743218630", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "109b7425467a64ee0094c0307fba5d43", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0aa5db57bff83202df2262528504d1f3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f44305c413d92b7d8f5c67de3a97d99", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6506e1e29f385c7161e36d6fe10ad588", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d793f429eaff6483a479ddf2cdb5188", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "861752f241744f9c71ae4475c44dc8da", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6ea26c15c4bf1742249a126db71b416", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5971615b34a343554fc7d6f57e4a385", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40d06a3598fd1d63bc824d52cf839606", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3e52dc7f5850a6532f8199af82357d6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00e449978845c71eedf06af6f115c1f6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72828071998d00b030f587ce19d9dc2f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd330103fa8f4a6f1640b07ce2d6bef8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "982fa7ccb445e41aa74f8b97f9f5a84a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afc8eaf19cd06a80159121ab79d41007", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a951e35c7168f1e6263d98881400cb8f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0219a326d53f77103e175c284750a9a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a3531a1c5c95a5d125134c1dc5e5b9e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cb1f32a734655924f0a972ff2cb1a3b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "798793c4731048af639a8e1ffe2784e5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "359ef3c44bdfd7bfa790ecb0bb6e1aa4", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "310e72b6877748dcd4b073a6354ee91c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4de77df29b287afd33df2805c3ae08a8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f383b88748ac966b2f376683bdff6003", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "349d9a7dfdcad4f856f49b7fd97e62db", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bae46c0fc66bcd2536a677d09af92ce1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8efd12b776a0995572dc0ac3200c04e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a17b6672fc89b0968e6afb04e1ec7724", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7544bd9818956f9e0fbf6a225ac13f25", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1fd323fd1052c50dfc5eace66b4ef89", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ed9dd8639bce9a57d6ab4546b7b3cc4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9490f54ed10ef913804f32d9686eef43", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae77b42a52ae198687f52dc3a3f0e48e", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "527f8f5c4c3e27bfa2bc348d9ebd478a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3c235ae980814b11c4df7549a8b7cf9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd3205fab266ea8c7ccf2eae81a1d559", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 227.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00c04e3af361f1a1905facfbc355a6a9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 219.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "585e1850903fd6291c14452f1c69e9b1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "409ff9ee67541852cb39377ebb541f43", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 78.34 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1da2930a81e30abbca04ed855c76bf8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "145ca0e65b88f63305ce8f3cc7fa6594", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9cd81c2885c04d1f481aeb0e15341cb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47a5db4383072961dce88d5ee96d3221", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 76.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e29590b69663ad1489e60285026423bd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 81.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d437d00a058210a4331eb1cff90ce7a6", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3ea6b3304f9028e93a3ab006ba47427", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "829d59f49ea80523abb42f42185ab1c1", - "notes": [], - "params": { - "seconds": 30.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52fde25bf373f0761a2b91e46059c114", - "notes": [], - "params": { - "message": "--> Remove ETOH Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ba6aade03cd576885e38374ee80807c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c524712dac6ca853f169d27d7fba29f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b73c8ec87b9a1450be46dedd1c7d668", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "caa1a901cc24d6b5b635188577144b3c", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8609d523052ed7068882792d56f5b78f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6512a14d120d8a1e4c9b34f54873d65", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce0126da3d50c50b7887e5c59c137cd9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90817636944a1dfffca4e3e050dee730", - "notes": [], - "params": { - "message": "Adding 1200ul tp 71280" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c1ed3dfe3c4d3ee3e50ae2c92f4e607", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fff22f57b668646d2c2b68f604da891", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00b0d116166a7acb40c5bc567be846c8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "852d7b719afa918c516846f8d970e7a1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b370840a10f6a3a32386c632fe7e1a56", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81b3e333a00e40e0e8e3a7c3e16f5707", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7047b95ec74b48d54282520345b5add1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1fd6cea95bbce4c7d39fb085b1c3ba8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67dd894f5a5ffbe92e6925dd43e55884", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d687930f883dee1cef959da807b8ac6d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e22c62e30ad61d69bfb3dd8ed1f6082b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab61ba2039d59e0ca69b59670f05c56a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "743e9574fadc1dc39433f8999a52a598", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1aead97ced6b79c32bb5f5ebf5340e33", - "notes": [], - "params": { - "message": "Adding 1200ul tp 72480" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "732d6c995e6be01db3da3662e2787e4b", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39c7030d1879608f5983eda69ee26aae", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d9f83f5efb2c2c0f61d72d9c298ad5a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2787163a4f91727499ad8fd805c9ecc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "675526bcd02884f747dc49d52c69dcd6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbfce02239996140f9a91a2f8b3b6223", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9e572e54986d06d3e9f1f8ff27e5cb6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d0840c3e6b1f482f1e51bf43a83a89a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8011c5079585b3e01af215ecba108f1b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1412aa9bff2043ca1734c000f57dfc8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6f4d1bfc713c0c8944bc97f3ba92b0f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1772ad2bd28fcb1eb27ff80aacc58a8c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1830bbe32b9fc0c1747e8d7e3b4785ae", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44a2ea61b05bc01afc3bf737a22cc0ca", - "notes": [], - "params": { - "message": "Adding 1200ul tp 73680" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a7f0f9bb8a818fecac47d6879bc46ec", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "467ff179da8bfbaa304348a3530cfbaf", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0526460f7379f728f89ad5d077f6dcd", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0067fd434c634f496f905a1ced4f137c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f4eb6f650dce7442db9ddd1d4fb31d3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "587d3c5d11d9ae9ec9500f5c0cb3c152", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "278b688569ca34f4c8bdd36d8a3965f9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81fa3765b429dbce905598725033dd32", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c5a9b9ab26439cb96b41a7fc8a8ad33", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e79f871215375bac9072e54d421fb22", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ba2431c515f399e07a889b6b5ece004", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "053e73bf447a0029eebd84598c075be5", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b13f653c0eb031af278675e1141a3a7b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58df6052395845404a07345d6f1546e2", - "notes": [], - "params": { - "message": "Adding 1200ul tp 74880" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9661f8d4e645d93f906586f0f26d3adb", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac438ff71c569fa271f82a1970eac0df", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55883c5cb63f449c97ef3ad11dadd0db", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57141ff3262341ec7a55f40d07619b62", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df0b968679f8e48179ef9d298c9d75f5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9cf97d3b133a424256b77adf75868cf", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c850d148df64c7f4b42d4f9497a7fd59", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1c98abc4638ef28e8cabee8ec71d3d0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "427a9ea166917d51d8cb9222aaa97da1", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d9ac853c27872aaa6a95de06df900b3", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "271b3edae68b4fc233d2e23d166d2bc8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e743725ef41ce67b7ccfdf601ece6bac", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f3413051a645c88c3e66a7494e81e78", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed7ad1beaeba6c62e2994cd34e5cc39f", - "notes": [], - "params": { - "message": "Adding 1200ul tp 76080" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d54c979023ef9506f8d27159d0909a97", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19193eba2fc3e5d9d3e3aadf16f5720f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3babc605fa482796f197d9ee648d2a57", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ae2d211c0d42a0db7fa081b0b210437", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d51dbc400a2332e0f3ecce6af869e12", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06ab8642d32bc97f54947b8e5712fa9e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad309231d52a46370edde95ad2768242", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5946b8880eda1ad2805a284bf38235f7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebc0cd5a1e7b4e7797da7fc79ec43e25", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a978e78ae7f9c7911e05fc6fcfa6ad15", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53b58b6671128ebecd693b69507aa7a8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8dd1ab7ecf6e1a2eb6b5fd608ed0cfd9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "408741e37537b44f90a66ff8afe56852", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "880353af5944d46fe977bf5163cd7a7f", - "notes": [], - "params": { - "message": "Adding 1200ul tp 77280" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c64ee1703349e5c83acbff3938fbd78a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7574421152afd0a3b9d94c27c6db1857", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46f6335ab63aec555ccaf27de45c5aba", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e60399ebd18e7606662f46581f2fc8e3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53e48ee9b93b7a24caa69af9ec5415e4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c209f6c21aa8ec9b7fe64eceed41baeb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eaf0cd6a07dc8730393f8ef0b576f7f6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bf00dcc42354da2227c0ad1815bfcc1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f52f4263bb1c847a3db1fdaea08eb0ad", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea85e31be8fa3298304c1bdbffdb9691", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69b4f5250540a1c7800cbde5c82a91da", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cd785c66d47db58a00ead739d0eb64f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e343a858bfb9a56189ed9f0d734f3723", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8aa5b41c59a0ce0bc4db6c8cc771df2f", - "notes": [], - "params": { - "message": "Adding 1200ul tp 78480" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e6ae646f5a5c44d86dee0fc64b24bf6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7c40fa2383c9ed1bf812cb76bc4c021", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1770220fbef5ef721401b51a78fa2633", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2e7f0cf7da7fce41993f8135563a480", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a80b2caba8ec1f23d9b7e97adad3e54", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60a3202a9d3b06d3a32a144d62bd9a6a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4cb5fa682a050220925692e0a30586c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7aa5843e071ef6dffcd53916ec4dd72a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c0b7742c4ee00adcf5426e1716da856", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "256969bd6eb1b0774d75a18df934fab0", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f8887e6ca6dd6406c30d9352809ee56", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6a67c9d803eb3f92cac23ccf4e820fd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b1dc02212f573556ca3fb210d2c8c1c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "248fd41ae0c61fc5610863015a333448", - "notes": [], - "params": { - "message": "Adding 1200ul tp 79680" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eec6f7024588858514b5c6a6c7844dac", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d156ef8b7a0198fca7784e3ddf35ed8", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dbe92e859305d04d875d480d9f7636d", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f1ad07475ed256ed7c263ab067b3fb9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02d9ae7f989badd741b91ce1d0a389cc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb3736230ca4fa115d0cc50aa84c44f1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fd3b78944a02e454173e0776b22ffc7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca39df81dbb1317ca3c1380eae3021c4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cb13b2a047b705d199bade9fe0db466", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cb4ff9e19dc70694f5c7e1346d9052f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7ecc0f2ccc7d51d2e8e0bc684c6d8b1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af3f8f3e3c175bc58dabef99de790a40", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bdd6218c95dc9eb8227f59d7f24bc12", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7647831e34e99b3b5eaebaddc90917fa", - "notes": [], - "params": { - "message": "Adding 1200ul tp 80880" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2119a5a3b8cfb581da842266f1d66c36", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30603b2f947ee8137c8eefbbc458036f", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "389707223772dcfb492432dfd23fab3f", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8113f8c600380b46034372957700766", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc0283187ca114db2938a2539ba942c5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1982cea5bb022131e4b678c0604adf02", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6ecdb39bab4d6eaf37f6a37b64f8846", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c382c99f06b688905958b2b6a0e8cdef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b8563b50a30c575a6fe46b56ad4584d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e90f0c47017b238d12072560d297cee", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e8bde879d481cc1eb3ac18e8935ce62", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4591af226eac8804c20bdd91833cbdc7", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82169ebd2d7f2d176021499edca96dde", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d7ca77c673d4609715bf9aaa7d6299e", - "notes": [], - "params": { - "message": "Adding 1200ul tp 82080" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cad06d3ce2f1a8b659a66d23514877a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc4b77ac5c4cbd36212313d846d7487c", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15ae162c998c3210d1666760c325fc34", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce4c32f38eb0bd494c3f9bb8c040d937", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c1dd3257f6ad5f6d72e11ed90de77ce", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b300ee2e0afa75f2e22e80ca6dc34c73", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2f075b202041f3a206ceea3ada0a24a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e867d5f1f285dd579eeb1224367d976d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d89f6561708c5f563ed4f3d7ce0888cf", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2d3edfe7179662a9efbd7e452ac414d", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "729293aec3ca638ba4d817a55587323d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "906246207d69e2c4fa1dabfc54f937bd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "979422cf86ec0c435565cecbbe0f0081", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c8537fb312790d48baa1701e5039b0f", - "notes": [], - "params": { - "message": "Adding 1200ul tp 83280" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1acf7fb8137fd9f9e86861b47c67fcb6", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8339d330d2dd98f6f78fcfb8db67e356", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55d66a847c7898ed811d1bb07a6a0332", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3b70aca623a9e1d4a6b9f917b78eda0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ffe1f24f9ee546a2f6196463d98c6ec", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89cacd4cd0fa85a43770bd57c33b1516", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17a59a7bf1aed27fd2b2a9740c0e0605", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "146775ac2da0274711d11f7f7e490f40", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "394433e87f5e46c40df1e69df1360f70", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -34.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 41.84 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f44a94194786717d0d4319774673a41", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f316c969e7db730c3b3bbda698984af2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.09 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4e9b93c0905ec2413e8426639eaa806", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.09 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0d6105f012636e78f8ed35b7b5c8f60", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 78.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccd467f69ebf1efb8d192ab06373cf01", - "notes": [], - "params": { - "message": "Adding 1200ul tp 84480" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6fc7619224e5b5487de93ffe15ea35a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c4329056b3dcbfd1e9d32bad67e56a7", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "821469cd9e47006c9a889be31852076c", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "161f42cd0bb53d1b922a103cb2f30b27", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 36.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b28d55c843a94387d7e10838e744f242", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5a4b7842187cc9c7ada20aac67270ef", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8516e49a78f62d643436661e159cc6cd", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d915f230aa09c7348e7550cbc3848fa", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0c2b22020dfeac189ceb4be4802643f", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "slotName": "C3" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "B4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37df1a22c598e5913c01a8c1ea56a5c7", - "notes": [], - "params": { - "message": "--> Removing Residual Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8e2e70ddd482280b8259baaf73c44d8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37d608332a7705d8b7796bb62a76bf4b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb516017e46ff8396427dd104e7c2cc6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78863ab07ad3ed53367a93f720df2d5e", - "notes": [], - "params": { - "message": "Adding 160ul tp 84640" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcd01816000389d4cb4f0e813839fbf2", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34ec856957a7f429bf1f2b90858e0307", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b227822e8288326c9bdb1a6da5d5a53", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e8bbc9cde7c29495e21b8d826493d39", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d917b7b6ee24d9b6fe1f277c59db037", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc1fc2cb1ffc0cd7b9a2a2d51bf2e071", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "833e9d80d7d097b7a58a5760501f33bb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8d8a8567efa4d7ed5db423247c2ed37", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d25cbe5a091251a2733c4d2fe53b9ac9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0089c36e0e76cdc23c1f858e7dee12e6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c70bf96df23f1a96e9e8a2243d27e95", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "342631361dd7c459e935b1a16cd535b5", - "notes": [], - "params": { - "message": "Adding 160ul tp 84800" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3171aa3328e34657eece185b1f2ad381", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38b5095f123b459ad0aa6f07d272effd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42d0d1eee623550cd227298070c73ecf", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb6144eac79739ab66e4023dc4ae1632", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94c864d57061b854115f0ebcdb3d7578", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c633f5855a4baedf4061bce802cdbaf8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba5022193464ad32796c61858bc2e82d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "694a51e5a315ed29f2c901852d74410b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f156918c85b74ef44fdaf65757c8af8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c5ca304ae90085fc1feab1cca3184bd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "326b6214446efaed55edfa8828d5c6ff", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b526f60b0408b0ccb69f864a7473248c", - "notes": [], - "params": { - "message": "Adding 160ul tp 84960" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "935826dc5cdfe9eb4d94deb44e042574", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55b21b1abf260d105762ac11cd66eefb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c076a8294743fa884c40c668e989f395", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28ac1b08f94f562ff50abaad076845b8", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "373f87404e3eea83d9150daa95a744ef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e377ee384b316f38248f72b4661b78ea", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "150544acd25398c6a8a4749d37497d83", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fc7e52a5fad3e19ef567bb74fd9b7ac", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eef507170eb48571e44c86c94bbebcd1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5f72b8ac48bb4d547e7e2f203e17f2c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07f73dee6988d386a1543eb92b171186", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19fd817714d6a1d43f87cec27a33b279", - "notes": [], - "params": { - "message": "Adding 160ul tp 85120" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff37857f3ea56868d4e6a3014d5897e3", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40919e6ecfec391a2942527577490a25", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d3715e7f65de14d7a2c40b90fc4d995", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cb9b23220ae7f70856c07ab07627a05", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f23ca6fd2377419e35e57d16677bcbf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c1219cb93b5d22f12c9cf63e8a56804", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8afa40e8efd38a3365979f71f543e9f8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65ee6b6e734822f5fdb1d3babbdddd48", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "624653aaeeaf9a2a562034ad52632ae5", - "notes": [], - "params": { - "seconds": 30.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "696d4e8d2e992b1ed2efeca32757aef1", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": "offDeck", - "strategy": "manualMoveWithPause" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "764c5d45e282331f6bf2402a1ae7e210", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67317553c218372fe1a2533c0de66240", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57e96ed132fb8fc2ea0a0aaee0801f07", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a72a1dcb957fd7ebaba74f93bfd4097", - "notes": [], - "params": { - "message": "--> Adding RSB" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47fb5f9a3d808edcbd80a67b1043b43b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b171bffa4296a04f66bd6848b60b2087", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4c5fed624b897bd8a07d548c991325e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae9b38207bca66175c20a15c2a4ba9f4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af9dae726f82be722659ec499b262d1d", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf08feafc6059c17e613acf2eca36c32", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04f59fa5e1b28c6488d488bc29e0a773", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0ba787d988721a13e1ae9cbca0e7b45", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02f742c24e1d42c44e8cf05a44a59c25", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fd53dfd3e869d8d96cd2409ab490ae6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f7ced215f1f5b8a195982ee5e5fddf5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9ab9c829a2e2fe10db77903d925cae0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e634e086fb591fd37e82b0743a3905c3", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb64d58d56aac27427fccfd132290a4a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32994105204a2c54f13c3f3f4905d9db", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "621a9570526c4c204ea23451ddfd0dd7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bbfe12a4402ccd011b30d34bd564b69", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69b7ba05f0837d4001015fa76ffda194", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6a6ffc113771e63369915b6a7fab999", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdfcafb1ed0073d4a084a4680d9321df", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81c9b90de3292ab8084fba75f819685b", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39a7c42b2615f21d8390978d033366b8", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11e953b249220c60b16748215f97af28", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1da89cd89e50ea3017f7ac952d7ba785", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b682a61ff1a15a06e52162cec52d111", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99b7e2b2e0288ca606d5acc8041af0c4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2137e48522da954f99ca8259c3af400", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6ea9dc9846cc63c59916a1ad34f4796", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45f05872ff5310e7df64f0d470d69ea7", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "031cabc326737b260ffd4c7221aa5918", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39c1b4ca54765a5863cb28fe9b791db0", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30d82af1742827ff41621db50515aa16", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/setAndWaitForShakeSpeed", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d177b6cce9b74fda317a292bb61c01b", - "notes": [], - "params": { - "moduleId": "UUID", - "rpm": 2000.0 - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7571732bf064c524f762913c8592ed3", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/deactivateShaker", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "027eae2b269572b6a458e4508fcb9a9d", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f6b41d7846f68af1ea81eb47d618813", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ce42fae9e52905bbf9a42e921c2656a", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5468ead40f00b6dbe462691cc09168f7", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59f5d06e1f1d112761ea5d0b81496276", - "notes": [], - "params": { - "message": "--> Removing Residual Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c44d86d001672463292009078c822c60", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b2efcc68451cf37728bef00356a3549", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3f8c1d89d2b389434bcfad35810b569", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9aab561e9c91817f6e317052ef04c495", - "notes": [], - "params": { - "message": "Adding 160ul tp 85280" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fb7195074901104e35c8874a6a4cf06", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd7b5ff76e06205c61d555f44e5af8cf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "676818a3653d9c2f17f166d88a336051", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ae6be56d1e9e329478434412b641a97", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1da787debd837a0587413abe76e7107", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a34059467b32a7449fc817ba80d9851", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8eafe3bd12e1ef2694966fc8a4247e88", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab48b8a829124e62a4fffd66326e5c4e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "102dec81a97e1e72dc5144672a6bcadf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64abce43621d07b0ff4224be552ee697", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ee3892bbd6096d38a5f4e0dbd9c96cd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70479b93fc6b767d5f977ed894ef70d4", - "notes": [], - "params": { - "message": "Adding 160ul tp 85440" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a470c301df32152033e19b3aeff944c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a77a803e45566fd8e98078a8f400fc6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5077d1100050f5e69c143c13733831b7", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d63c6c38029668459a0c5aae4e909c3", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab8b0b0fe7c146a7d38d5ae072862aa0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b1fd987cc67aa427d036172c186575e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7587381208fed04ddb128a6cbf328647", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f227cc2b6e871a67eaf467516065c82c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d281a5d2740cb54590dbb8372d51563", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "567b0f4d504462a1763d3410af633a54", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af58cd33b1e4bb4131043dc94e2c7be3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "964f0d0bb38018b6779ada9de6ebee68", - "notes": [], - "params": { - "message": "Adding 160ul tp 85600" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c45a42a080c37d4808a1374565c9f5c8", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0dd8d36cf9cf8d14c258e7b8d0b3e1b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "411f2ebaa4093b57162b4b94161ef4c5", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4119ff344d21680be2ff82b97a5f8d5e", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffbfc6b49c325aaec36bad99230764ab", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e1f5803571b0110a5e888b4d4aa7d02", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "034db5139808d3b9b25568bc415cac68", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "040b48bd7766d6cc15227d6a7a7c567a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cd7bc3d32caadd4abe5cdf7d89ea50a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c28cfe878dc220fbc8c65ec6454ae3a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65342d603917e8d3287959ca265f1a1b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6a14005dd7260861ddb20be9787cb2f", - "notes": [], - "params": { - "message": "Adding 160ul tp 85760" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0955dbc17a1030821e1562833f6f3767", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c2ffb718b26c59caa314775b8bdaaf0", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73673a9d718ef6e339c2803d6e7dd358", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "131740101798221e76af69cdff140d71", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a32f02062a8edc760c86582387ff8f18", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f61d5460d2fa8d4e7967d4dac4f9c559", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "769e00267a4e770ea2c8d9d5f3bf7850", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9764ad0a871afce6d5e690f600ea4b6d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "012fdc0ac36d3c7c0be713312dc51f20", - "notes": [], - "params": { - "seconds": 30.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "954f6e1ab98f7740b18dce901f524822", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": "offDeck", - "strategy": "manualMoveWithPause" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "originLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0011a2ecbb8a806e0610bfd2c2e274af", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7177eb89eee7097d2adb12827a32ef22", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b888c79bfca90d57bd05e282fe28ed53", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68735cc51cb904468dc6a7f5124364d4", - "notes": [], - "params": { - "message": "--> Adding RSB" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e964ea1c3aa591bb95edb0429decb6fb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40c48d61a0dd1fd69fd6d2897ec7b5b0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "362abef768e9de1438569f0be89d0e24", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cf4cd59698d8ff97418708a66250159", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0d03bafb12bec010e0fc77ce81c138d", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e6ab16e98a638333aa485a3b87b0b59", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "daa918b4b5602866c69fc470ce16b9b3", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3ea898828cf97d29c87e71c9c924a3d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c45f62db7e5ae27b2fece879b8b10f2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe95c34b03fde17e4f0bcb7aad12c41e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1edfe6bb286b21896b95e014172e9cd", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a496d314242865fae41341d6bfd5fa55", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d7d02af1801e0c01e8892990c04a884", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e9bdb5c03bcbd98c9ef93bf1e7b9c19", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5fbe2d1481841dcbf0b3185ad0605c1", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "802340e6d3a5276532d9205db3b56dd0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f8a662fb3d574e41f70af7096a84db8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "617534596d8a0272b468fb412f89ea30", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "001696cff09d29d790901c1d21266602", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9561b8cc16119309dafe08f4ccc11b1d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df3aa4b8432aa5dc114000dc3744aa4c", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41d7dbd640729cc1e357198777a4a182", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4330154256ecfe5750105d850a229f00", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31d5747af33707265b02aa16d8074e1d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6611a759ea3953f71f32b3f8ccbdb34", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7502511ee16ad9b78430c8ad25c0e1ba", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14edee07876de288e855d55683937c02", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4ca7d5e24043d0868c858a6e5de00b0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7372ab3e7033f4cd569f6b978fe6f5b", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e11e1b1f1fd2c89af853aef52908970f", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cebba861975e3a195ea4c32df4d2958", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5529f8fa9550025ca84c52f5fa16ac4f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/setAndWaitForShakeSpeed", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e33c318c2c5da8998757d70feca0b92e", - "notes": [], - "params": { - "moduleId": "UUID", - "rpm": 2000.0 - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aaa027721f259a8fbcaf409e62766063", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/deactivateShaker", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58b7331725e7750a84271b0912829341", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86fadf91e2b4f23730a75a045985c1bc", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a69cea008b84368a47e769bfbff78dc", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3fb6b6d783ccf7b2b6d8ff3ae8c7384", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32e18f94e2948f8f029c4c4ab4a2abe2", - "notes": [], - "params": { - "message": "--> Removing Residual Wash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca1fcb74b8037a534662009421facdc6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a940eef49112c118aba0c832ea4dd61e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb6381649fdf457bd8a8904af164c6f9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce909a5d2d7997d56245a61a2d06ac73", - "notes": [], - "params": { - "message": "Adding 160ul tp 85920" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30e35588ceec0316e179e384b8aa2f7c", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "296d7c4cdc5ba134daf7b3d2bae57594", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e648c4707c9fee8727351e679e96220", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9c356a42859e6aaaa4be78c7b86ca5a", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f97a04aeded86f8dc798c5d6f38540af", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4cd54c890835d6902165daa598962e7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e2602a1d407c731a646aa1040ae8c88", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ec270c9d1c0b431d26a3ae8ba9c24a1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ec8efa48d4a7856358145fb80c4ec25", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15f1e740fc8761490f66f44705db158d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "917cfc572942d5f3df7be440a2812e06", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb84b91649ec7079ddba8ac580aae7e6", - "notes": [], - "params": { - "message": "Adding 160ul tp 86080" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f8ecce7348e61d45cd67f0f9641c92a", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cf097f399e3717fa8f2f7d2a8b93002", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24c8e3aa926a41b1ad9843ec4279c508", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd36b0b0dee2f45c775d551f9b2da082", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f6a181fd7e771cd47318cb0794ece49", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad8fdcc03fd6fd1b579c2a51c570aa7d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a65c3bc9c1ca72357c5905ebaf2c1838", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8f8bba391917c8c6ef73e3d93564b4f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91cac505577e5d989754ac612066274c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b14163d912b29ff11d9452a9a544f246", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c77c4d28c7a9039bee6fe0731cf82be3", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "373237ed05ae56e8fc13828517442ded", - "notes": [], - "params": { - "message": "Adding 160ul tp 86240" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "808bb0f3eb511b2365a16d64b0dcbb21", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e05bcf9e74fce64ea0e53112b97b6ad", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0bb5ca7d11bf041511b655255260fb9", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc642d8224d91d5f22c8228c091bd384", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e9b0069f5d3e5b7702775f01e93430b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d738c2d8956f8594245f37f74b843ea", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e94628ae8ea6b5728a77f6a7c6759db", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cc75c296debb988d8512f957768c643", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05b2cc34947e666099805567669e6530", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.25, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b980f0f496e0a362131a062cbf0571c8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.34 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0da75fffba8086d4d98e8da3f189d859", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 39.34 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65168c465275015dc2b8bc9428240c21", - "notes": [], - "params": { - "message": "Adding 160ul tp 86400" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b021003e28c6857cfa18799a235dfefd", - "notes": [], - "params": { - "flowRate": 100.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 4.0 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81676abb9a5795406f46b547b4e6f97f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57fb17e70d88c630981c4d80420214a5", - "notes": [], - "params": { - "seconds": 6.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72a65e5922d57c0782d84ee748e4b858", - "notes": [], - "params": { - "flowRate": 200.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 38.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73e5f7ba703dbaaef36366c022f15aa1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f33e18b96cb3aeec02194f2cebaa5b19", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 41.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96ec4ba52d5843341370bf5540af404c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 181.15, - "z": 46.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c582aa061910fe31a0173314834c43cc", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f991769bda8c13d38d70782c5fa3fce", - "notes": [], - "params": { - "seconds": 30.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f5334012628d46cc1db7d932c7b1e83", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": "offDeck", - "strategy": "manualMoveWithPause" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "originLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27977a6a0784e943192165298310e941", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8eab54033c810b1c2ff747def572c956", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1078d5a6dd17ad73dac94491eba6cfab", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e09ea44edfdeb0dc5c70114fa696f4f8", - "notes": [], - "params": { - "message": "--> Adding RSB" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2574638d2605fb212034265e7b6c1e5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28f2f8a1801b2010d533fc8bb3e3d01d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5d8a1ec170aebb68338dbd16636e1cb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28f925657963d2f43668cd01cef3da99", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "597a91b9a37aa6ec47474f191fc4fa2d", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fd603a89b7197d35c788bed8eaa470c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b4513b81399efb5e0d4e808c22c53d4", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d72ede848831756bf1ada00945cc14e9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54915a7cb65cb5c73e468d0a428617f9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa3de88f3bca3ac861b832e965c2ceed", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89ce67eb187bd4fe797e332f2bdfdaa5", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31f760d0d18f7d496843a5ee9d80fddb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37108132d5f79c21ee320cc681aafeae", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5d8de5dab3cffcfa671854da0646b80", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7aa850faf0b2578f5d2922613b1a0521", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edf8fc035dd9f6cda97c6c02b7d0d1e7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d9dd77477a9d6273ef9a73bbdcc02d8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcbc1f63631416287eae566bd4541b5d", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d7c2f584d126b6432466a3caf92ab46", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b43a63f92dfacd7751b5e08f695bdb96", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "849033420e4e9f059d9f1098b265ede1", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51c2a5ee4e4818a5a29d92c88bfbc0d4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f72cf7917b8afed6adcc955d308284c", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65d9175e0fade1f550cdae812043475e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91285a36bcca939fbadb3572f11951b3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9d9c638c219024eaf603c0f9604df0c", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.24, - "z": 17.3 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e8322e1e15aaf0e66158ccc19c4e52a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "217619b81e439dfe936e7482d1f030ee", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5c7bf749a557512fa524f6c4802dff5", - "notes": [], - "params": { - "flowRate": 12.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33020220858d0a5c92c2f8bd2d4e52b0", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 22.95 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43d5ecb71dfa078d93f02685808936ff", - "notes": [], - "params": { - "flowRate": 50.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.3, - "y": 74.15, - "z": 56.95 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8ce759037c30cd6f918972283ee8a30", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/setAndWaitForShakeSpeed", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa083abef95c2f44fcffe5c6674c6914", - "notes": [], - "params": { - "moduleId": "UUID", - "rpm": 2000.0 - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75fad11ad4cd65270f5a26cd620906fb", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/deactivateShaker", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7586a2a7fd9fb5dcb372a866da288ea7", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1e74186378ccdddb842fd5c5a35f536", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e37344bd03c2a173175b453df96fcd1", - "notes": [], - "params": { - "dropOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "pickUpOffset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/closeLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6f33423f3e8df5c01a8d0eace34eea2", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59102ef529d858bf4bcb8af61a72e9c8", - "notes": [], - "params": { - "seconds": 180.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69cab4504a1686c931dc2ac0ffc3087e", - "notes": [], - "params": { - "message": "ADDING PLATE" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a35593ad189d712d1fb4caf026dc40b", - "notes": [], - "params": { - "displayName": "Sample Plate 3", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4be12cc4497fd09062b4a67d137388f7", - "notes": [], - "params": { - "message": "--> Transferring Supernatant" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "016c42f18ea3d6dc8025aa13b57a73d4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3307bc0f34355934df71b0701bfca5e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30d95babd7bb957f138291ffc77c7241", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58f7d4785614a6e25ffd8e459d80d22b", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -5.624999999999998, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d49e517c43b1188fb98bc7f52a188be", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f585601e6f92d1fdaa3b94ae760ebef0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9c0d656e1f7b8ca6261718146269ecf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe4898de139f0db422e9e0eee7f21264", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33cc94c983f96ea2fae97ee59b88facd", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa9b1f55bcf3668c878554ec0267c30e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d51df7c7ed2e397b679f23ef37187d7f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "530662279c71ec689a227ebdcfdec8f2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a884d8f1851ce64235d07101f1c89a5", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fae8f5441c55456c82959beccb8f4cd9", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 12.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "810c0951f8b1800defa2f963a6997f2a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9bb6ceff5d18f83fe1928508c2dc4fc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32ee24d8a3d300a12f57103b3f8258de", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac8dc2011687f792cc3f8679e1036790", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f27e747a6ba1b19d9d0d6cec976e9f6", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 21.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1dbfb2320caaac5438dda81a9cda16f0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e9bed9c42b97d77d768efdab1ed4114", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "479b9586dcf51c3e72bb57bbb21000bf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8be7dbe1109bbc6483dd5c435d24e5c7", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b663ff6b7f66641da3b628feae70ae5e", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 30.375000000000004, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88e5ec113b4866216713950cf77a6186", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3cb452c8da864819b8414cecd7f22610", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e522b773a94b6124796afdacab7493f2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b73311b85afb90bac043bb8fe4c0935", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7138fc507d2164febd1b7341c75987ed", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 39.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d27977fd085686e17d9b6f7380002e8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae3ccf60ef0356dd2ecbdffeac069de5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b490969bededd17acb117ff3a4a9053", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28aa7c634140efca5a4a4ffd508c5415", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "293d03c712ae424de52b72868598bffe", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 48.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a43029979dc79a61b5ad3598880595e6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25db083dc01dbba6245fd76787fe00f8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c31c71e64e47c32c25ad748233243e5e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16c1079ed5f3f6cb1b27422abc38084f", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcb309b94d9fc079ccfb5a0c7c6837ce", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 57.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23ea998380a9d05f2c09c5cb173333ec", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6d630ef7c4d8a427974f3759f51e86e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f448399f5f0735c0e6ef1ce404925959", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70578cc1f2ffbe17a4bcdc3d29b6f1d2", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e508922a7516b6540c473052fb7907cb", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 66.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a9a365b5d5294e3ddc54b32c77cd307", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "867d447d9a14bbfed29f1b0a304b94d9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "376052e1190f2a5749499f2074093850", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "205aa576c271ba5af3e9817340421286", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbf28de487574a74df6be0415238d002", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 75.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdf24b91daac593587345e348c7833fb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46aa9da2b034090d70cb072c995da0da", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f183193e7b85883c21a61463e7f05b76", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "311a6dacbbb68acb52aad0065267c184", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f932832cecee273fff505dd68cfd05a", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 84.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ad0f99b21093588fd9cc06fa24acfb3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbf67b7d049e7d7ef881660d1e6328d6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 47.85, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c076c5bad155a13bac9cb42055aef874", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.84 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc693e9f07980c256060bd7f3fca3b9c", - "notes": [], - "params": { - "flowRate": 6.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -37.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.3, - "y": 74.15, - "z": 38.84 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "281acdf5d31bbe95c90f70a00acc39e4", - "notes": [], - "params": { - "flowRate": 25.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 93.375, - "y": 356.2, - "z": 2.3100000000000014 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df396044f696d5c66d4f2f4d564ed2b7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/deactivateBlock", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2ace2d5c88500723416ea60d9b5655f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/deactivateLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60acb87430f3d03509c9b95f3f0c3ad4", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/deactivate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72151fbe9e6e6cae2a969a69bea6b1be", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "heaterShaker/openLabwareLatch", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e82b8ef52036bba8b0499dfb56ec8a24", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": { - "pipetteRetracted": false - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88f6db6a144eb727fc73926c62fa4ad5", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b83237876027b6f26d4353d235c1cef", - "notes": [], - "params": { - "message": "--> Report" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0221e9d6cab226320415d339c47a7b2c", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 18 - ], - "protocolType": "python" - }, - "createdAt": "TIMESTAMP", - "errors": [], - "files": [], - "labware": [ - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "A3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "B3" - } - }, - { - "definitionUri": "opentrons/opentrons_96_well_aluminum_block/1", - "id": "UUID", - "loadName": "opentrons_96_well_aluminum_block", - "location": { - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", - "displayName": "Reagent Plate", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "labwareId": "UUID" - } - }, - { - "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", - "id": "UUID", - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "slotName": "C2" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", - "displayName": "Sample Plate 1", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", - "id": "UUID", - "loadName": "nest_96_wellplate_2ml_deep", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "C3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "B2" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "A2" - } - }, - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", - "displayName": "Sample Plate 1", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", - "id": "UUID", - "loadName": "nest_96_wellplate_2ml_deep", - "location": { - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", - "displayName": "Sample Plate 3", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "moduleId": "UUID" - } - } - ], - "liquidClasses": [], - "liquids": [], - "metadata": { - "author": "Opentrons ", - "protocolName": "Illumina DNA Prep 96x v8", - "source": "Protocol Library" - }, - "modules": [ - { - "id": "UUID", - "location": { - "slotName": "B1" - }, - "model": "thermocyclerModuleV2", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "C1" - }, - "model": "temperatureModuleV2", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "D1" - }, - "model": "heaterShakerModuleV1", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "D2" - }, - "model": "magneticBlockV1" - } - ], - "pipettes": [ - { - "id": "UUID", - "mount": "left", - "pipetteName": "p1000_multi_flex" - }, - { - "id": "UUID", - "mount": "right", - "pipetteName": "p50_multi_flex" - } - ], - "result": "ok", - "robotType": "OT-3 Standard", - "runTimeParameters": [ - { - "default": false, - "description": "Whether to perform a dry run or not.", - "displayName": "Dry Run", - "type": "bool", - "value": false, - "variableName": "DRYRUN" - }, - { - "default": 4.0, - "description": "How many PCR Cycles to for amplification.", - "displayName": "PCR Cycles", - "max": 12.0, - "min": 1.0, - "type": "int", - "value": 4.0, - "variableName": "PCRCYCLES" - } - ] + "error": "Analysis timed out after 120 seconds" } diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9e3f4e8fc6][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_consolidate_liquid_Override_50_filter].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9e3f4e8fc6][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_consolidate_liquid_Override_50_filter].json index 49d7bc2c52f..449b67edc3b 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9e3f4e8fc6][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_consolidate_liquid_Override_50_filter].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[9e3f4e8fc6][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_consolidate_liquid_Override_50_filter].json @@ -5473,11 +5473,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -5697,7 +5697,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -5707,16 +5707,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -6034,10 +6034,10 @@ "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6100,10 +6100,10 @@ "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6152,7 +6152,7 @@ "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -6194,12 +6194,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b352ff5e97caa7feb28150a3ef170e4d", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe1afc78e440cd011bee1e7499ac048f", + "key": "fbc8e6cf31a08186d781791d6fa5bf49", "notes": [], "params": { "pipetteId": "UUID" @@ -6213,16 +6228,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14a51a46c397a71482467be36ff818aa", + "key": "150951f0c38fbb1c9bfafaa97f905aa9", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6232,7 +6247,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66305798020db9e523bfa1deab2b04fd", + "key": "47ed3e7e47beb37221afb6c5ced1682b", "notes": [], "params": { "seconds": 0.5 @@ -6246,7 +6261,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e28baca2cb2deb682e6a10f635ae5b67", + "key": "909fd34f6cec12fe4fa11662fa6892ae", "notes": [], "params": { "forceDirect": false, @@ -6278,17 +6293,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2222754cceebdb7e6e94a51a66797435", + "key": "0c1a6faa0e06b51785502ce28039ba52", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6298,7 +6313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6c754a0bc8b7c8d6eb32ad980aa22de", + "key": "32f2ebd50cb9538baba1131dbbca2efc", "notes": [], "params": { "pipetteId": "UUID", @@ -6314,7 +6329,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55458dfae49484085e8746505dd3a51b", + "key": "68bdb710ea793f59e691e5b8908471c8", "notes": [], "params": { "pipetteId": "UUID" @@ -6328,7 +6343,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98b43de8540212632b2974c39890ec3b", + "key": "89160af4109caa690eb6b09669146d18", "notes": [], "params": { "forceDirect": false, @@ -6360,7 +6375,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "820b2b43b3a7eb58482ce56b7aa5e7fc", + "key": "c7696e64c50f02564bca71b89b29f6f2", "notes": [], "params": { "forceDirect": true, @@ -6393,7 +6408,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e7efac717a602cedface49351d343aa6", + "key": "6c53b85eaea1506a27109443ffe586a3", "notes": [], "params": { "correctionVolume": 0.0, @@ -6412,7 +6427,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "323d5b189c2fe7cac18d111906b71a83", + "key": "08af39bfa7b906e4006fd98f8865083d", "notes": [], "params": { "seconds": 0.5 @@ -6426,7 +6441,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30b86cdc3142876775cdcf1412c2dfd4", + "key": "e8f9cd21bd7ac39d1cf3bc934ff16689", "notes": [], "params": { "forceDirect": true, @@ -6459,16 +6474,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "afbdf70c992f8cad9c1f818862c2c02c", + "key": "8eebd7103070b430aa2dd6a51d0ef868", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6478,7 +6493,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d51cc59e6401cd03c77629a148c54957", + "key": "abf69b2228265b6c3cbed6641e4b1b21", "notes": [], "params": { "seconds": 0.5 @@ -6492,7 +6507,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6a41232e131cfebe8e17c5edfadff75", + "key": "59c6bbafdb8a4d9ba10be7202415452f", "notes": [], "params": { "forceDirect": false, @@ -6524,17 +6539,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7d3b7fe8ca70fa974a71a8c9081c77ce", + "key": "01ddc5cdf45ff108eadcdbbba477c3cf", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6544,7 +6559,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "932e215a7bd1360d73b46f59f8a4b52e", + "key": "4238a0d223d54a8a62fdcb91dd0fa44b", "notes": [], "params": { "forceDirect": true, @@ -6577,13 +6592,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "796e8c66443ab5b763d4f9605e3dad1f", + "key": "b8eb32a3a84671d3e2ef29ca8d5357ff", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -6597,7 +6612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bbdc68129f7952c44e6841dc46992442", + "key": "9587c9bea607c3c4a0274d87db365d07", "notes": [], "params": { "forceDirect": true, @@ -6625,12 +6640,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc51841eac2d91c198afb3c420137d3b", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b335de6b16546b385dd9f247216bc93f", + "key": "91ba80119f90ced71d49d1040ead64f6", "notes": [], "params": { "pipetteId": "UUID" @@ -6644,16 +6674,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ae532b842431be31988e118229d2067", + "key": "4050c87c2f89cfef91e3eecf1379c673", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6663,7 +6693,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99f12e8b87a05c462ab6e5ffaca6789d", + "key": "d963477b56ad4c2b29adf12f07f9c3dd", "notes": [], "params": { "seconds": 0.5 @@ -6677,7 +6707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79cd33d71c41d385f0a093a7eb8b78d2", + "key": "04cb4540b6f0ba096a33746a052fab25", "notes": [], "params": { "forceDirect": false, @@ -6709,17 +6739,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb67da4d782e3cd68fed00cc3a559655", + "key": "7c0e9f9ec5baa0351a93e924519c9e51", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6729,7 +6759,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa7f48174798bd873690a1d836ecf737", + "key": "4417384da3ba436450fafeb202bb2fd3", "notes": [], "params": { "pipetteId": "UUID", @@ -6745,7 +6775,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d15a21b535696551875baccdf1887c88", + "key": "8056a9d666ceba16b1138ac50eddc5e6", "notes": [], "params": { "pipetteId": "UUID" @@ -6759,7 +6789,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28c2f0263cf6e15e9850379159b82c98", + "key": "93fd4fc76d1f85faed40e2db8f088957", "notes": [], "params": { "forceDirect": false, @@ -6791,7 +6821,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "721eb0eb59d4cd40b5c569361eb8a59e", + "key": "191317cf34e0508fe1dc458cffda8b8d", "notes": [], "params": { "forceDirect": true, @@ -6824,7 +6854,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3bc6d13be4d698941552c8eda10494f1", + "key": "53595647473a11356c541af3f129ac7e", "notes": [], "params": { "correctionVolume": 0.0, @@ -6843,7 +6873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f95367f7fe9e9e30f5e00dfbaaca435", + "key": "83cbbad4816ef8c7b424615f84dd08b7", "notes": [], "params": { "seconds": 0.5 @@ -6857,7 +6887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ea32566875b98d402ff64571e9d6a46", + "key": "ca8c69be178377e1efdd1a8f7e1ca5e3", "notes": [], "params": { "forceDirect": true, @@ -6890,16 +6920,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91b60c119907c7336f6689376e072dc1", + "key": "42676a584b9d43c47adf16fbc1f3d623", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6909,7 +6939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bec613656347772dc4ef95f4a0ed83f2", + "key": "38523966d8a22a476016bf3d0e47469c", "notes": [], "params": { "seconds": 0.5 @@ -6923,7 +6953,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca0380fdf9119e99bb494415c651da4e", + "key": "fa1a79819c1502716a47eef164f80dad", "notes": [], "params": { "forceDirect": false, @@ -6955,17 +6985,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e23ba6e1e1cb77c8f9552efdb1f13652", + "key": "3aca04251d94d024b15f3896059e27ae", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6975,7 +7005,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22142e7ab09304e2b5878888402b1d16", + "key": "97cec9fe0eb52842bf1328a6ea2d1046", "notes": [], "params": { "forceDirect": true, @@ -7008,13 +7038,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69ba0c62023ca63fe666c6012b49725d", + "key": "f7441d83e490fdc1c8c51ef1891624b5", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -7028,7 +7058,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b29dff7693bbad891b540e35c9ec2624", + "key": "1e21f16ddac51a55fc5bab0676501fc8", "notes": [], "params": { "forceDirect": true, @@ -7056,12 +7086,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8dd64d6b31f9d052caef4524567710a1", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe65da2cbe9d78f005c7fef70f316e95", + "key": "670f4efd1f49975a193a923d0fda3efc", "notes": [], "params": { "pipetteId": "UUID" @@ -7075,16 +7120,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "efa486fc1291f7082cca933169f4f05f", + "key": "04fa489bb870d3b813044854c8d11999", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -7094,7 +7139,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6373744f2d8d902bc8ccd7b77bc268ca", + "key": "993f5273b2dcd7aac920548452c45b12", "notes": [], "params": { "seconds": 0.5 @@ -7108,7 +7153,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fcc32af9f01bad2ea775536903c5de70", + "key": "b1650a077964b7d131a30acd61960300", "notes": [], "params": { "forceDirect": false, @@ -7140,17 +7185,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "de94f1e62ebd5fbc753cf5e9302e36ca", + "key": "716d6939d911d780568c0d458f112040", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -7160,7 +7205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a2ef6faf223a00fa2e81d3bba25cb1d", + "key": "cb17e37ec86ab0e8956c3c736fe01a9d", "notes": [], "params": { "pipetteId": "UUID", @@ -7176,7 +7221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2ee0688f475c68699de22e6df21a59a", + "key": "832c9d3b776b3796dc42d4abbd47b8c0", "notes": [], "params": { "pipetteId": "UUID" @@ -7190,7 +7235,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75d628dfb6e83c0a2aacb813644853b9", + "key": "d0d3362cceb893387e4de3845f32e963", "notes": [], "params": { "forceDirect": false, @@ -7222,7 +7267,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ee872a85194b823d977fe2ee4284c1c", + "key": "f0d7534cb983a39c176f558cf147c70c", "notes": [], "params": { "forceDirect": true, @@ -7255,7 +7300,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "858c6f147a512c445cb0ee1ffdf62076", + "key": "8269abd4a7989126807ad386a3383541", "notes": [], "params": { "correctionVolume": 0.0, @@ -7274,7 +7319,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3eb0bd48a313339e480916e9252b15cb", + "key": "4bb6c8e2c01835ce2b2adf87cfd4abff", "notes": [], "params": { "seconds": 0.5 @@ -7288,7 +7333,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b177fc347ba025ae59403ea96103faa7", + "key": "36b9c50c6ef6c398b571ca2a262e9b05", "notes": [], "params": { "forceDirect": true, @@ -7321,16 +7366,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "612f5a312a015ba702fdaa1de79f9c22", + "key": "7b37afb1baf30e77c26feb991a4c8313", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -7340,7 +7385,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5bf1362404a5b218ff5e72f82799f41b", + "key": "115acaf59c0a21d0697b2d9ce31ce6f2", "notes": [], "params": { "seconds": 0.5 @@ -7354,7 +7399,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72b7a1dfddf9e646fbde24aac657cec1", + "key": "328e0d29b823ca14c114f5d3cff95603", "notes": [], "params": { "forceDirect": false, @@ -7386,17 +7431,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31254a6a10dfd9c1863390150a0ae1c9", + "key": "cc5a0425ba56b177aad4ce92e9e7ab60", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -7406,7 +7451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6705f95334084074a4019de7cd3f0d6c", + "key": "2dddf1d8a6e5a8e0e455772baf459fbd", "notes": [], "params": { "forceDirect": true, @@ -7439,13 +7484,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e58e960e6208260bc263405b8a7728ab", + "key": "eba45611eaa65f19231bc40e567158da", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -7459,7 +7504,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d745d8aa9bbba244d51ab911dbb0824e", + "key": "c11d710a1fe16ddf8c7e9dfeb8978b98", "notes": [], "params": { "forceDirect": true, @@ -7487,12 +7532,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8aad55a979fcc25724e1c277cf41aa2e", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d9093fa15c2b19505a60c3aeb70c1e97", + "key": "f71d96a4660700dfb36c2497e32478c0", "notes": [], "params": { "pipetteId": "UUID" @@ -7506,16 +7566,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96bf8e7405b2c30bda2e5d4edc414f01", + "key": "f65cdd89fcddc56a51bded183f600ced", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -7525,7 +7585,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b186962eda32eb0c0b229d5017c69cb", + "key": "d7a74b6cffebcba44fed60bd3ad72847", "notes": [], "params": { "seconds": 0.5 @@ -7539,7 +7599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "838188b9e097ae40a6c0a58baa071097", + "key": "ffa41f2cffe4630619def7e619d62b62", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -7568,7 +7628,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df5d0a31757cb269150b2f1b9246899e", + "key": "4729c3f92cfc4bd8cd150627ace2c094", "notes": [], "params": { "homeAfter": false, @@ -7583,7 +7643,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77b40e9d9b64455fcfc3c7c826508bbb", + "key": "0ec02276a4ae53cfb13522c9f22a8786", "notes": [], "params": { "liquidClassRecord": { @@ -7982,7 +8042,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "957a01cc4d58de9268a3cdf7c97bef1b", + "key": "73e6b4bcc2b9a70cf23d27e3a37dae27", "notes": [], "params": { "labwareIds": [ @@ -8006,7 +8066,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53e78332d9a84762dd9cd3ade13c395b", + "key": "e06cc4f9ab6c3e8cc5272cf02e058c96", "notes": [], "params": { "labwareId": "UUID", @@ -8039,7 +8099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb1f46ad27ae7117105092cbd43159af", + "key": "9028bc03e43a147ebb4454ef2054947b", "notes": [], "params": { "forceDirect": false, @@ -8071,7 +8131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8e48fe102dae4f7015c4d1b392faffb", + "key": "3cb6734b53a2282c848da1c46dc45cf3", "notes": [], "params": { "pipetteId": "UUID", @@ -8087,7 +8147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34bc784ec9def6e2c1ea7b89da718ce7", + "key": "d342681cc78fa435e92748b4e75287d5", "notes": [], "params": { "pipetteId": "UUID" @@ -8101,7 +8161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "252440576a80516b9593ecf6f03e02b4", + "key": "92f691304aab6ca3015d2948d739f6ee", "notes": [], "params": { "forceDirect": false, @@ -8133,7 +8193,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5110f04ee0c7b4d40c61d937582df7fc", + "key": "b6f5bb4e20a41c6d0b48dcd467d16862", "notes": [], "params": { "forceDirect": true, @@ -8166,7 +8226,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd1d23a8a8626718723ba4ca18a4f4a2", + "key": "f79f58d07e0b393a735515e5ef212af7", "notes": [], "params": { "correctionVolume": -1.21, @@ -8185,7 +8245,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdfae0a50aba7632decd902fad7ec6b9", + "key": "c2938336cfde456509231aec9ee68582", "notes": [], "params": { "seconds": 0.2 @@ -8199,7 +8259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e7e62c98594aef610f1cc8d01724342", + "key": "c4005fcf5eae49c4a2cce4c8464c13aa", "notes": [], "params": { "forceDirect": true, @@ -8232,7 +8292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4e76b42d3f666bc15f5f18c50b83bbd", + "key": "b40f884c704b3184ed00bfaf16916711", "notes": [], "params": { "seconds": 0.5 @@ -8246,7 +8306,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a5ccf66aa82e288385f37a3057872c27", + "key": "ab8c9317f1b8a2b6f12a63896550a37d", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -8265,7 +8325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9c300d702624d08f65c7028a0e7d45d", + "key": "9925b2ec1b5202b0ebce3c505c906c41", "notes": [], "params": { "seconds": 0.2 @@ -8279,7 +8339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9697217f8a65038be76e58acf89c5357", + "key": "1d9d93e0dbb9b045dd8f7bd651e9739d", "notes": [], "params": { "forceDirect": false, @@ -8311,7 +8371,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dfde711024e6523cde13e7df0d9c6b09", + "key": "7b3a452e12447fc277fb6bb02ba356e0", "notes": [], "params": { "correctionVolume": -1.21, @@ -8331,7 +8391,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0dce4f13791575987320436cf4435e3", + "key": "7dd8e5cf0cfae05318750404a92cf225", "notes": [], "params": { "seconds": 2.0 @@ -8345,7 +8405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b75b004bcf680845970b0717452df0bf", + "key": "5a0a4412d2f9e86fe62379bb724a8c80", "notes": [], "params": { "forceDirect": true, @@ -8378,7 +8438,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d57f951881b651373497c873473002a2", + "key": "4e5e4d8254931dda55bc1060cd4646f6", "notes": [], "params": { "correctionVolume": 0.0, @@ -8398,7 +8458,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4a7078541d846526fa0cc0025fbb52a", + "key": "df20141f1342af4b8e26116d68db570d", "notes": [], "params": { "seconds": 2.0 @@ -8412,7 +8472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "290520b507928bb2ddabaee24a20a931", + "key": "7c91017b7e2bce415013b168afb765aa", "notes": [], "params": { "forceDirect": true, @@ -8445,7 +8505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da8c38fb5bed1de9e779ea9040132436", + "key": "3943d5b0cd7a086b24d55ba935eca762", "notes": [], "params": { "seconds": 0.5 @@ -8459,7 +8519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4157d14dea0c85413e5d34204f7b67e", + "key": "7544603d0bdaeaef28222cfa6c4f3efe", "notes": [], "params": { "correctionVolume": -0.75, @@ -8478,7 +8538,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0113cea2f4fe95bdc1731496f6ac5da9", + "key": "2d0e061fc9a27ebb31b4d09bb5e293aa", "notes": [], "params": { "seconds": 0.2 @@ -8492,7 +8552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8a13a373c32ccad1ee9bac8c7d1475d", + "key": "3207a5513fec2177bb47495d9019d5fb", "notes": [], "params": { "forceDirect": false, @@ -8524,7 +8584,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8fa996b22b46a5d7d79ad08d50a0296", + "key": "5ade3fec6001e696b257512a86428bbb", "notes": [], "params": { "correctionVolume": 0.0, @@ -8544,7 +8604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa8dc320c6b7f8eb0e6ae286ee3d5fbe", + "key": "eea63a806c54ebdca00a52d72044587a", "notes": [], "params": { "seconds": 2.0 @@ -8558,7 +8618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea5ce33e55187ef609670761065531f7", + "key": "0277cd1694009299687673a7d3c14e74", "notes": [], "params": { "pipetteId": "UUID", @@ -8574,7 +8634,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb9c6eb764239a043fbddf96f8bf13a5", + "key": "eeef27d5089406acb61405fdeb68058c", "notes": [], "params": { "pipetteId": "UUID" @@ -8588,7 +8648,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "656fbcdd8d7e7042c85459d1a1f3dff1", + "key": "0e2db34711edfafe440cad4df1af7995", "notes": [], "params": { "forceDirect": false, @@ -8620,7 +8680,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "732f0a92372846ee47daa1e35d80c15b", + "key": "fc2af14ef2ff00f604d424822ed34626", "notes": [], "params": { "forceDirect": true, @@ -8653,7 +8713,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "09c7426afe3ed7bf6abecafde74c03bb", + "key": "24229c2132b1ee08dd7814bef91e9f8d", "notes": [], "params": { "correctionVolume": -1.21, @@ -8672,7 +8732,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfd24e3c5176dc56dc856e643cd20302", + "key": "893b8b91f9b2cd096c4bf864fad787f8", "notes": [], "params": { "seconds": 0.2 @@ -8686,7 +8746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69425275b854525fb030ac3f1f0189e4", + "key": "6cf5ac2c411e0497a302a5da4261e701", "notes": [], "params": { "forceDirect": true, @@ -8719,7 +8779,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14ba8f22c16598d40f1f9d749c8b67f8", + "key": "251cff9029a5510794efbf4c6eada87e", "notes": [], "params": { "seconds": 0.5 @@ -8733,7 +8793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2b4345fe9ff33d5d433e032f593c313c", + "key": "5ef80fe475127f57b5fb8092da1de1a7", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -8752,7 +8812,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6fdf300543716d58f825fb45cb728a6", + "key": "c3430588ad8039dc79af241331d734af", "notes": [], "params": { "seconds": 0.2 @@ -8766,7 +8826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d721fa125f903a7195295eff4747e7a3", + "key": "5aeca55354b39b57a87ae1edf7643f07", "notes": [], "params": { "forceDirect": false, @@ -8798,7 +8858,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e91eb939791009b944a0ca2dda7ba3b5", + "key": "db8706a5205ad40c41f0287f8092f7c3", "notes": [], "params": { "correctionVolume": -1.21, @@ -8818,7 +8878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6652418f119457de47c3f8cdad5325dd", + "key": "5b6bcadb31594dde06306fa7546afff5", "notes": [], "params": { "seconds": 2.0 @@ -8832,7 +8892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c515336021c877cd43efe922ae3d41bf", + "key": "a633707899ea70b630d3038ec6942bb2", "notes": [], "params": { "forceDirect": true, @@ -8865,7 +8925,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c9abac6336ae3ebe2eacbf50d4edd1c", + "key": "f3b35118b3c46562422abb9e5a5657dc", "notes": [], "params": { "correctionVolume": 0.0, @@ -8885,7 +8945,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be0888e6b1615ea705636a42b69c8d0b", + "key": "4d7b6738fec36ffcb28be4600f7df846", "notes": [], "params": { "seconds": 2.0 @@ -8899,7 +8959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cb8929034eeb449db6318981e22a155", + "key": "16c128dadb864a3b6bc612e4919c83b5", "notes": [], "params": { "forceDirect": true, @@ -8932,7 +8992,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d4a9e17fb4ec99ab9ee032cfad0491c", + "key": "26aefedb03f4f28b04c2d14afd0e79bc", "notes": [], "params": { "seconds": 0.5 @@ -8946,7 +9006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9012963f1f1b0730bbe8efab22614e11", + "key": "0aeb853a6c471d821c0b69e17cdd6c72", "notes": [], "params": { "correctionVolume": -0.75, @@ -8965,7 +9025,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "252e2aa1c49580e50f723836919f3164", + "key": "26e52057fa28ba3ad3d657db43325261", "notes": [], "params": { "seconds": 0.2 @@ -8979,7 +9039,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b5b12c741a9406d142fd97240a412f7", + "key": "b35651549fb4736ddf893fe68f6b0464", "notes": [], "params": { "forceDirect": false, @@ -9011,7 +9071,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9d95f777a8fce304c1c9a4cfd4c3620", + "key": "ffe9eae59a6fdf610be3145283098782", "notes": [], "params": { "correctionVolume": 0.0, @@ -9031,7 +9091,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3342ec2700610dfdef81544afb59d5eb", + "key": "ff4e54a54670513daee34862cfe2e4c1", "notes": [], "params": { "seconds": 2.0 @@ -9045,7 +9105,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a9bce2310ca87208969cf1069507c43", + "key": "438540276b326d045107c4bd9e6c752c", "notes": [], "params": { "pipetteId": "UUID", @@ -9061,7 +9121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "599ca991a2c817509e5dd6688e7ae191", + "key": "d19aaa1069b10b679dd660ec9bfe14d1", "notes": [], "params": { "pipetteId": "UUID" @@ -9075,7 +9135,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "56b76418017dd3518e0a0f15719ae21c", + "key": "bf362fccaf2e4a677461611bca73dfe6", "notes": [], "params": { "forceDirect": false, @@ -9107,7 +9167,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "681ff3c9616af3f9f733f6423b0a062b", + "key": "4974862fd7332f3d199d2f5c69164d88", "notes": [], "params": { "forceDirect": true, @@ -9140,7 +9200,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ba5bfcb09c7bf7398ee10adda34b633", + "key": "44b3c189e7b004322ee96b261369f207", "notes": [], "params": { "correctionVolume": -1.21, @@ -9159,7 +9219,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b87ee8d915233b8d8316b9bc609b27eb", + "key": "9d0501b3f61a21e253198584e4b13a4a", "notes": [], "params": { "seconds": 0.2 @@ -9173,7 +9233,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d685cc0a408acb085e97c434d0fe2f69", + "key": "12265538ffb5bf3b051dfde791ed5861", "notes": [], "params": { "forceDirect": true, @@ -9206,7 +9266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34cf5dc87f5c0c2d77aeb75b11ea035b", + "key": "dff27effd40db70a218180298b8a3ac2", "notes": [], "params": { "seconds": 0.5 @@ -9220,7 +9280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c10af26aaf885104fa0976ffa4dff47", + "key": "8fedf9e1e071b2031f32718246ee0068", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -9239,7 +9299,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a0a4bb89ec91670c95fe35600fed212", + "key": "868fd36578cbc031c6322558c165f855", "notes": [], "params": { "seconds": 0.2 @@ -9253,7 +9313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54150dfbdcde79d04a3c223d671baae5", + "key": "834476de2db40aaec230343cd36d1791", "notes": [], "params": { "forceDirect": false, @@ -9285,7 +9345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b18c5fe07e4bbe588be31f31653f5fc5", + "key": "739334836e6674d403afc32d3030b3d1", "notes": [], "params": { "correctionVolume": -1.21, @@ -9305,7 +9365,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9831de342b6dea531a59b5a8319e5658", + "key": "c9f2468a04113884a04e347ddfcf92d3", "notes": [], "params": { "seconds": 2.0 @@ -9319,7 +9379,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f7349285535cbd6337264a3f2fc7865", + "key": "e46380e0a7f3787e56ad88a2287f04b3", "notes": [], "params": { "forceDirect": true, @@ -9352,7 +9412,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d360fab18a1eebe36c5ce545e568065c", + "key": "c5817fd849eb6c9762e2f698c02e32e3", "notes": [], "params": { "correctionVolume": 0.0, @@ -9372,7 +9432,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e4fb9aaff993fac4b1dae0c5acf1d46", + "key": "0fc18affd5b564c80195c14be9c38ca4", "notes": [], "params": { "seconds": 2.0 @@ -9386,7 +9446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb5aab23a75fa8b5424e3d8415ca36be", + "key": "0979d87088534828bdaaf3172d78d5ab", "notes": [], "params": { "forceDirect": true, @@ -9419,7 +9479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "feb701bb860109d6cf5444f38eb5d2a2", + "key": "1ed337ced4e13401b50696e9cf58be06", "notes": [], "params": { "seconds": 0.5 @@ -9433,7 +9493,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18c380e475685241e013a6f091faa24e", + "key": "812691cc0ccf80d767f63fccbaf9b996", "notes": [], "params": { "correctionVolume": -0.75, @@ -9452,7 +9512,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4211d77b717845af72192363cd8e2d2e", + "key": "aa7381a8a2b67178d64eaac8179a83b3", "notes": [], "params": { "seconds": 0.2 @@ -9466,7 +9526,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10fb862a0e701aeac6616837af2a28bf", + "key": "34b2d32dccce8be2f05aaca184812491", "notes": [], "params": { "forceDirect": false, @@ -9498,7 +9558,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a6585fced1edee5c4af00c6f015ee10e", + "key": "9f8cb10d8a430f47428f7c2c7cabf775", "notes": [], "params": { "correctionVolume": 0.0, @@ -9518,7 +9578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f2e85754473aec6e08227134c42f4f5", + "key": "fff72cceab80cdd09750745996cc9228", "notes": [], "params": { "seconds": 2.0 @@ -9532,7 +9592,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59465b08373eea0a66f2d0ce67cbc579", + "key": "66cff06b62051917745915e9fca3f9ef", "notes": [], "params": { "pipetteId": "UUID", @@ -9548,7 +9608,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11a705a95f903f0443253e1b37639db4", + "key": "3f3621779d7a18d2eab60a5af7f93b35", "notes": [], "params": { "pipetteId": "UUID" @@ -9562,7 +9622,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf5b7d22c9bc240a9d7ec8b527bb0f8c", + "key": "786401b5eba69c177e1b6ca9f39c65f0", "notes": [], "params": { "forceDirect": false, @@ -9594,7 +9654,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "67fdd81d4add013cc5eeb6c4618c5712", + "key": "a92c20ef9ba556a2e3885797d507b463", "notes": [], "params": { "forceDirect": true, @@ -9627,7 +9687,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "88cf99ab5143da09cf84ff8bf2dae93d", + "key": "13092f8630675c80bfe625c2109076b0", "notes": [], "params": { "correctionVolume": -1.21, @@ -9646,7 +9706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0248969ac356ffb86e582bfccdfa4a87", + "key": "51f4ef27b99d92c48e0a476318332395", "notes": [], "params": { "seconds": 0.2 @@ -9660,7 +9720,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba1be7110afb38311c61546c53e0ce2a", + "key": "e298929ace3a0d03da9f91dcb19bffc7", "notes": [], "params": { "forceDirect": true, @@ -9693,7 +9753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91bcc99c48b34a035d8fbef52a8d4bec", + "key": "f2b547e6a51820231b55b3647061c8a5", "notes": [], "params": { "seconds": 0.5 @@ -9707,7 +9767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb932888c6147f02160e7e4d577ff708", + "key": "a6c67b113216283b9ab98abc8839a06e", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -9726,7 +9786,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef772b53f77dc024f74b649449695eb6", + "key": "c124209f68f3f51a5459da947f5b704f", "notes": [], "params": { "seconds": 0.2 @@ -9740,7 +9800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b0d94b28460b2af449924a0cee33acd", + "key": "c20831415330dbd0c936b1be87d379f9", "notes": [], "params": { "forceDirect": false, @@ -9772,7 +9832,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edeb184b31ac794e1d9177b11afa0b17", + "key": "93de6d9bf26b1ae935bf59db947f451a", "notes": [], "params": { "correctionVolume": -1.21, @@ -9792,7 +9852,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba9f758281b10716e86722c622946f7d", + "key": "ec3a2d0d7fa43fc42956dd93ee52f159", "notes": [], "params": { "seconds": 2.0 @@ -9806,7 +9866,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ee1a8c9edf18e0f4488cc2c51988e79e", + "key": "a0830c29d968b278cc3e6d88ff80e599", "notes": [], "params": { "forceDirect": true, @@ -9839,7 +9899,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80375b43913b6f84bf6f77961b8d75fe", + "key": "91ad742487e32116293fe619edeb663d", "notes": [], "params": { "correctionVolume": 0.0, @@ -9859,7 +9919,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16222b901f98d0abdab860f0448a1295", + "key": "2c174ee271a957923d938f7b938c5ecc", "notes": [], "params": { "seconds": 2.0 @@ -9873,7 +9933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e68ebd267291196d2fc551a9d0131c2c", + "key": "deb371c251ef88f3c1f9b7ebfa9b3f4b", "notes": [], "params": { "forceDirect": true, @@ -9906,7 +9966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc0e02aba860b68ce8d289737ac9888f", + "key": "f0c2ce59b529f92a6e3d33e610702a52", "notes": [], "params": { "seconds": 0.5 @@ -9920,7 +9980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fcc43decc0e500e4c9f00b2dd266383", + "key": "c99416d19540ee10480b2bbcf0f7dff8", "notes": [], "params": { "correctionVolume": -0.75, @@ -9939,7 +9999,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f66143a010109f1e4a59b349c17bc3fe", + "key": "f533d2e56b6b5eb6a43bfa998d71952f", "notes": [], "params": { "seconds": 0.2 @@ -9953,7 +10013,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01ef1ffda7d8cec1cef2c774aa8985fd", + "key": "b4f2d65a9db37d44732653277b41dd1c", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -9982,7 +10042,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1228ab923d8cd47c34c3381e27847acd", + "key": "187de3ade2e546bd2995042fa9b368c3", "notes": [], "params": { "homeAfter": false, @@ -9997,7 +10057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd7d6fb8b9e1efbbca9faf2ab75c37e4", + "key": "9a7db6de74ffc66dba00b1d432b09634", "notes": [], "params": { "liquidClassRecord": { @@ -10368,7 +10428,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5307086284a28cd71028229e3c21c58", + "key": "b85ae4b9f7e55c497fecf5261efd46a6", "notes": [], "params": { "labwareIds": [ @@ -10392,7 +10452,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b1d2cbc2c220a953c6aee54293baa5d", + "key": "f282b2bd8be1ffa335956c22ce90282a", "notes": [], "params": { "labwareId": "UUID", @@ -10425,7 +10485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ef5f4bc028036fc1dacab6042ef6978", + "key": "19c7c25a14226bbc1979f8885d0e5869", "notes": [], "params": { "forceDirect": false, @@ -10457,7 +10517,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72d4fbd74feafdef930a3ca60dc75287", + "key": "16b8c3d24be0274790ce5a9eb577570c", "notes": [], "params": { "pipetteId": "UUID", @@ -10473,7 +10533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1df3c6985cb1ac128aa3e2042fac750", + "key": "281eec90070a87465707236c8c8ce9f3", "notes": [], "params": { "pipetteId": "UUID" @@ -10487,7 +10547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05efadd77038cec9505ef8cc42f93fc3", + "key": "b5fe03a642b5e08b68f7fa34431008f9", "notes": [], "params": { "forceDirect": false, @@ -10519,7 +10579,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a9b721b1998ca7ad1c707c8a0f1cc61", + "key": "9b0aac1540db488ae539d04137bffd08", "notes": [], "params": { "forceDirect": true, @@ -10552,7 +10612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcc9dd9294ddf9e7e391ede9495b6d8a", + "key": "1c13628c2c05da4f8820530e505f5977", "notes": [], "params": { "correctionVolume": 0.185, @@ -10571,7 +10631,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9899b3bc85aa71f11489e9eec05e0d2d", + "key": "ce73dd3f945ea26b2e439f7b8939a4ce", "notes": [], "params": { "seconds": 2.0 @@ -10585,7 +10645,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "036c8c1940aa911ff4127315c23dccd1", + "key": "495e7bcae7bc5209f028ebc91fe5b795", "notes": [], "params": { "forceDirect": true, @@ -10618,7 +10678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e7adf7c7026e90ec3b5d08e8f7498e5", + "key": "27245fc221b48e03a45e3c8d28a479ad", "notes": [], "params": { "forceDirect": false, @@ -10650,7 +10710,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8643b8ce224eb6a8344b9cb29d386f5", + "key": "4e3be83a0c6124bdf1dee79d28374284", "notes": [], "params": { "forceDirect": true, @@ -10683,7 +10743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80f47dfc258df02adf57847717c3261c", + "key": "f37cc945e6ffa5de992d533e34762f72", "notes": [], "params": { "correctionVolume": 0.0, @@ -10703,7 +10763,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66362f518a2659de4062ad8c23d8f49b", + "key": "21919b7690a20e85adf6583c351a2674", "notes": [], "params": { "seconds": 1.0 @@ -10717,7 +10777,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad65aeb90108bbd6deedcd9b9aa5d4e0", + "key": "5ba996f218f48808bdf7d34b0e3b3653", "notes": [], "params": { "forceDirect": true, @@ -10750,7 +10810,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02aada49f454069e6e32d6de8ef2032f", + "key": "60dfaa731afbe865261cf1189f4e4cb7", "notes": [], "params": { "pipetteId": "UUID" @@ -10764,7 +10824,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5abfff905bcfdce4d92ccebcd7186bf3", + "key": "15e64006dfb86f15a6726b1433424b7c", "notes": [], "params": { "forceDirect": false, @@ -10796,7 +10856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f19a37f3147ed83c30282a3ef91ec7c", + "key": "52bde61616fa0f9b964a8ab190710f18", "notes": [], "params": { "pipetteId": "UUID", @@ -10812,7 +10872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "03ef8a0652263c546e7687ea54828f99", + "key": "e04317b3cd7189ddef086471efa1a4dd", "notes": [], "params": { "pipetteId": "UUID" @@ -10826,7 +10886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "521b9ae6422ec3c0fff03c4fbadc92b0", + "key": "90c2d860edb23ee05723d3caa1d36918", "notes": [], "params": { "forceDirect": false, @@ -10858,7 +10918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2ec07d244184dc02cd8045ed31c2c8c", + "key": "07d297b855c6707894d63e4773e96587", "notes": [], "params": { "forceDirect": true, @@ -10891,7 +10951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c82ef95ab8a737da45367accccf783e4", + "key": "6a21c3697b6c3031192dca9deacfb570", "notes": [], "params": { "correctionVolume": 0.185, @@ -10910,7 +10970,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc74da8b9386c784185aa801d9545418", + "key": "b79d03bcf3838a07414f8de39104cb0a", "notes": [], "params": { "seconds": 2.0 @@ -10924,7 +10984,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e98c4fc9a08dfc2fabf2bdcbabbcbb0", + "key": "1db29739e7fc79f950e699c88e66c7f1", "notes": [], "params": { "forceDirect": true, @@ -10957,7 +11017,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b536dc3b8dcbdd212a2c0b9d26b66833", + "key": "c99977fb9263cdbcf095df2443d0e1c3", "notes": [], "params": { "forceDirect": false, @@ -10989,7 +11049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ece8fac298680e98d7b12de1e9f7416c", + "key": "aaa5a5dfc1c7514721d658c9497619e6", "notes": [], "params": { "forceDirect": true, @@ -11022,7 +11082,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "09f48d276449a38a0c32d3f29e9e725d", + "key": "9489b96172d485dd0b76cb5bee69258f", "notes": [], "params": { "correctionVolume": 0.0, @@ -11042,7 +11102,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d8c8042309036bd2f3592b61334988e2", + "key": "df669f8c97f7778b7db67766f0ef840c", "notes": [], "params": { "seconds": 1.0 @@ -11056,7 +11116,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28a63429abd6ce2a0ba18f85f401b0aa", + "key": "00e11330561827aadec1ee9057447161", "notes": [], "params": { "forceDirect": true, @@ -11089,7 +11149,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "03f03cd9eb3191fff72cf13bc587cfc4", + "key": "3382b5e21fa02c999a0c36ffb912d7be", "notes": [], "params": { "pipetteId": "UUID" @@ -11103,7 +11163,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36e341ca838160054fdffe47a4c2a4ec", + "key": "55c810aeea1558b2db9e6a6c577308e7", "notes": [], "params": { "forceDirect": false, @@ -11135,7 +11195,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66db06e5c8d148edc10cfedec41e2a09", + "key": "dd33aa3b0bdf8a47374cdc56f4d8aa4c", "notes": [], "params": { "pipetteId": "UUID", @@ -11151,7 +11211,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2fc7f0fa72a872e90fc68c7da60fd301", + "key": "374b5d256fa53d65b55e9ea511160227", "notes": [], "params": { "pipetteId": "UUID" @@ -11165,7 +11225,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "114d9eea8db8e6962392f57a67cc7849", + "key": "9faca7161c44335bb0761f7e22e3d6b2", "notes": [], "params": { "forceDirect": false, @@ -11197,7 +11257,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2cc04ccc2738848480fcdf53c429009", + "key": "6baa2515e2578ba59477fdef0ab512d4", "notes": [], "params": { "forceDirect": true, @@ -11230,7 +11290,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d008f3699d53e9c67c78a91314ed2836", + "key": "d265f010a68bf1af103100fb770fd54e", "notes": [], "params": { "correctionVolume": 0.185, @@ -11249,7 +11309,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "367554f289c7a2b60d810bdaf3d48e87", + "key": "3b5fd04e0bb0fcc66fa6011cb049133b", "notes": [], "params": { "seconds": 2.0 @@ -11263,7 +11323,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0bcf89b20f93942d09b462b1bdf4ff6", + "key": "d17a1641ac7a90a9824df8e9f1e52b32", "notes": [], "params": { "forceDirect": true, @@ -11296,7 +11356,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "536c108a1069507071dcf25ff434c402", + "key": "bf1387772c95880e74bdca03f6e7ce07", "notes": [], "params": { "forceDirect": false, @@ -11328,7 +11388,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c03c8913d53937cd86623c29de82cd2d", + "key": "ec6959b7e204d21ece5d89c00f5674bb", "notes": [], "params": { "forceDirect": true, @@ -11361,7 +11421,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af7cf7550e2d36dbb9e6aa1f04757de5", + "key": "9ffff74685938ca26d9f70471bb4ea75", "notes": [], "params": { "correctionVolume": 0.0, @@ -11381,7 +11441,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "462aca53db9052de6445719eaccafdcf", + "key": "2d04a8515a2273685064c4c553fca4d4", "notes": [], "params": { "seconds": 1.0 @@ -11395,7 +11455,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d5da3cb4bb1a1a941e21e40af73f019", + "key": "57653b66012aec5768ce29de35026c8e", "notes": [], "params": { "forceDirect": true, @@ -11428,7 +11488,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66bdc349a6a689d521062ce412552b47", + "key": "caea9f3b4da0b314677b1c70eefd22f3", "notes": [], "params": { "pipetteId": "UUID" @@ -11442,7 +11502,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ddd0b4300a1199de21bee10e476f910", + "key": "57dce155cddded503565ef3f7501e751", "notes": [], "params": { "forceDirect": false, @@ -11474,7 +11534,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ded20f148f81b7d26eeeb7c97e550ea5", + "key": "e0fe69efe25b55c89924a92b0191aafe", "notes": [], "params": { "pipetteId": "UUID", @@ -11490,7 +11550,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d54665cd6fd889fae336c78863471414", + "key": "97dedab8e2f40f7fd9f3d73759abecb8", "notes": [], "params": { "pipetteId": "UUID" @@ -11504,7 +11564,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a5f24be5693db368348ff6181b5988a9", + "key": "1fe05e5c90ac50d6b23ee1bb16a5c83c", "notes": [], "params": { "forceDirect": false, @@ -11536,7 +11596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fcda6c2380e0360f0919b4667f580d00", + "key": "ce15186def18d80e5869b22cc99be1b6", "notes": [], "params": { "forceDirect": true, @@ -11569,7 +11629,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c714b9d557193fa8c7de3a900024259", + "key": "902ca4d11d72e5baeef67fe519c8c76d", "notes": [], "params": { "correctionVolume": 0.185, @@ -11588,7 +11648,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d0ffa7e8222edd68a82997694672660", + "key": "10bec549fdd5e15844f46ca4003ef0a2", "notes": [], "params": { "seconds": 2.0 @@ -11602,7 +11662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9949c22f9014e5c33aad3e48ca6494aa", + "key": "bf2294d74b42606b29744b89c891c189", "notes": [], "params": { "forceDirect": true, @@ -11635,7 +11695,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d3050cf37b673ce54781df4505bee66", + "key": "187d1690e715ba861c74ab8a001bff73", "notes": [], "params": { "forceDirect": false, @@ -11667,7 +11727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11b869f144ae763887c9807fce078a96", + "key": "a61061407be185baf82007c73d298e17", "notes": [], "params": { "forceDirect": true, @@ -11700,7 +11760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31531defeaedabc38274c42da7f16396", + "key": "a72bbcd33884306ba865e8b8d7c577ee", "notes": [], "params": { "correctionVolume": 0.0, @@ -11720,7 +11780,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfa91333915fb4cf08db9cd50e3979e7", + "key": "2c14362cd8837734de1c2d24dab48b4e", "notes": [], "params": { "seconds": 1.0 @@ -11734,7 +11794,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8b2bb59b6091367d8e4a2a2cd19179b2", + "key": "8e917f330c042b1b9dcd6a7388f3c0d9", "notes": [], "params": { "forceDirect": true, @@ -11767,7 +11827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f282d519fcd0213c4ee5742d94dc6d9", + "key": "28d6f093963075d0a3405d319bcf91ff", "notes": [], "params": { "pipetteId": "UUID" @@ -11781,7 +11841,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1782386be732a2ca5c92c0812bed50c", + "key": "8baf69ea27553b6e4e16958fa8b66f00", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -11810,7 +11870,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2fc3eeafb24424b9ffd16ed511730d5", + "key": "4b468ad0e6c9ffb7b8cb26c84f0ed0d5", "notes": [], "params": { "homeAfter": false, @@ -11926,11 +11986,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -12151,7 +12211,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -12161,16 +12221,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b694b0a20e][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_transfer_liquid_Override_50].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b694b0a20e][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_transfer_liquid_Override_50].json index 247b9010fed..6fcffa712c9 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b694b0a20e][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_transfer_liquid_Override_50].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b694b0a20e][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_transfer_liquid_Override_50].json @@ -5368,7 +5368,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -5400,11 +5400,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -5624,7 +5624,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -5634,16 +5634,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -5911,7 +5911,7 @@ "key": "d96248bf56c0216c0002fab72fb5c7a8", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -5961,10 +5961,10 @@ "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -5977,7 +5977,7 @@ "key": "02229862f3c9749896d8a9d943eaf86b", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6027,10 +6027,10 @@ "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6079,7 +6079,7 @@ "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 22.0 }, "result": { @@ -6121,12 +6121,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7588a321583efe8b33bc18c8e0e3d74b", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c7fc5c523a9cea5778614000fdf93a5b", + "key": "51b56a1bae0063387b93cedcdc8c6c92", "notes": [], "params": { "pipetteId": "UUID" @@ -6140,16 +6155,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9463ecdd31391cf07039813a6864ab2", + "key": "0d4fc311197707a2f7c1c7a902a8171a", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6159,10 +6174,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7b070970fc64d832efef0ccae8774f5", + "key": "231eb0863230b7365c40204a2fdddc98", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6173,7 +6188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d9d2e4c9871ed497c40ddf7de82d05b", + "key": "c58422f3aad3e0a01afe405f9ed86648", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -6202,7 +6217,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7a4e4136d83945e48504ed8edc9f5ed", + "key": "68bc396596b8de06c1451861b73e3e5c", "notes": [], "params": { "homeAfter": false, @@ -6217,7 +6232,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d11171cd0364c4e42e5b4bd8c34f0fe4", + "key": "c2517b0e0edc50ceed1e7705af37d96c", "notes": [], "params": { "liquidClassRecord": { @@ -6616,7 +6631,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c07524ce488c9618f71d10290e5c0fb7", + "key": "77faa1001f6aec0e20180bc41e3ade9f", "notes": [], "params": { "labwareIds": [ @@ -6640,7 +6655,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd81b47ed6e33f0cf97338143ad1c69e", + "key": "da3115bd8bd4d4628435adbacac2244c", "notes": [], "params": { "labwareId": "UUID", @@ -6673,7 +6688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1c0887cdc90a5d50b8a7136eda4d17d", + "key": "cd02553c167c65a81d765fbdf9ea0c2d", "notes": [], "params": { "forceDirect": false, @@ -6705,7 +6720,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d5d4f865cc7389cbecd32026236d812", + "key": "27b4984491779fd0126325e78ecac286", "notes": [], "params": { "pipetteId": "UUID", @@ -6721,7 +6736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9b1bd72cd035a21c65dc6d05bd5e29b", + "key": "0b3171d7793bfd5132eb8d7026471049", "notes": [], "params": { "pipetteId": "UUID" @@ -6735,7 +6750,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c9ca96b8e6eacd857e344029214b475", + "key": "a46011d909fb0cc35f899d2b78b821f3", "notes": [], "params": { "forceDirect": false, @@ -6767,7 +6782,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9dbd218b773d6b96fecc5f777cfaaacf", + "key": "48ed0b1739efc3b693dc6746bfa7fcc9", "notes": [], "params": { "forceDirect": true, @@ -6800,7 +6815,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a41c82bd6d40c67f90708c2c4f25258", + "key": "49daccf9a4d16bd71b0502749c6b987b", "notes": [], "params": { "correctionVolume": -0.88, @@ -6819,7 +6834,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34a1318105b9baeef7f7a50a5d792904", + "key": "d870ffb732f0209475ee926c10b284f5", "notes": [], "params": { "seconds": 0.2 @@ -6833,7 +6848,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9170717f47e9662ec2bc5d9963c4ca0c", + "key": "eece8fb1bf2747ec263a85efffd3f6ba", "notes": [], "params": { "forceDirect": true, @@ -6866,7 +6881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af0fc980b451ee29939b3286cf709fe5", + "key": "62aec5aab0b3f9c2903ac8c56518329f", "notes": [], "params": { "seconds": 0.5 @@ -6880,7 +6895,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cee9e5fafbd8fd52f069d77da1085c9d", + "key": "2bdc98c01970653bfec50b2060546ea2", "notes": [], "params": { "correctionVolume": -0.9550000000000001, @@ -6899,7 +6914,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "506f6bd2a253043ce96ac50bf3a3d9c4", + "key": "acda290b0eaa22919ea1b0a0fa5ec822", "notes": [], "params": { "seconds": 0.2 @@ -6913,7 +6928,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b33cb64da3be6fed4aaafab03d682df5", + "key": "0456339c7b244486367fc122a96ee3b8", "notes": [], "params": { "forceDirect": false, @@ -6945,7 +6960,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "280bffbb82f7e2601b0ac80d21a35f1e", + "key": "772f47088a71fc79d4af7e8884927696", "notes": [], "params": { "correctionVolume": -0.88, @@ -6965,7 +6980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "279dfa7fecf37f80a22ed7fbe2dcf7e3", + "key": "52e7f058c74263b5499547c4febfe7cc", "notes": [], "params": { "seconds": 2.0 @@ -6979,7 +6994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75d5ce027c7e724ef8934ba611eed5bb", + "key": "1bbec8ae8c510c279c12091bf2988644", "notes": [], "params": { "forceDirect": true, @@ -7012,7 +7027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd22794bbf9db7eccdf285ca62f9b56d", + "key": "98df8e41bd50b37e1f50138c1e5881c9", "notes": [], "params": { "correctionVolume": 0.0, @@ -7032,7 +7047,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27afc42252948a5050774e47027d3796", + "key": "023b0bbdceda75d0022f85ce79dd1b94", "notes": [], "params": { "seconds": 2.0 @@ -7046,7 +7061,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "200dd48a29b7ed5fc721ba5cd1e46806", + "key": "e8d56e3cdfa3017cc438abeb12bf80c8", "notes": [], "params": { "forceDirect": true, @@ -7079,7 +7094,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9229b2a095abfd444028ade1a2b44d6", + "key": "8f783a3f7ef162e13fcf7cae57a9c593", "notes": [], "params": { "seconds": 0.5 @@ -7093,7 +7108,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0edb724004d1d8def9684d00345be691", + "key": "ea209020583205816707886a6e67e97b", "notes": [], "params": { "correctionVolume": -0.75, @@ -7112,7 +7127,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53e4791febf6295ba31f1958ee99746f", + "key": "90f906891da023ce09e10ebaee76a3ab", "notes": [], "params": { "seconds": 0.2 @@ -7126,7 +7141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2297030d2349f4dc253daeac3e9787d5", + "key": "187fa9b1d80a7bc830e87e7387ab3ef5", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -7155,7 +7170,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43117f4debd3687af3429e3374af1da5", + "key": "363405645f88a0b38f6fd9ee596bb86b", "notes": [], "params": { "homeAfter": false, @@ -7170,7 +7185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ea4e28394ee934b53f5e5e4387fb31b", + "key": "4a3a64775326732726807869ff09f079", "notes": [], "params": { "liquidClassRecord": { @@ -7541,7 +7556,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2214af952e077dcbbc55265e9e182df0", + "key": "7e541237fb7fd739b512b0ff59ad254f", "notes": [], "params": { "labwareIds": [ @@ -7565,7 +7580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ee8445d2ee82a54258c6d2f57bd0aa9", + "key": "fa3dbde4af2c17adfcf18d4b86b20fc3", "notes": [], "params": { "labwareId": "UUID", @@ -7598,7 +7613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0645714e88e56645e8da1acc1c85e3d8", + "key": "2d71771afd6373bbdc413d5eddb08df1", "notes": [], "params": { "forceDirect": false, @@ -7630,7 +7645,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4ab79eeb6eeb98549e7056597721778", + "key": "8429b66889de5315c17e3aa914faea61", "notes": [], "params": { "pipetteId": "UUID", @@ -7646,7 +7661,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "664c517a59d1979188e95fbfc7fd8895", + "key": "24ee394d6f138376b7fec4e6286cefbe", "notes": [], "params": { "pipetteId": "UUID" @@ -7660,7 +7675,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfcf93b0c53e41ac41138fd3f7994ab0", + "key": "d4f3ffdd791cce31212689c2e42027f6", "notes": [], "params": { "forceDirect": false, @@ -7692,7 +7707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "438dbdc5b482c605a9a00ed6c63bd858", + "key": "59dad065a1d59e1d538bb4d34b997e0c", "notes": [], "params": { "forceDirect": true, @@ -7725,7 +7740,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e110c9a70b33f6b4b0b3d1df5ed5b0b", + "key": "35c16c0aa5f4898999960ab29172a3d1", "notes": [], "params": { "correctionVolume": 0.13, @@ -7744,7 +7759,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ced498aacf3d393f01c0f81039fbca9", + "key": "e2647e268a44794c6e8ee193d818c8fd", "notes": [], "params": { "seconds": 2.0 @@ -7758,7 +7773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce23c07480762ec6e63245a40f23f875", + "key": "a98a603ead6be161e847ef7cb5689c48", "notes": [], "params": { "forceDirect": true, @@ -7791,7 +7806,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc316048d576d10104b5039c7918e0f2", + "key": "c8af964d06fa835f7db2e9daaa6db703", "notes": [], "params": { "forceDirect": false, @@ -7823,7 +7838,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8478af40cdc631335f91dcdf3c46bc81", + "key": "3d3787dd1629174293e80b605d071375", "notes": [], "params": { "forceDirect": true, @@ -7856,7 +7871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ecb0be6f6d4778b939b2f142c162750a", + "key": "eb610ceda23273fd9531b03033a3b010", "notes": [], "params": { "correctionVolume": 0.0, @@ -7876,7 +7891,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae82436ff95a5453d3c3aa9a1e7844ef", + "key": "bb626f779e8bcd35e3c9a5915b4e2f68", "notes": [], "params": { "seconds": 1.0 @@ -7890,7 +7905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "224926ede1cbea77f758b9afea4cdf91", + "key": "5fdd8854b6e1ba0f8cdf473cbe700d9c", "notes": [], "params": { "forceDirect": true, @@ -7923,7 +7938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52e7cceada1f3f53c351f38cc8c6c284", + "key": "ab986d85fb76dc99d16c4ab2e1c3036e", "notes": [], "params": { "pipetteId": "UUID" @@ -7937,7 +7952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ff2d5edf9233298cfd835315b751b56", + "key": "ed4a0fe8c29da341d32b24730714ffcd", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -7966,7 +7981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "030ac8069d9ca01404000180d530d210", + "key": "91d235b95464b0d76582c1973c5a28d2", "notes": [], "params": { "homeAfter": false, @@ -8050,7 +8065,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -8082,11 +8097,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -8307,7 +8322,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -8317,16 +8332,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b856a4edaa][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol3].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b856a4edaa][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol3].json index c4ea34a8ead..0b9d36937ed 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b856a4edaa][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol3].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b856a4edaa][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol3].json @@ -1,126595 +1,3 @@ { - "commandAnnotations": [], - "commands": [ - { - "commandType": "home", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50c7ae73a4e3f7129874f39dfb514803", - "notes": [], - "params": {}, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8511b05ba5565bf0e6dcccd800e2ee23", - "notes": [], - "params": { - "location": { - "slotName": "D1" - }, - "model": "heaterShakerModuleV1" - }, - "result": { - "model": "heaterShakerModuleV1", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9563ff54d4bfe61c469a7da06e79f42", - "notes": [], - "params": { - "loadName": "opentrons_96_pcr_adapter", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [ - "adapter" - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 8.5, - "y": 5.5, - "z": 0 - }, - "dimensions": { - "xDimension": 111, - "yDimension": 75, - "zDimension": 13.85 - }, - "gripperOffsets": { - "default": { - "dropOffset": { - "x": 0, - "y": 0, - "z": 1.0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "adapter", - "displayName": "Opentrons 96 PCR Heater-Shaker Adapter", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_96_pcr_adapter", - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 6, - "y": 69, - "z": 1.85 - }, - "A10": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 87, - "y": 69, - "z": 1.85 - }, - "A11": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 96, - "y": 69, - "z": 1.85 - }, - "A12": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 105, - "y": 69, - "z": 1.85 - }, - "A2": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 15, - "y": 69, - "z": 1.85 - }, - "A3": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 24, - "y": 69, - "z": 1.85 - }, - "A4": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 33, - "y": 69, - "z": 1.85 - }, - "A5": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 42, - "y": 69, - "z": 1.85 - }, - "A6": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 51, - "y": 69, - "z": 1.85 - }, - "A7": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 60, - "y": 69, - "z": 1.85 - }, - "A8": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 69, - "y": 69, - "z": 1.85 - }, - "A9": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 78, - "y": 69, - "z": 1.85 - }, - "B1": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 6, - "y": 60, - "z": 1.85 - }, - "B10": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 87, - "y": 60, - "z": 1.85 - }, - "B11": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 96, - "y": 60, - "z": 1.85 - }, - "B12": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 105, - "y": 60, - "z": 1.85 - }, - "B2": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 15, - "y": 60, - "z": 1.85 - }, - "B3": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 24, - "y": 60, - "z": 1.85 - }, - "B4": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 33, - "y": 60, - "z": 1.85 - }, - "B5": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 42, - "y": 60, - "z": 1.85 - }, - "B6": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 51, - "y": 60, - "z": 1.85 - }, - "B7": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 60, - "y": 60, - "z": 1.85 - }, - "B8": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 69, - "y": 60, - "z": 1.85 - }, - "B9": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 78, - "y": 60, - "z": 1.85 - }, - "C1": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 6, - "y": 51, - "z": 1.85 - }, - "C10": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 87, - "y": 51, - "z": 1.85 - }, - "C11": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 96, - "y": 51, - "z": 1.85 - }, - "C12": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 105, - "y": 51, - "z": 1.85 - }, - "C2": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 15, - "y": 51, - "z": 1.85 - }, - "C3": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 24, - "y": 51, - "z": 1.85 - }, - "C4": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 33, - "y": 51, - "z": 1.85 - }, - "C5": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 42, - "y": 51, - "z": 1.85 - }, - "C6": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 51, - "y": 51, - "z": 1.85 - }, - "C7": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 60, - "y": 51, - "z": 1.85 - }, - "C8": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 69, - "y": 51, - "z": 1.85 - }, - "C9": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 78, - "y": 51, - "z": 1.85 - }, - "D1": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 6, - "y": 42, - "z": 1.85 - }, - "D10": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 87, - "y": 42, - "z": 1.85 - }, - "D11": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 96, - "y": 42, - "z": 1.85 - }, - "D12": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 105, - "y": 42, - "z": 1.85 - }, - "D2": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 15, - "y": 42, - "z": 1.85 - }, - "D3": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 24, - "y": 42, - "z": 1.85 - }, - "D4": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 33, - "y": 42, - "z": 1.85 - }, - "D5": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 42, - "y": 42, - "z": 1.85 - }, - "D6": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 51, - "y": 42, - "z": 1.85 - }, - "D7": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 60, - "y": 42, - "z": 1.85 - }, - "D8": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 69, - "y": 42, - "z": 1.85 - }, - "D9": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 78, - "y": 42, - "z": 1.85 - }, - "E1": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 6, - "y": 33, - "z": 1.85 - }, - "E10": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 87, - "y": 33, - "z": 1.85 - }, - "E11": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 96, - "y": 33, - "z": 1.85 - }, - "E12": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 105, - "y": 33, - "z": 1.85 - }, - "E2": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 15, - "y": 33, - "z": 1.85 - }, - "E3": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 24, - "y": 33, - "z": 1.85 - }, - "E4": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 33, - "y": 33, - "z": 1.85 - }, - "E5": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 42, - "y": 33, - "z": 1.85 - }, - "E6": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 51, - "y": 33, - "z": 1.85 - }, - "E7": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 60, - "y": 33, - "z": 1.85 - }, - "E8": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 69, - "y": 33, - "z": 1.85 - }, - "E9": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 78, - "y": 33, - "z": 1.85 - }, - "F1": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 6, - "y": 24, - "z": 1.85 - }, - "F10": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 87, - "y": 24, - "z": 1.85 - }, - "F11": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 96, - "y": 24, - "z": 1.85 - }, - "F12": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 105, - "y": 24, - "z": 1.85 - }, - "F2": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 15, - "y": 24, - "z": 1.85 - }, - "F3": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 24, - "y": 24, - "z": 1.85 - }, - "F4": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 33, - "y": 24, - "z": 1.85 - }, - "F5": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 42, - "y": 24, - "z": 1.85 - }, - "F6": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 51, - "y": 24, - "z": 1.85 - }, - "F7": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 60, - "y": 24, - "z": 1.85 - }, - "F8": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 69, - "y": 24, - "z": 1.85 - }, - "F9": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 78, - "y": 24, - "z": 1.85 - }, - "G1": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 6, - "y": 15, - "z": 1.85 - }, - "G10": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 87, - "y": 15, - "z": 1.85 - }, - "G11": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 96, - "y": 15, - "z": 1.85 - }, - "G12": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 105, - "y": 15, - "z": 1.85 - }, - "G2": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 15, - "y": 15, - "z": 1.85 - }, - "G3": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 24, - "y": 15, - "z": 1.85 - }, - "G4": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 33, - "y": 15, - "z": 1.85 - }, - "G5": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 42, - "y": 15, - "z": 1.85 - }, - "G6": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 51, - "y": 15, - "z": 1.85 - }, - "G7": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 60, - "y": 15, - "z": 1.85 - }, - "G8": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 69, - "y": 15, - "z": 1.85 - }, - "G9": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 78, - "y": 15, - "z": 1.85 - }, - "H1": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 6, - "y": 6, - "z": 1.85 - }, - "H10": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 87, - "y": 6, - "z": 1.85 - }, - "H11": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 96, - "y": 6, - "z": 1.85 - }, - "H12": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 105, - "y": 6, - "z": 1.85 - }, - "H2": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 15, - "y": 6, - "z": 1.85 - }, - "H3": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 24, - "y": 6, - "z": 1.85 - }, - "H4": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 33, - "y": 6, - "z": 1.85 - }, - "H5": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 42, - "y": 6, - "z": 1.85 - }, - "H6": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 51, - "y": 6, - "z": 1.85 - }, - "H7": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 60, - "y": 6, - "z": 1.85 - }, - "H8": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 69, - "y": 6, - "z": 1.85 - }, - "H9": { - "depth": 12, - "diameter": 5.64, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 78, - "y": 6, - "z": 1.85 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "heaterShakerV1D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "heaterShakerModuleV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cfaf21024d73537b3855c4bb7e8b6cb", - "notes": [], - "params": { - "location": { - "slotName": "D2" - }, - "model": "magneticBlockV1" - }, - "result": { - "model": "magneticBlockV1", - "moduleId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e9fbc9476ea0db23996722a92675ad6", - "notes": [], - "params": { - "location": { - "slotName": "C1" - }, - "model": "temperatureModuleV2" - }, - "result": { - "model": "temperatureModuleV2", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d237360042847205c77676d0e0726e4", - "notes": [], - "params": { - "displayName": "Tubes", - "loadName": "opentrons_24_aluminumblock_nest_1.5ml_snapcap", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/aluminum-block-set/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 43.7 - }, - "gripperOffsets": {}, - "groups": [ - { - "brand": { - "brand": "NEST", - "brandId": [ - "615001", - "615601" - ], - "links": [ - "https://www.nest-biotech.com/micro-centrifuge-tube/59201044.html" - ] - }, - "metadata": { - "displayCategory": "tubeRack", - "displayName": "NEST 24x1.5 mL Snapcap", - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A2", - "A3", - "A4", - "A5", - "A6", - "B1", - "B2", - "B3", - "B4", - "B5", - "B6", - "C1", - "C2", - "C3", - "C4", - "C5", - "C6", - "D1", - "D2", - "D3", - "D4", - "D5", - "D6" - ] - } - ], - "metadata": { - "displayCategory": "aluminumBlock", - "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Snapcap", - "displayVolumeUnits": "mL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1" - ], - [ - "A2", - "B2", - "C2", - "D2" - ], - [ - "A3", - "B3", - "C3", - "D3" - ], - [ - "A4", - "B4", - "C4", - "D4" - ], - [ - "A5", - "B5", - "C5", - "D5" - ], - [ - "A6", - "B6", - "C6", - "D6" - ] - ], - "parameters": { - "format": "irregular", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_24_aluminumblock_nest_1.5ml_snapcap", - "quirks": [ - "gripperIncompatible" - ] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 68.62, - "z": 5.8 - }, - "A2": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38, - "y": 68.62, - "z": 5.8 - }, - "A3": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 68.62, - "z": 5.8 - }, - "A4": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 68.62, - "z": 5.8 - }, - "A5": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 68.62, - "z": 5.8 - }, - "A6": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 107, - "y": 68.62, - "z": 5.8 - }, - "B1": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 51.37, - "z": 5.8 - }, - "B2": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38, - "y": 51.37, - "z": 5.8 - }, - "B3": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 51.37, - "z": 5.8 - }, - "B4": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 51.37, - "z": 5.8 - }, - "B5": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 51.37, - "z": 5.8 - }, - "B6": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 107, - "y": 51.37, - "z": 5.8 - }, - "C1": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 34.12, - "z": 5.8 - }, - "C2": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38, - "y": 34.12, - "z": 5.8 - }, - "C3": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 34.12, - "z": 5.8 - }, - "C4": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 34.12, - "z": 5.8 - }, - "C5": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 34.12, - "z": 5.8 - }, - "C6": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 107, - "y": 34.12, - "z": 5.8 - }, - "D1": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 16.87, - "z": 5.8 - }, - "D2": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38, - "y": 16.87, - "z": 5.8 - }, - "D3": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 16.87, - "z": 5.8 - }, - "D4": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 16.87, - "z": 5.8 - }, - "D5": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 16.87, - "z": 5.8 - }, - "D6": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 107, - "y": 16.87, - "z": 5.8 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "temperatureModuleV2C1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0d237ff204178f356a85c28c8e437ef", - "notes": [], - "params": { - "displayName": "Sample_plate_1", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "slotName": "C2" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23e6255326c303a448469e547d56fcbf", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "C3" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a8b76fa033dece609800b36592110cc", - "notes": [], - "params": { - "location": { - "slotName": "B1" - }, - "model": "thermocyclerModuleV2" - }, - "result": { - "model": "thermocyclerModuleV2", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6624414aaacff3599aae187eb91dece5", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "B2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a10165d502745151a34bb0ed4ff7180a", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "B3" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80b396b6a80bad80b9d39858e1447978", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "A2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "277f2864c409df5dedbc2869be32ad53", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "A3" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14998d450c9cdc8f3e8a92bced1a613a", - "notes": [], - "params": { - "displayName": "waste", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "addressableAreaName": "D4" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterCovered", - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7bef406458974fe25d5de49061a767a", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "addressableAreaName": "B4" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadPipette", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee2a6d53067af3254f0d4d5f7deee33e", - "notes": [], - "params": { - "liquidPresenceDetection": false, - "mount": "left", - "pipetteName": "p50_multi_flex", - "tipOverlapNotAfterVersion": "v3" - }, - "result": { - "pipetteId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadPipette", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42c379b2779ee5819fecba2500022f1e", - "notes": [], - "params": { - "liquidPresenceDetection": false, - "mount": "right", - "pipetteName": "p1000_single_flex", - "tipOverlapNotAfterVersion": "v3" - }, - "result": { - "pipetteId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c32e038f623380b14ababb72d975f18c", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A1": 1040.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96c282d46176c820279c1c8ed0226fb1", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A2": 57.2 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8fdfe3c7306f5a66bdba4cbfa89a898", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A3": 114.4 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea09fb6d923c28851a58a9a9aae5418d", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A5": 180.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68cb3f0653504fbdf75636f034dd5e22", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B5": 156.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d8867e9ea5c9e2fd183a271c3bc7826", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B3": 228.8 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63f51f1b19b1b869a95714ffe09a67f6", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B2": 114.4 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99e74a0fc71641c74116b01ed7877e95", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B1": 29.119999999999997 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7f129caede81976d1154cd5f14c9ec7", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B4": 260.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53e3a7f7317b5d07b7abc9b7b7c8aeaf", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B6": 520.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e514ff6c43e4b6c6154e7c2fa087786", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C6": 1600.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1ad069280a950f685f2a39c1fed5683", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D1": 1600.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d05d3812377aed167e44f45d7763463", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D2": 1600.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e95d8b016f47de993b41b8555143a1c", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D3": 1600.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa367224caf13d51655a5e93f069aacf", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D4": 1600.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efedd0184d4b3121db6bbe425dc99e00", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D5": 1600.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "528b0081c48ba9e757b746bddd5c52cd", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D6": 1600.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/setTargetTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4305c710aa00399de88828b5093c269", - "notes": [], - "params": { - "celsius": 4.0, - "moduleId": "UUID" - }, - "result": { - "targetTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/waitForTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ff7cdc05cc20fb0c2eb93619ea3407e", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99165352e7e2cd2dbb7cdc033c1a7742", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "168059347cca0ba1e2341b7c1348313b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c68b062a4e4c2c3a6ba991c221dce6f2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "decf487e8a744774365a2895d3441412", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a855b7279fdb9ceaf4591b39d4251f2f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "000f562280363777c0a98ffc840d0840", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfe86d45078699abfbd6eec617595b3f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0d86b806050f7c513defe1fe78eb5fc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a7c9b24727caa0cce737111cafa4e5e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d100d94248c447fc463e64a6ffc5873", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69443074e000513383e196ba2772dd20", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cb5921b8ff32cfcf551a2a6c55e3fd0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bcdbfa23c91ae4efbe3dade48c65a1d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ff5b1fec7bba7a7d4723f19cca33c27", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1cf10f843e72b28e4a1e244847cdaf6", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3877d2d1aec03d3d7f6b65a4b2982fdc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03eda2e072bc55723e52e042a6ae84b0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90580b81e15796594abb3e655cfd11eb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f15d15279ee08df44695c574deb294e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20e7c35f5874a8c0b082e04f4b685b0a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88bb752b6cc88c6af24df17ed304e3f3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e6ce512b20c292f82799e507f319e1d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b86376b582505e8526b1481ff4bf070", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "050c224ef00e61342acbdf8232bf0b34", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1031df7aac07d9239090da62040c65ec", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eed8eeabfcd5901cc554ba7f68ec610d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd32abce22197f4030d3a4b8a33885c5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8741ef938c9f4ebe7aed27ecda25e172", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c78ff89e6f62e558fff92895053ec141", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64913b0ecbc788ace3a30dde82eab161", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48da90e128f541137cbb058f7f0bc41b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a00cd672ddab19b352e359ab50e31f5c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e412bdd89ae5692e87ca3857b1b87aae", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6854e7626807a035e93ab71aa0b79bae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d29814c203ee64f756e0bb8834bf5fc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4e0881dd30e3746286ca35bdeab63a8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf5bf48968cfa5603f3984f57e31e15c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b4d8ad296ed4972cd13c36fd75b9460", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13f8a75ce0e461f6ad719a8cb4feeac7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c0969941fecf827d1c4cf85fa811fbb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cbca3fe85aa47f351a030d5a29d08b1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d83ed215107ccd302c681c66e837459", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c9c92e0b17ba006393c632db75c4086", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "327ce4f02e7ecf355fe2972fe701899f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d53c6ebc5df71a1be909366c650dcd5f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3df9c9e4b93ef5f2a25d8edbd1d0d94d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1b5c927af11f8d910f25d54a5309627", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ce599d1d2b2e351b79b1bef09d49ff0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aae9299c0a8e9bc74550badd16b0bebd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58e0ebfe63e3f9c4d07c9ca3839542ee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f71b49bdb311d4de7ea5a300a710de0a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61a9223df6c11150e1710eb9c5fff015", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ddd2d8de85e31572539e337f7d3c6209", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "957c3c46215d83002ed3af8035784159", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e2e9a6dcf2aa2e43d096e82413ac5eb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3960c535a62648a42639099b57c89947", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47649cbd2a33078c04f34ddb6ff8c0d6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1abc918f28d69f1fd5e640d13a42cf74", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c01a4f9e325242ef4ebc3aa13f3045a0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68af8c5470cd37828fa0fe2150800940", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5b4a59e8c44af606a1632bca21a2548", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ec61c7d7aa04c81f9eac5397034c4df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78c0f8d865877134abc8693da6982218", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbc326e8fb9c0fda1ec525ff712d6be9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "128e31f8cb441997da34f52660a40dd4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f763b284319384943d0bbb99c40e02a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb72ca3ffc304dbca18f930d651583f1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "997419435ab8b62a56ffd207e6a2c618", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d35b4ee2573232f752c5ec25a51953fb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7104d3ba216fe220e99ab6be6ed2c578", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db934618b9fcfc2a82c1f8e866567ed1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bc687b447ba976a6e27753a03146e8c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcafb9fc2c349e9758e5bac8d489fc70", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abd251ce0e83a7303f1c1530d1c1db1e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82227153d1d3fd12c8c3e3f9a552b02c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a186a242d57a69ba9cdad5dd435205b5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cedcf921ec0513d552244d0ea142c6d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5c60f946ccf9dedc6278ec405b09a2d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d98435206b5095eb867657dcdd388a3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a84eddf3b9c033df3e7a8b1c993a2783", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bdd95b1a3d44d2d43dfdf051e0cc2d9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfbbb68e2bab6940f2dbd0131ae060c4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0df56872a048fd26c01e49d4305962d7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32965f43ec2b4ea2668659cfdb3429f7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43496a69e141481bad8756bf492df881", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6d228343cb800782d0d5c380a6af7e6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8468804cef839b77af58e5e12d31ad38", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d71bcc4ded66bb27e00f5874b235039b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "654232e82a8b30b8de74666a5db602c4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e444d67709da8ef0244e7e2e3a0a754", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d4f777a91129a13a78a7760c8800ab8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61fd578a9a870aaeefa6c9c657bfe873", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "257c292da27171803e796d24acfcc6a7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6152998dca7b39916a98858885a973ba", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d44f60f4d34362df7f781b0ae86dbbd", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b22541f08d03f6c42a55500ebe2b4eb2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7b295a726cfe3aeb3347c46a8e3e2e7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d8ac17a13072e0215b7444e6e9d5c6a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e164db8371dbb4acf18ee7b11579e0e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57f1f90000bd5d978f04aae2b003ea32", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43c16e793b8525e41d2e4d579e013160", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de28fec0be5b402b434c1b75c43dcdbd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af72debe86cb10cfd04b21adcb0f514f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4599410d1707d5fd25c0c857be35f7c7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad8404461e33f02e1e0371ca4fb7e997", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92a2de352488acc578eeb12c9599e5c7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5cd2c2be55047d179ff4aafe7b2cf31", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b247cfb3fef0448b2aa7b61d1bb6eb1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37bf0aee1a09b9c94e5f7c0bbf734ca7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32e222041b97c566b82aa96a18251811", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "065ffb727711d6641dbe8dc3bec0a5c6", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc1fdd33cc8575fb13bb95b227dcc984", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7481d9ea637c0dad115ee0a22fc5d21c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "307e0d649f8d6bcb95ab85da35f30912", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d64aab7f966a2869b818565d44e5f40f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5266283cbcee20bf0c634340f2f32d87", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c04096008af11cbee23db69541677820", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3189aacf076fa232327aba12805b300", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fae26e6cd1596dfbfbb62796636271cd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89ab396613cfc9a7151a4ac4b3fad828", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1ca19d679973cc85b6f101693caf8e0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "683c0b9f4672bb1639f1985e4eba809c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a41d2bbf0ce1220683a1d7d250af685", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2bab2098c602ff1aaacc1e2343983f8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a503f5ac1b2bfba78aad3f131a7d2d0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44e1dfe789a08f45d8c75af9eca461df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "732d672c950e351302e681c329d8590a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c103269057224664053060750f9f5fe", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d259131d321dfc8dfd69a534e9a6ed4", - "notes": [], - "params": { - "message": "Fragmentation and End Prep" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33268edf5e62636db12a60077238c6fa", - "notes": [], - "params": { - "celsius": 70.0, - "moduleId": "UUID" - }, - "result": { - "targetLidTemperature": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98c57a3d06c53e371d3db79781d030cf", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e269430d865d94cc39a1d67e5aec773", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "936ff4939db0484725e700b1c92441f4", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "celsius": 4.0, - "holdTimeSeconds": 300.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e670ad424f4ada8136bd949bcb5cc9a", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7b815b72468b9b46b03684c1d09c054", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "781e3302c5776ac110e51f6edbe3690a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "031c56e62d3f145d164e16e25062218e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.400000000000006, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 38.0, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 48.400000000000006 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e135c4a9b235344eecc867048d0a2b2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.400000000000006, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 48.400000000000006 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfab4f2ca99cac67d70545820519d6fc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8be41431cabf5ec6f0392ed396b7bab6", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ee01d85dd4e75774e7e365c4e9cdd54", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecb2c8a10c42951d873d33b56f07b016", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8661d47e3a9207563207bbbe84f4bd8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.80000000000001, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 55.25, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 96.80000000000001 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78d0f748fe4d58161ce86fda4c8d95be", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.80000000000001, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 96.80000000000001 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a95451ee9273b02e787fab454b7f1d6d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1eefad554021453f425ac17be8d6a53", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2723bb34d711e70212f61840efd8326", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28806ed5ff7f61325d6b05b030f4bad8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "540ac97962b29a18d8cb78a73e10b8f9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23bc3618d18c2f155c6ce3e74460ede5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a571ce209bfd78cba2c453a13e15cae", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50e71910283f5f696a3213e5a70e2dc9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e9c52d53f24e6a8685edafe687598be", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2de4a6eb26353b76a581bf9efabc16c5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cd9224e0019f7e3405aaa47e0b4f67c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f02b910afdc874fb26d875a24dd82d7b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f9822bf5c7f66f585d62df0cfe39a4c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c70b64e8a6af50e3d1ba5088e4c41318", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b1468073c27ced42037630a6aca325d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bdc940a58590cd79ee0b77ea51e1f4f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4462febe5ea2ddf6006b887b769d1aaa", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f1f9b7c359520b313fdf6b94f5c614a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 112.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 112.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "037e3ca559e3bce3ce3e4d6439d7f6ec", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 51.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3214a523a9e8fccbde6d32b672fcf856", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f21f7c860ac58c3bc6dec12632a58d44", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "713cccf08328a40d51d8c3e552f3037e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3adc6853357e5c90a249566c3a549cc0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb8c9792410e490f89e2dad31a8d0301", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "338b6b04f58b2dbcb7eaed76ba275032", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22b3c01cda8ce6573e78b12b4883f181", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e170a4af9ba2d642a82c7ab0b787995", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8839982448918941394b8a5ac2867bda", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5035f0db0c31527c9fceb31da7162141", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66595e419cd361b9694de0feef8a76a9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e530f585c6aac72767e2f0639fef6ef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "094d2144f11459e9e5148f6572dcdaa5", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0270f0728d65ec743e63726d018741b4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4f875550c67a3bb49edb87db821907a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "072ab78e116ff6e33531e7ff21543374", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73121e94bfab32e4cc3c5f210f5b749b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de14b770a4336b05ba7e9e4b15a3ccc2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f2111767ee34bffa96fb6c5a1057d60", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec0568a40da91077b209b84565b3ff02", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31eae259cb60ed6285ddddb3d86f7694", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41b792c76148c61963e18e5fecf6cad5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd3b915262b5a22e9c51e1b3452ea2e4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad235552f41a5fa58847e5d21a3962f7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a35db2ad9b702d81a9f73aacc774b8a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "598fdda96360fdf81ea06f8a5779203f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e53613f693314f561620cb6a61f3ffff", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "898b7ac05d6a0e4e78ef4795e86901f3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8da6e2f061d8cd941de6f30f39bd738e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85407fb835750baf2b38e44f7195307e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5c05cb43e753368af27a10c8bd882b5", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0f2ecca6b70ac32262b98d5653d8448", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6e335f8815d8890027a70c68d3db83a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0b28c89610e33a7444aa08395bcce9a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30fdd5ef15fe8b9776b0bae36db31700", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02a224f49c340734a045878c8ddcc653", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62aa28c4a75b0c1b18a81f9a048a804e", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf1ba32e2c3b38a70b739583df6e25cc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95761337b959e3e086af4d37e6ed494f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ba7e75129991deb02f804318bcc270b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3193d67ff4763f78b24730bccd5cee5e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "266f296be1d8c6358e700147f4a23981", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8af4defc443d16251c9df4022f25d060", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a7a0e82dadecb73208069ea6c774294", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "245177d91f09754e5b07f936e325efaf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c43c773e7923961e82f1cd62f9c45a2e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 89.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc2f52ad6b7eed8e422a70f5794c9e29", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a054c3d0a287eb75fd6fd5b5616d3ed", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c00b89fe64197c01529945682abba9c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "249ff1d785b1118c2c0a1e2fa61304d2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e47b15b9ddb459f1066e46a335c72a9b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bc4f314444a36a8bd89bda32447fa0f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a39cdc6a2cc34e4c784e5cfd3614cefd", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2edc1b64afea2848dd80b9f8cd353c1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0034450a18303e65cb2a357298e9c324", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4f4015e939e734fd13945f40d5c23ab", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7b39c3d364bd274a3d7939a7176c322", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90cb46aa4fca709b8b068b8c8b8e825d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44310086f7bdaa5ed0e7c5c140e42540", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc972b66c4cd8e010fc55233a9c95bbf", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc133c9c32917da14fd82b2a9aa3e8ab", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d86973517074754e112a798ebbb3906", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "297d0279d9b93671eb2c131a4a9c149d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dac349d34dbd7a95d9a7767346ff66f9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7b8a69bc65d5b28617329fb52ea1992", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ed871f6560181c897ac9d4e318e1bb2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b289a82ce9c7b627d64b9c6ea4ba40d2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63809a6a18eb0019fb640210bdbbc85c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32a57be0c3c812903f961c83550cf43b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af391d0ff7caaca61511704dc2137bb4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "453050b15314a56a0d8787dfc1483a11", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "405f3142e5942996dc2bd54c35c07c53", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60d59c267208763f1aacc9c4f1c38312", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e46df42c98254c96dc484f9bc0286238", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22ad8326647802dbab1bdab570f9dd4d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff62a637d1b84afe43f51e55a988d097", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "548814b2449625612b07661a6066b04e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e7ef5cf95e69e23242fa3b937b5b49b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "051caa2b61c89cf9a8c8e58a800c5128", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc07cc4343524a7bd4d42ad011a6b0ea", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "928ad4007217086b3ec5b4f234ef4c4e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "393576ef4c4b6367407ac0d4cf005fb5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77ebb0a0656130d081e67ee5438da174", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ab4ba6e5e08c2d7d0b58d8730b8cdda", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ac11ab44afdc9f32f5cd164e70cfe96", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8125d5d976c3ebe187f645cafaa8ca9d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "522a388c8a751a4087e069e810b74f8a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "454367c1777570a3a11056bf017a7ff0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02b99757065535373ae1ced291c0d3f7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a3baf66e9f7819f34761a4b8e333914", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ecbdcfc7199adbad5849a1b5ed0ad96", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ede8dbbcac3efb9de3dc12cbf7b6e31c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95a6557bb446c7f74eb7a1462f438b29", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c987cd2dd3c6d28accef791a7f4c195d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "477e581bacc06fa4fcf4492573016fcc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aad505f210c03b230a0da5557ae9cdfc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56fa56018f0241caed0cd373698414ff", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1aad25db43dd9266c9f02480863fdd27", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3e28ee31e9d831d89d70f647548dab3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcb4f43e15bfa1f2415f2212bd28ea5d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d005d0f1f513330f665a94e0c6e22a9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "916c45c374feec5f2365e1ee3ed04575", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad095d45a025171d8f79767dae02f395", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12a81243c26dcc513a2be3ca10e8385d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e55b718244187235a00f07d3d990c99c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "894c2573dbfe41edfcffb0d4735ca74f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf13edaa1cb6e12073510957b1e71db4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1051a6e6ea4a0a851b28969eb62a82b5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcb049dca6aed830b95204cab36a3279", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75c861ed868392e970fca02149cbb113", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc1b88e19b501729488e19506ed23ff5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7c98f98414d141c5391f17669e8eb8e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "006c217c573e173e22451ba40193f47c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84d131d76616cd621cf165e6808c4797", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e991078674891dde2e4c2e3fdd141983", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5127ef75e8f8b4f8f9334560267b84c2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2660fc282946be922c35487f762ef12", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b2705d0b7c0742f670905fafe45f89a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "210ee6a7cb37c2cc14d6f531edca5c45", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "219648920d6a52e6dd1546d5b3114ab4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9085303c46c389bba7d02c8010f0a15a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f334a63d70bb64f175160302433d4574", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5efe2e89c1fbf84470368841648e6695", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b36d5d3562d037bc5a2e3a94b168a1d7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9db4a88980b6e6123aa3cc4b4c982938", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96044bda0b6f287ace2f0432a1709fdb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7eb57b88990b9ac5222d7821f6165662", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71371f6766b2d5b44b12e81672824e41", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc3d07d6f2fc19dbad826ff61d4c9313", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33d4b28184bf18b1f561b12ec7b24276", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51c746345473311f9bd6f1c79849e83d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "780364af263d939bec9c651585af5b7b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62602a4feaed77716686aaddced115b0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f73fac75ed907bc3ad42523698c1636f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "baa61502ab6adaffd8217568144524e8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03258a2e86199abe66c1521a8f35f9cd", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf1926f69020c001e187a17a4506e87b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6829a30b254aa1b93fb31cc35a8bc080", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0cc455884db36e5070138d3232cd960", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea8b792fd9b2701c025bc60671d889d0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e845edbfb5b0b7c37b3bebde61500d6f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5c9af77a4ca87e4cc9bbe00bccba730", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8128c05804409339b7d1accf031a1e1b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f1587f826582fee75e49b3e331c707e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c5391576678b446a7f6574cc33d4dad", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d107f651c69da435ca4eb67fe595b978", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd2974d50306e922d1c3ef6476d0f259", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d4cb41568eafb39a32238bfae35ef53", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "196eda235d7220b038fd0131afe6a843", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81c7730e7ff62267e79d0eea7aaff5b7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8a8728e853887aebf03716252b82032", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7d5ceb772134ff17c4fbfe589261322", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c688e4f104a1535f0952666c37ccac3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52fdc8dcff7abcb1bec866181f6ce15c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85064925316b8a1827b8f70b78aef44f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6966fac2d77d595b2005c94550290010", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca75c39ee4827f5abcaec66fa62321d0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e21ec44b9705aa35aadeba3a497f9c0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a32cd519e4f18cd3985e8c2c644f2688", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "beeee5a9db00543574a5993db9aebb76", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3de09e9bb443000d30f049d18e45b18", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f74464c4004a98c1c134082fbbf3082", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5619b323254e0ff84556adbc8812f560", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4853d24d25aaad4f2f4f764a861f259c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cdfa11b806fa76626dfafaa5a0e274f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a101f5d040ea62cabcb63751fdad93c2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7cf3c22bb2e360d26e4b4d81fc070c0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57c89d835e8ba7ec13bb7c637080ab75", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "292af6c6c93db710e43dbd96c3d87357", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9b234ea415e97389d4c35f46deeb05c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9d49a903e9f75c23ff40c9f2ad5cc0e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63f87caf173ce2a990632eee7f853dfa", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f226388c2a24192728b68f4ccf0fcbfa", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa79c75ec263baad857952d6e269c6e5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fe4b5f209d1b551890fd7c735d5ab2c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72b6befe915e8d3869b4190a9672b334", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dd044f81c7fe6323ae5a89c4f3c5281", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6fb853b9f3d97711e1f2356e68e4e38", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "749751e953d2ff896fd4136c3b319863", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "801e1c7ecdb0a60ca51f0af85b2bc63f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10cf3c8abc90316958b71021253a6ad6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efc6cc91297262b9296c22e515e04e5b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b64a17655c07930438b900b70bd009ff", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf89aa3b09c4e42f81cfe667755a5abb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8ef1c7f07c5bc77ebed56737f9be6ef", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7771a6247eb34b7489621c2e7f5c32d4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3c813cb8bf94846a6d19e787f948afd", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e79615860ee38b1fd0c45644abc346d6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c59aa028be624ab3e1396e5075681263", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e09ce83c855a4d393d7162255de88f28", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3ff3299e59d6f2fcd94d5058bc60bc7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a1a5ec1106594f2e2a148a3dfc03726", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d08528c8a848e187841c813a048e074", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "055dde1c2a2d1f51fdccaca54bef5ad7", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84b4859ed2f247d92555de50c749bcd8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cccc48b928a0e77afce0fee632b279a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54bbbcc9bf4a0fc3159265a17a1e9a55", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20c137f1f20bbfd3c06fade9f2cef2ae", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e031d1c395914cd545d91a4de8cda0dc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ffd4a4dc26b5e48176efa50b7e70a41", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff5c87d81f901254d2c6366e3e9eed1f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b7d0f303b75c30f905b75290f753e9b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e5c4fef79be460ccc4d20b92bc25cad", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdea31e2ed2595cf3fb14776bd849791", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bca2402de783d651f98f1f49f04211c0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79f6f91aa8595892705f127c48ee515b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfbcf7dd9522f7d96f846e30d410b0ee", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27df321c61e38874b8d5fc220d40d51e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "590629346352f0228d8ea5fa25a10e7e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f2014b9b7dc957d2564249c4df5186f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8889dad26651993b810910b849328731", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cb204c511157d2979fe04736ff9a0c2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a76bda9088a44b92abf00f84af8a3ed", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d62a7e884cbd2a561676d23e53caafa", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "459e2d3e6274b049fc123e90a807b793", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60ccb216eda3db4f750ac239454d5966", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90b7272913399ae750e0f8f8733bc249", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11f5f7685702c45d54ef1ebbaf5fe107", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f928cfcc4e9acd2614d4eb68e31dadbc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52e41b76245508304468da07b9f2c861", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a7f32d0f3409ab38a6d8f06257d0e8a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f90e890d5ab8c84a418e57e8282c2f88", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e432176e1f98ae8a9b5bf332c5026e4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7044e01ddf8bc1a745326703de81465", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "859a095a00125452ba72f6400000014c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd08c3088fc54aba23d0e1b05c25089d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56782464e2553eccaf8a3441d3837157", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41755a6a56231d8cff9231eec57e4aa6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79bfa3a4eff87fefa8301f693b8da4e1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80c7510956c2cfce9d15dc4c203edc80", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0dc9021151f449d9351d86c80a30e8f3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e4d0d749db2463ca9728b1c092532d7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e3128663ad2c31ead1a3eab1b4af8f4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9dba608e2a627a98fa91372f65664d9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff71fa1c3d7bea8cd1a782c13353ed10", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cc6cdc2586e1f1b906a1454d809a8fa", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cab22a05678efad4924491512cecfd4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9680bd592613e2fb0cf30a7afc2992c6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1dfe903a9b51feda7236576183878af", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a110f7b720b000e96e9b3991756be1e3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc2e3140c9b458c1cd53b54c90eb12e6", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2ac60b1bf75ea1b0b32b2c1ef4e90a1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d3e21d0872e73fe08bd06737993eeb6", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21d986d5a89d1f2f2fd8ac9f83bd5b88", - "notes": [], - "params": { - "message": "Add plate seal" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e798a21796f1fba69f276e6ed507213", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac78e1b2fa0ce9f81d72152c4aa06f20", - "notes": [], - "params": { - "message": "Fragmentation" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0c7d3da14a8591062a878b1a55aba22", - "notes": [], - "params": { - "celsius": 70.0, - "moduleId": "UUID" - }, - "result": { - "targetLidTemperature": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d72486eac12d1c8f583cb932c9f62d9", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5a51d7064eca384f7cd223e301928e5", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6259cb5ce0ecfa745c6c13889869f148", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "celsius": 32.0, - "holdTimeSeconds": 600.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76e1ad2cd0a864673a70e8d3763355f4", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20ebba8e4942b0f099d28ea5b6421027", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "celsius": 65.0, - "holdTimeSeconds": 1800.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3695a72c312777422d67aec0d7be9dc", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18af66c88d51926ac70a06ab2571b3c4", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "celsius": 4.0, - "holdTimeSeconds": 300.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70be94d155a63d07c3fa1d2d891bfb5c", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b45fb8d46f081468c0d396ceae6fdb2c", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/setTargetTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b320c4994f473567319d03c00367d1e2", - "notes": [], - "params": { - "celsius": 24.0, - "moduleId": "UUID" - }, - "result": { - "targetTemperature": 24.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/waitForTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da4da81b58805194b5dd92ea0c261743", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58424ebc47f4a6efae26c8c01ba3296e", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "466968d712471891aa153161fd261592", - "notes": [], - "params": { - "message": "Remove plate seal" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1c3abf46930a8dab7105bff4571ca0a", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8faaa2824e190b89398020424b6f68e0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7525929f527586826d257adbf710c4d9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2101d3bc8d4e26dddc4e35d7bc9c2cc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1242c46493c99af211d76b16c83a938d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19ef1c4356371137ef011463947c35a6", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c08d097400f2728e00d22aadc12d712", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "969334ac61e3232f481fa89579bf0612", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "154b92513af5f8f196cec87e29a21dab", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b7b42f5e3451fe90a2b2186769481dd", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "306882f096475270ef555063cc55109c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "098b4ccc5e7d25647e3e918943d2935a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c816e2f8cc0e6ff71f35494d12c889b3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c060f7ca0a2005c0c7411e45e33dfa83", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fc3884834d37d0bc4952ccaa3b00b51", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c05beb761488cf0820ca3d2ff075fe3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f07f3bf7e8910213172ee0f853c73d1c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0759aafe3e26701d321408b3343c0fad", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "790d05c8327c5c2a55025badeb627d41", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6947ddd37e1f111c9a00446398375f44", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5b6476e69b41cc90f49b656fc617f92", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b325379cdabea0095231a68e0d64c01", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d5bcf4bf0c0dbb0055245ff403aeccc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bc917eb397df4abf60c6f679dcaf4c4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd75ba04e0aa1f9a62d8984e2debbd5a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fc8cd6840967b7f2788c14db0e02590", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3a738ce43d4dbe985c0d0d6661d89b5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca0db2effda18eb914ad5976bf03b334", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6cc4c9905a3d1c7f2fbe20113961cd70", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbee5e89d7446eb703ee299c77f7300e", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f25c76c8a2f4b85087628bf0ea608e6d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a19a2e96ed69a05f6a8829440d843aa9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dba64bb52f97a30816ba72f570311414", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "624eac6fb4c1a3ecb6345e1690793ed9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e4bfed1f9eeedc3b92c6c31925d7469", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac6b1e9d07695e70cb042aa205c6c707", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2bf8a1871dc12bd9d70a856eccd7822", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74c92d321eeeb61353f809fce10eb61c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bcf5ca1438e3c335e276a4f12349b50", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77e3d74fbc8a6c856a6fd84f60d8b54d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e596d6fb035b82aac51a2da002bed6c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea09d61b5e229f9a95a0fb8c04d24779", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "803ef362d1b2f19e8ec20c50965e0aa2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9f07a9eddd3172aa676593466533160", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40e037a18b1a8710cc5ca8968ffa0419", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fd460c0ca3cc61eea295c69eafd72bb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c54bf3da3c667fc4c20700f6d636d6b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f56811b366d80b371906ebef4f58b16a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cd4a332c7e2f08193a0875587171a20", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30db7a180309c2340debd3c40d7f412b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce34cf6d97c5db093eb30f059e1c1ecb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0634cae3c02426cd491aa52ad0433c9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d26ea433a1a51c522002fd7b4f19ddb5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51ac51f08f87232f389082987ff9db6d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "359cee1e96a283dc37d46e05cbdfd4f9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a80a8f86c512fdb3978f6997995b6058", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "340fd71b8da73b90b57449345bd1b8d2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da890b542647e9dc1946895ec25575ec", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ab9099134e5b2fb17a7b158501789fc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a78845fedcf8c69bd3dbc7de7cda6100", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0da4cb55f2d68dbc96998fff6349207b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7381c39064c01836ea0e4cf6046c8556", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "827c402700e7d975642ecf28c365cb2e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3487d75ee67399aceb2838e719b5ce5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "964f0c0cdf58d71461449f908c434688", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a2b8c90fb0b09286b85aeaf869e7fdf", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9359a15f333b12c9c2a85f225867a32c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f0a99bea074d046ee438695984637d8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef8b189745d879cc528982d6027c8a34", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d4497bda6c7d0425ca642b8f3fc7f0c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02f028841ed8e64cf601e074546f4e04", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f859ba762ed7ef481b62c4833bdab41b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9fd19b3d3290da611d48e486d1c1ce9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "836f80ff29708ec33d3f438167643537", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7842f454d04fc8aa9c9b4a1ac079d3fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e49ccb6e796447da7317a40940b4b43d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a524340750943a5d78055825e7c1c093", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ba56744ff222d278c8abdbbdd74b3b2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0adb611485c4970b66a380bfee0984fd", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80253eea1c647a957a3b5279713a24ba", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e45a2b3374f8ae3d7516f639641f2e2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "641f72b1eae47cc7488d3d238d136f82", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05e8a307f4373419dc5899bc7f578e44", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54a1e58fdb8196cd59fd8ad3d5041a12", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b62331c8dfe8838cad7e3e016bbe040", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b16ca1388cabad0e9b743f6d31e9e76d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8508007cd163da47a62857f262104b17", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca84fdf9cf499767c70b7206dc64b515", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05bc720567004197d08e6a543347b147", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eec9552db6384d5cd64361a2cdc1237f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "987cef9e52f2d53b05c63d4c8d8f8662", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45d55e888b515c3042395a287c4764bd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49844216e45055c66b49af1873c2cd01", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "670b9134b08399b2fdc72eccd9c9e827", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4553bee5dccc1ffcbee8cf17823f896", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a18fdcb71ce399025b58d567ae9ddeb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db1aa66ee320da6d99ead100a15a2a20", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21d62c2d8a2210a8bffcaa88f454d4a8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d1bcd40b6a633bca77a4d91e343164d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "058a00f60125b881953d4e9d1df6808f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b4df912731f2971d013374b2dee36ba", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9c3869b2b9f48f64493371d66e9c9b4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b1aacd5a1934c586f2f5e73ca459eb5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9df099f8f5431d3736cbec568af420e7", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c965e15e0154e28ef1c6c4c0195c371e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c86b7499b8a8fa70919fa2cc15985c6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1f889f2fbf6df757822eb4566bb3349", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb980a634eb98c962b478ea5e5537b96", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9da164eba4dcb9864108435500722c7b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db3a67f2bab571088be165c9cc2ee94d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9528511402df647cece4c674b0d4c890", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc3512065c17ebf8f15e1e4f87d5cbc3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bb372d6fc7b362362c2faa04d2088fb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1625a090be56feda4350ddea503c861", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5595520de5a1c1540eb020ec80b2da2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12f4ce81834f23f981cf9971c054049a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9eb37c9638de74a05ba33ea4e01f15a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0764fd62771233d9452ff2ce4f8b8a91", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdf13a346490e56fa1d425e9febbd191", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26adcd636078fb36ad174afbdf28f262", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25023d3a2ee26625de73eebcbaf392c2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d14331211c4b66e55556fcdafb178900", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c51b7b38ff5bfb82eeff8f42a7273d6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5b1469a19ffd24a6fd78a7c350ef1df", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a77c82c10b631927afed1794a0dffb70", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfd96fc8e053ce09cce83210fb5a9f99", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "634fd38e14b0af0e519e1d1fd5e2cdb4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da1cff606021360516f718a3ebddcb68", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a5d439ff6422ac72aed2e189f077b12", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b49b9bda261b50aa46edcfcb9179301", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df5d1f3225add072ab5f2370e3abf491", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59646d44d3757bf1cd95449e540fec78", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "655b7fd3649355dab85ef328cc38f7da", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d5c479bc539c7f2b45043d991399121", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "039b3d6c28e275a233bf6dcd0d036bdc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acb672b39732705afc4a393285b7fb20", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "323b6e3c55413a9216ed6d41540f4e3c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c3714dfd673372f0cacb89413be12e2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13521b95dff36332a7ee429655800905", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a32ac4bb4666cc461e3aad1b94d235b1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc7937217cc60d201da0ecfdca98e49d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a68801e086f12225f86f85b4fbd37a6a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "099e3c9c83f64a40a7d5b85296e3ed88", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b83a38500c72b3c132e7db29401b76d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7648f11cf4666ce5df2b33a24c8867a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b903c3f2bd67ac5fcac04952b82dea7f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16aaec702e6bcd0ba8abf553b2c23bc5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84d9833e8ad00c4f362c4ff47b0c0e2a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19e767aea724056e0ebc213c5b2c4d72", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91dcd7a8cc7a60ccf8a9035b07a928a4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df314eb802c572140780005db63fd714", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5702800e104e15fb01bfbc28cd0f3396", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae193bf362e008dcbf441abc0a38a1cc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f9b4a1c8b53e3af37dff58d34edeb72", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "049ca8316c9a71e19520b941608b0e97", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc9a3df971ec6f7678b831aff5fb70b2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1690a722bb29c5d08d5f0ea68b193bf4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef63e179d54ec2e9d558c7b207124728", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b37412701c444a69c87837cd89801d6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87c6975d1df1ddd61f8062589b633bfb", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e405fd422e44a9cedd21835ba900286f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13a567acc7b71804060a9ad0091e8c2f", - "notes": [], - "params": { - "seconds": 300.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17264fa3b66bb6895598b6fc140a2aee", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a592cdd088b45b849cb2ec829de0760", - "notes": [], - "params": { - "seconds": 180.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5375d4bcf158632d2302a5d28c98c88", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14b929f4e3492b442eb894e91e676bb7", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "332a3cb089cf6c882ed169f0441506ac", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecd429f45735595ccf8813c3a413af45", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e903de2d83345febffe7b57f40912fb", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31f7245c8f5051be9fab9555c653a778", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efda46fa7e5762e99ac136fed4c127d2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b6ae1a55193b4fb4bb78cddf8fde3ee", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf50529388b66958af3cf4f698ecccfd", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "499d7113a9bae56c5fdf3bc5e70c175f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9eecb8b4a6361b7ce141470cdea787bd", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17b564a34a569c3b61133ad8d8d3b156", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bab4fcd0191fa29793870e536b0a422", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56318d4e7d4a4e7bb2e64b0c96bae0e1", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a125eaab70979b2b2ccf4fca07aed4b", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92f2075b440ca57acd024132c503a95a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1bb16562d9db8609459860084bde4d9", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "640efbe369847d6c13a408ffbee532da", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "313b9cf0862e7edc43532fb7139ed2f2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a1285350c77754d760c17bc494e89d7", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4307fb7a171f208660413784ba6fe952", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d93596f615296a9b309cdc943846aae2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac0cd817d4ef2e24ebb803f1a62f7a8d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa572e53824f7503e616bf3e4daf0dde", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbefc53b83ea68936685c88f4b65de46", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64a79e1fa7fb6afec3f00e9eb0e772c0", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3e083884eabd8d5e18bd558e127e9d2", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9795fe1497b329bdc57e317fa5b4335", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a446cf89f72ed763a2596dcb765607da", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "792a88f04ed9c72323964a9a383314b2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8ca76ed3e071e2cb7044283273b7f8f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8d93c8bb9ca864ed057211470ff63e4", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20c58e609da1b255d6da6bf451b26575", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1e73f9484ba3b57260561a109087e3a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd80e9a20858cbcefc919e90f6172ef5", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "162284d3f4fbc2400d9a9ad8631329b1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34fd872500843ea90a70293ac8e8bbdc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8450547c0875ca999a6152e371c68cb8", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83ba89f9d5a26fc6e8d4da71b5c96000", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8033183d357e0541e955caa49813e06", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a6b511788204b62f8df043871ab16e6", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7d9f7852ed22aa01f8f8f2fec8a0789", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83b1ac9bc9293080a86e64ca64532b9b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d30ec510ea4cde1841e94ea579b25dc4", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cbf6a0725b4d4360069ee3c782aafd3", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02c4298b7ba2346beea0205bc7fde848", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f747fa9b8ccf1e282bfdd6448555c03", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e5f0e5058251fb809559706b1458fcb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cd52a6089d922a848c06777b234cfea", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10b3c31d1227866815608b64afc81d35", - "notes": [], - "params": { - "flowRate": 7.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0fce9e3e991fb072151bf01c4685c88", - "notes": [], - "params": { - "seconds": 5.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6e2e0db058a73fc27e74fbcabe1d6de", - "notes": [], - "params": { - "flowRate": 11.4, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f05d60b67a6014aec65c3407ea6d27a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18160493bff521ea77a657a75a7fa88e", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5ef6475d83b795f7b05b623619be241", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2331ed1bfa4c847f01a00f7ad29c8c3d", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "384275bceeb2fb54e3f3c69e790c2a1b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aaec8812f68158fc0da99cd049c5593", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecd73167c091c5dd900a26cb36541bd7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b13582082947a23b8b04cbd2dac0ae4d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f262f19b5ebffc364e6a6f376d2284d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f79f302a1558854b743273951ef6b74", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c96884e6d42a34f86e55de191016bf64", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab33816d80c70dd4ea6b461877a4e4a7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef5e7bbd62ceaa77e31db111e4f05980", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13192a76ee7de58ea2d26b77844f176f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dce2b9ce3244a3aa149582a6f33d5d6c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84b9f3df24beb73b800194a55fb4f52d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c909db5c306da2b2ac325abf2f4f1dd2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f01810828b7685fe7463e37315eac73", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5819102ae6b01a02c25b7b46a159f7e0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82b92a933f4ceb0e931107e3387b5462", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0932a1c396089bb10e86963853e2020", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13c66b526ee10bad1a1fc320adf33dfb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fba6de66a2c110b567102ee21b8a50eb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca04bd2c6004699a3954bd1add6298bf", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77f29b84d6ee8bc4aa3752d79801f1c1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f7d97c5724fe2068d432d09a5b6692c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "759d7ad6e47ec29d12b50d595f5370ba", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bea028dd09ceffb4a9a0ce308e233412", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "def63de700ff272292c0fd068925260d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "719768cc86eaf879f7eba07a4e00498e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aabbb674c8cb76ffed0b7e50b88a0bed", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fa1799da06529f79cb2f473a9f84947", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e18bafdbc501d539d7ebfe26b2bcd86b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "258c4beac0a15b4605d088c86880798d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd0040946df8f539768a93a730850319", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b873c8ea00a9178b925c6cc2634cc07", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dae3cd579348b0993a1e9dc281126950", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6868883cc0e2de37f9547a922b0f8c04", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83a6955ef39d0768802a04979cd958b9", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2055ab4f23941adb126950c5937b3eb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62c8ea963aa88a811dc6db205752807d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b191c74974d2070110f823619754205c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86735dfa607a8dcd9a59e3b86273a6b7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbbf968b14ed6baa87b869e6ea210472", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1653e4f84aadbdd8505af07437c7bc8", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dd6cdec2d523381639c53376c581775", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ae0546aab967cbf992c6286cd78bc35", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c115b458a2892dd9b28ae67891bea6b1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3963c022aa00152b0b8f6d35cd3e2a0d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce359977ee88a63c72f39c73b6cbf629", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19dc258537a836094fc5ed3bdd211611", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc71b322b910523d5ed7ea91041d3241", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b26e842b529a897b36c2ac7df19712bb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0131d4c03e6da7d4189499757033377f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ec401f68b52cd0d0b6e8b18675fe2cc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "955e0b6fcf060f0f8e69558806797864", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4716a0d5937137f01cce037510fa896c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b25aecc6a752c670782c5eeb2604caca", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c5f5c4e71b3f45c270ee4247b13e730", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f3cdf4d2928d18b9bbb1373b122ddbe", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d534692717736ffaca200ec39782848f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afd1f35ad246af89e5e9bf99bd932fbb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4965f344700c6e37d3805c80b912a912", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43290ab5719184970b66146bcea15e3b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bf816683906e7c913c45eb60fa1da6f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e583fb66a03fd38526167163b0013238", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f548692fc2d9c9f4d2e30a8fd2a3e323", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c233cadf6c551b2a534ac1f26d8331a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c29dfc7bab63b95e3e142dbd5c79cb88", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57aec1fd2840d10d4ede7e4f8d47c073", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b03e1e9eb962447a6a9e6d6126b56104", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd43cf1159af41a12625b75701bedc1a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e08b420f9f445419816f04d898ee6842", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "686b54486b5f965641d2b173a724cf1b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c878d79a969275c478ef737182f0e97", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0163013afc39d6e96e17b3f45d7d6e09", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c4dae4d7131968d89db0af2dbdda0a3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f594f916bcf55ad86f22a1427d20ff48", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90b2835783c5374a5ab8d9ce978769b3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71cb84daf286f9bc1a5e70da578dc422", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6e86fb1d26282bdf5ce098cdebe2bbf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "caf8de621e875f0d6f5a2d7fa092c7d3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fc4297aace7b0c9c63e6a914f921cf1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7878cc72ddbdbc404930b41e472744c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4898819789c59656ac47916ea908f5b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "146a4e5796e4bd21e118b04ece185d42", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35eb6bad781138e85203a865dcb16d88", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2273a958b8384e56b23912a6b7e84493", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a80825356fb6d65f9ace862803bf301", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84492212426be5a40562baf611e68ae5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4fd9423afef5cbc2b942ab49f4db5f5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b74d179018889a68b4e1235ba13fb5b3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89abab920985e388acd99dacbad2d62f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b247cf004f00ea10a370e9723f6e100", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d04e3011ae44f026c43aaddca1ec5e6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6b0cdc93fedb14bfcda716b4be820e1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ded74ea63c46198ac304414b630222ba", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8202a306b4968175d67c5100ff27261d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0838fcae9776902489866ed2199833e5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "178ea04e4c579834e66efbde482d41cb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "395cb513df336b3db31ecbc46dbd43a8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "330d0ed6ca1bae6a6437d279c6572171", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a29f7d685962ae5d52664ccb1cfc6106", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ea29a5ab9c626a3103696a224a76ae5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbba17d3075e1f529eaaf457ef95152e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b74f231dc43e7ea60c61ebaab3f4b6e1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "571cf191330833e1694692c32e8fe081", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c94ad52514be65d2d1427eb7e48ec64c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed309baa6624b154f930bfe5cdefde0a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ea2862cd4cf964f660f2a2e448fbdd6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecbe969a6a18081c98cb888fc58817af", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38cbb2f5f8865c33d131280bcd5db7ae", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1777e98320d2ed5d6ba15613e96c32ad", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1981cfa3c32687cceff31c6ada59af93", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aea32fee5216ea21f9dbe8cf4537e365", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c6d6c9919ad60ca2e0a65ad1fb48a5b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94ec299b1fdcee432cd0a382df635e29", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ec3d02ec6a1c938e7f420778b49a1a6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57f694151d53772c03a43d9b9e221bab", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fd79cda660dbcf41e2613a8a5763404", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d7f0e57b59a21968a9627f8b5e0c254", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70236ed5c2adb334c62a43f801db4bc6", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54f93407af6b12362c97977319b9cb0d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e50243c30a6b949b9572792cf991aa8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04472f9892ed067157eb86dbf4ff3261", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d532cd1496df31df308571be5eac286", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ee85be869029cc9bc4e09fb79754fc9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3458c979502ca2352566d147cff912fb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5f4d5c33b91be51e4d13b886222e1be", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9e56ef22f056dd3bde07deebaddc050", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e083a5d9623a061d7ea83a175b9f244b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65d64fe3c70b4986a03c6aebbc7f9698", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "535db1854221fc7fa21eb7f1cdd9ad94", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d949e7814ec60e23d1b484e3e1a51b0f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29485a6d320e94452c6a79e0a3d0a785", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95cc1e00abab20634c0a7c5c3deb66a8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccffb2ee0f71bfe1c6d6752ccea073b3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6778472f2b3cc1603b5ec02a4ee3cb7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87e1cbfee47051075603414900800df9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6645bb25e4d8f16df90d973771503c34", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05d51cc727d56d5bb444cd382ea0bebd", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "993c72b151f5ab88cddc80bebf4fc55d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "679bb7619cb70b6fc329bb79c76eaaa0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f4a1ad812bdcfa30242a4f41a3b7747", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de9578362a20a9aa71c96cc90d851442", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f902d78a84971cbf1b56c20733f35ec6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b185ff8b63e1bc835fe13309b2b46900", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68e1ec5e3d35a7e7a4247aa8fc6af324", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e747da2fa252dc6f03848eed0c1f276", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72527ec7cee0485c9f6aaa138631fc71", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "089159371f92ebb16eb2433299a2387d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f944cbbc6ecbb375d0665be9dfe589e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5607d4510671c54be572b20a7b95212f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd14d4e6e1f57905f53f44d8b39c0172", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23dd8f274dc8505b5bca692f69e3df11", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff54e8912296471f8d76fd5ccb42e501", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb76bbe992dd4ba4b8716e5016395ad5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b49a13f327b22ca36357f56074b4651", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "249e3c6ae2fb720d10e3ee5bf5424228", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2de7dd9d9b47b43edc508f760398801", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b887dee38f70844b30f7db62f497b7aa", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9417fc63339d87e2161489a34eebcb14", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6273fcbf5e03dab5c741c925927efac4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "faf5c3e81897395ce61cc1a58e4d43dd", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "409c73ba41bc150f1f2919761f0a0bd2", - "notes": [], - "params": { - "seconds": 300.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc3fd0751ba6d79a2b786a210d2db48e", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54e74db8c266831b3c2ecac6de23bd39", - "notes": [], - "params": { - "seconds": 240.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91dfb02b99ff08e08a18591d1b3dbda4", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterCovered", - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d3748dabf6760d60e82e0ab0a8e7192", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "901cc78b48386c7561377c36a841bcee", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d3487660b85301e02c0fd4640afb63a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "faa8d7d34d9a8af526029e2146690d2e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36ee0356f21a9a73bf94fbcea4a5cec9", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a325af23e8b10a725e267e8fd4bd28a1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5a69663bdd91c2cb22cf7268ec1cffe", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef238c28e698a12adc492708b263d6fc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e1fc19544f9a6aae8e433388d044c21", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33ada757122ca3ad5d623c336e915886", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1f978ef735d9fbca570aee13e3f3800", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e44a58ad3ee29cac6420a451485e14d6", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b953ad1f6cb84885d4d43591732a44e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d3a99f78193fb7861e12428169f8a57", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec91d17040ad4c020f769a20232a2aef", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3306747b9bdad7406993796f11ad9737", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd346ea5b3143a6a1a5840a7d4e1b760", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "472366251f81808e6c3076a86426fd05", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b868acdcb01a78a85d4cf4160fbdb29", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1377559d42eb8192b384bcecd29d5423", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a59ea6a5686b769daba233cd0a6f3abb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1e63c6b47a10d6e371fa62ec0533075", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "090cbf07be26f8497380459bf67bbe55", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e74389363739857876e573eacabc2839", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be4497e3abe7b989241a0b1540da0cc9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eaace5059ea0dc5f393d40a3574d5e24", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dc3129f21d9f7ca0b13bd7eb3742cd2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc4c04fa11e66acabd879ce8cfbc0d95", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f26be9fda8e5c5f670f171c5333dda8", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79d0865ecd14195ee24a12b981d68570", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d566c9cb785956c2c37920890f6b1a56", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fba1d6336ec3b445eef4baf2c437a57", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba7115ba103823d33c78d474baad4141", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b658c12ec2b83aeb7a03ac3112c53fe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ac8578274eda2ff41a9130bccc68fad", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31da59e27907773a7df3aeabc79cb20d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc2e7fb9ed4afde84329f56c51da340d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec99ea8bc51307f7c1992be9fa46a133", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c1078071d78185edeadb44a1de635c0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d9bbb23189bab38b193d7f997f340b2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01e9bf50454fe7d14e1c5890b461be89", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c95ac7b8adf40504ff728a661016ba7", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28eda9efe64009c2c077e8bdd6a5069c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57b772241590b3fdab5b7c6f3ade10de", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db9208cbfb53990878a03d51eb528e25", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "022b6fbc89ca83bb0c5fcc1ae27cd719", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a1424cb2e8306794fc4ec0dfb3d5b55", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "551a82c843141893767aab2049354ba8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8abee6cd5a7bd3f1ea986fe71f78b64c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e91ba38681359fc30b793c71818e2b4a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4eb39876c36ac794ca2ad8bbc4fdbfc7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac63828052250f3c34d9f2709c77dbab", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd55719672a6f3b19fe900fc6a8e9319", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96f34819403040daa9c36de5e1f56fb9", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7056e21827bea4750b346a90c569dd1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b203a51397b2427867421a8c706f5c18", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1f438f596f70c719c62cd25b235586e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0fd0b5bfd11ac0784988b049bebbe84", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ca8c7b29bd1e316e4379dee30065c8b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd93265ca8c5abc306c8c2422db5a0e3", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c1f8f3a80e3576cd0a07cec3ba4e2ec", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdc0717bfdf3f959ee6da515ccb45278", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d00705518547e71c545c4f0f30e4733", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5bb1675a35c247ae1ee631cc82953b9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b0e9e0dd87b2de8ccd51fc9adcd8c20", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "044231f8c0f9c25178de0f56dc5e46cc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1164d34a392a8f71f4fac43289c1a38", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "021300c852292fa86d843375f393174f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5051771485ca3b69518375c241613a7b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "818392b01b124d96b8eaf47378471eeb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a98eb1c2c09d03743a51a8e11ad48d03", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f33f94b2b31ebac2724a7577f50a1484", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3148ee20ad48527dd48d105034c04b3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f828ba0f24154edcf2fa894c0b197e00", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80d9d02afe45f4ed60340e0100abb210", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3e5b856221527eb976491590cefae13", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d604945cce6211bfd861529ad8d64d2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb4481b9e725676c029aa87e6afe824b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50109e0498a99e139684fb96d20790aa", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37cb86a36c10cd32f8afadb60a851362", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba37d04a9f4a9a27f7c8bb28e0d6f237", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b6dddaea7a00c910e8c4c97877af6e4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd4395df7d8220401366259e53ebc29a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07fc7454671f5d947c8659f829e30ca9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf21112e158c91539e6e56a38fde5ba9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1eb2a73b8836e561dbbaa34de8cbe7d6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8cfcbd10b70afd157aa295e135173fc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9b7de457b4ebadbf817172310f9c08d", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a428745b135285e2d343888f3f0f4504", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72cade4b84f5c6aff7c2b2d65295cb68", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71181ef2b0396c34bd6387d4cca9e196", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecf6baae5ecd6630b0bcc5e48b50c231", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e7adafaf8b46cb25fb6dd5e8d549b63", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cdd218bbd0932d91daffcc0ce11708f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "844c046bcbf0c29dca219e5057692115", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e544d1cd992f215fd63c7cb89a1861b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6fde72220a9ba7bca354f09b1e8dfc22", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91794bf17c7a5e5f860eb45c76e98aa1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4bf85cf7e8e3202b751b81ad910b5e8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59afd77d1cbb7744194248d75b778adb", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 107.0, - "y": 141.12, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60e0b1c7899d07b6548d8cb1abc685bc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b284c5951ac80444dfc63b0166e6bbe", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e373d225820c9078f821a6959217238", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df1d68c1260bcd67bef7f5d4f79fadc4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2abb9e8b430a4f4a69555e46f51853de", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "549c822ed8cc751a65e7ae5e45749d57", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "219b3ba327398021be5b70291168f5ef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0858cfe0e0f2720e80e1d3a38ff61d1b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0c7163f92aff0dcf6f66ac497799b0a", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b85897f9b0fad7a13c1b185d557afe1", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bea044ee60ec9a8692c4f1347fc620a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b44fe61fd9e4d8c50cf611d35fd88a2c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c20ab24074bdc229d0a9ebc84e73cff0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59674a08863d6c030a70c7b9f4e2a276", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b60b047f658af9c0630a9b937efa14e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "889de05363fb19441c36e3c3907eb2b8", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0cf3866fb0a065af86aecc16ce5a27c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b49c289dcb37d21a868a76ddaf80bd7", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9cafa66825563093b0526091918f1ef", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e3c88c875e232672d8463da4de2ee34", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e968e9d43261965534414b319807079e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69b82dc8860621e38718f2450201aac7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6957f35f3103f39cfacca4a002265a38", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "842028aab769e2ecd424c769e926d593", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb7804876e97f5083aaa68c94adb3f22", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ae7105a59ef4c5d1b0e00cebbe615e3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06905092a5210054bdc3e1405afe73ae", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c27f29a2d648c71bccb8c4c8feefebd3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61d13bc63d57bcf59a62f483d7e73883", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae2f1aade992679bfa72220335630b71", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aded5ec038f3f0c2746e598b0ce5a37", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25c1a01888de5c6b462a4d71085466c9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9234442f94814bb3a58383054f7ebd5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9be369b410895c1f3c0dad943d9040ba", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2080f1d43ce32f21c85f3aa892b0c1d4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa3e23ad76a26583e137d68c6b635b33", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b387edb008bd0244fc9f5041642d0c84", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "069cc8781a88e5f5dacf45521847152a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cae6ef0a159f925af3d446e628e26a8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3d70d9993bb7863ffbef94ad3d7abe0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "641407e8f77667024ef7263e12521eb1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78e7f5bd51d9975c3c426a0ff871e643", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3912ad809b41655eaf5a7f686877999", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d78bc7e6362528e35ad92491f277e60a", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83916346135029d132e4615edd7b709d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b89cb34de6517e0e67af0ccc4bae2e3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d43521099702be9150bcb36be60fa7f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8a0545f43601ad0e50e22add6ea1040", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ad827a49aa23801aef53ce114190c1b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57a085288285753630349c2170b4237b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "963ff22bb7c4986318a0f9dfd2489d90", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1bf10eafbce030d9fe068cdbadb57a1", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4fd82c74409acbf2695a508ba25ce44", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a301869275ee25bab150b638aa72f5a6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d6a694c4e56692442a0e8495fc29961", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc5051f35374ddee44601d2514ce831b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f15a3c7f937f4d8aaba7fa126583da8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "892e61d846a407eccd719828cee02782", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6237c05129aea76c1807977629a7642a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2314791fbf5e1094c5397f7f56e91473", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb410f68e576c48ce49971f84e09ce13", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81077cd4af593576d3388ff9058b6ca1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77cf9f01c514bb7a01a66e589974c2f8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2a50961855b7746b3d4a0855ff1edb1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "677615274b955da9be529a235f1a3b84", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99c13a895edfde2e657adf0cd9d2d29c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ac6820ed847a500dbfecf7dc62d086f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd0a55d736e335384e05ea56bfc5c02d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a78681e5b8eafe31373b6d2253645670", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c989b1a43cb25905be643eb2c09314d0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "371626b0f9dcd8d0a35d7e9ae6d72af7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 268.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "751c328789bafbe91e36c31868119660", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e6946ff17fa5b48a6f5240564206dc9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 268.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9903704c6ecccc2ad4f4933869711d34", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55e34a81f158875e68013665ce7ee00b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aac53734543d865ed69fd0cd72915a59", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1aea13063c19f6a0259a968f37e03f9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "309d85300db063bfd123406532574fe8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 268.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fd02c46cb74b28a2ba8925e20e34323", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c6f810d05f65c5b944d819f5e3abdbb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 268.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "993fd96fe8cf4a95cb33fcd869d7631b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45d8ac1e9fe71b8979a3e0b5650ab5c9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffadc051d1870b3c359942ffa0c62f54", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a7d29d8ca4aa48b94aa710a73ea3fcd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2250acfa73f44908f77db2ac531458d8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 268.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7efca82ff0f96d64b2c918e76f98d7f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af6811376a2fc5993425818bef63415f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 268.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "990db8cd806c6e84afc8238a7c33a4bf", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24c51083aea6032277c96c76b1cb1400", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25c9b5c9b169d4838a615890fd8ae2f5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "219ad9f2beace296daf1bc5b76883a1b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86ab429befdf1a27407b879a2c31c35b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 268.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "102c854c7e38fb1942f422317d17cc11", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "660b8f677211a5188a7155ace95a7298", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 268.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10fa8e6f65e2622231bb407fe9d3b13b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4237cf68ea6b279247d6d58ca37f42a1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c95a4cf683554084f5be31ef5602a91a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10cee825141a253164b78ee61a82c7ba", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de7a9a3d5a2b27ec35e47a3679c39279", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 268.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a0642d5bc8804981479b3afe3707260", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b990945d07087257131c166d35351d5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 268.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93adea845e27b0c2d34b6df3209d5912", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65f370d2849229ad5c428f67b86bbf27", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4faab5b96f6794b502a28961421c1c3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4eb24998d54871b059c3e6011d3b5e1a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9699aa8998110ea1aeab0b037946bf5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 268.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11f3a19cc4c9309b414e00e3813102f7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2d7341d9e4a113772cbffb9e55072cf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 268.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ce11c160cd27d2efb1da0a196564679", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ad622412cc90f05ed586f5c98658f95", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2aaebb7bc1a7076def917642f6ac8a3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5584c1a6c2dc215126ce9a36ebbf3e27", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abb80a5e454b24d58e8e1de388a17b79", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 268.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "525c2ebdddc3b853aa9ffb1d6658d431", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9150d9af4925608fde961c95d5158c39", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 268.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd99309ddd94b836d27a9ac69ca08609", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bd6ba586a024dd4dcb7349f309a18d2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b93553d182d777016fd1ffeed12a3001", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ecd2fc161acfe8b377bc052b3deda84", - "notes": [], - "params": { - "flowRate": 3.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "548d187e8433bcf540833bba72da9be8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf8b2e5515f594bf4eb730ee015c286a", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cbe59c2ff0fa5882517a86fc8dc6079", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f77289a8d80e9ad98678b4a4eb322ad", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "569315ec13ed4071f2af7d3f8ccd0a82", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46c0630de320434de0e5f3fdc856844b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4c4bcafb126f520778c675d656bd8ca", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc4f89c035c627519c3bd15e46147089", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0619059a07bd11864add0c5be23b434d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acd0b1ede3add254cf01b6322cfd9d8f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f949dbbc9b8aed81b7754c5f41cb838", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c86f53b2797b5be0e840f1f6c87ca475", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa164fffb7dbcf87ed10bac5697302f8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cadac851b7fdd5fc1545f341a55b7cd5", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c532557a44e1e8487393f421ea0a845b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5710ba84a43ce32c2788a068b47b6227", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6aa45fcf2b6755558eb4b5ce4704a06c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "738e36952ab8c239d436bba8de829dc2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8269e6a695142f18b9279b3f03d26d37", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bb4263e3fdb1e115865a2bc8b0cf2b3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86a3fd8cac41783cb18162d30a63982d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24c87d246887859202462ea61340fb10", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01637cf3b7fddc974648b639b4ddf1d1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd30bf586ebea7512f11364ec00cd29f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c58f2da9ff76f8a1564028c5adbcb61e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef6d2dafcad15c48c5a92884e57278b0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4075a374ea4f38e931e88d1b8810b577", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bfaca51734d825a38f2a107b4a4be03", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52351442476b24b37b8f2fb80c244d06", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4674720f606fb5e822dc06743adcae0a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7266f01f666f7fdd751d6b423ad49605", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "175cfcd9f48d00dbb8085174c42ed706", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6d88fee959a2e650a922b272361e849", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61f004753bc176ddc6655ecf0cebedf1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60b2a9630e5bc00c50ffd105af20c507", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60cb0d2b3b9abf3e4558a3d716ea6cf3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd0ea4b690d03674f62aa7b776c3a008", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea58195ca0ae4841a1967ff485c8ee96", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bda2e61e04d743e2649d650169ff3af3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41d5b24619a41ebdbd0008b4480887d8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc7d75aea45304e9cef422d85d9551ba", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46c66f32fb274df01b06f4eef413f793", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89c9a81ffb69d01cbbe36fa9a0839afa", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5653ea5659ea84dd1a68bcb12fe9e710", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08159cdf73d00410f92570c49c788531", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15173ab87f528c47f6a65b2ad521a25d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3a84991044e942c4c4a83004a8d0518", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35cf7bc5774e294fa466ef57271fd8f9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71bc07836eab17a97ed201d1014fce8f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3add30d9dc024d0be1aa368fa5bf6f5", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06b6ba2222eeb597fc5324c99758f6be", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b9ed115384cb3d32b1f50281116af28", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5561bf8de60220c9b0986c27fd6239c5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c16da06cded3dc02b9befbc4e029e74c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80153be70bccd861c657b320b8f97769", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04e58b85d6da9346104ab59e454c00dc", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14aba5771205f2bb37723567126a7691", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f1cfe5845467afcf8f88b6674b2a839", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ad174b887753bfa7e5c7ad9b6964825", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "484a1d37291d0498ce129542f7374eef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea5be5e13491d8c3a757d6a89a18f2dc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e367ed640e85a811e7546a15a0d3acf5", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15f373c28434843b99663e5da4ecb86c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70fd696cb607d8d13b6581ee53fd0eb3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9ccffc7dcf7b3d04f35cdc7d983f268", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f90d29066b77da47dfadbe4835c90520", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d491cb90a0b3d101d46b8b1fed438c05", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e9d093f7e3eb14887fe29190a593826", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0210e7cc12a8065b74aadae6cd607a3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "948e30309c0cfd546f2f775dc05808c3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4487213c83b630eb298c6dfd252fa751", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66fdfac604ae84e85fe70da6031deaa3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "998f09712e71976a6fc868fae660a264", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ce4e4deeccb1084de2bdd8935386a14", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "292dd0ac69cf9cf57d76651d6afb9c82", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77ba579b2244e71e68964609b8537afe", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae8e244b1abb4094ef138172b92416fd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c132d983e4227252512ead36737a017", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "803e0ed770376ca1ea7624888f602f16", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8dd869795dc514b5b1c5fa056c07ea80", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c18cecfb52f990ada8b45b8ee3800ace", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f1a96111b28923c742a10700bda3fcb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42f2117a68bdb5cdf25b0bb71e8ff03f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf73c954431fdf65afb1e066e7ae6539", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f59ede7924f64f083f02c15f0793087", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "614124de2c675f3e33d90df54c1f2728", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47dbcad1ac8cb6819639d41d6337b187", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d74c5c70fe9dcf6cc31db90b44b8144", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ade61916cb30b60a6c51670c065e3f7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "544515e9c0529457c6778a49406d7855", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4d827714a8b02f507ded1d87cec4f43", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed7e3b51cc3008b2efe5eed0344abb7d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c46797cbae2f2b217834cfb850e5d4d8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "736694fb03e27608bbb405078e3bb95e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44b48e9ce24859103e86e42914bd65ca", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3a0e120ff26e087167b23cbf6939498", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d05d2753d6f0aa4abe851cf8d6994b5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05ee2e469c5e0fc22e2cdf4250ef9050", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e651b9cdfeef70db75e5ad47f125360", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbba86dea560f3d6d88abe6a63f41fae", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e72af08b8b9011a4b01d84ce0b6fc6d3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d3e40cedb53f588c97795c01fe1acf1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab65d01f2ee6b5ece8ee597c58d414b4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68b8a6058e6a8ca6611e2c0c01689bcc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71f0dd6f5609681ad93a105ea7d0a824", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d1a2dc444a40b034cc6446b476d458c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43157a7cd8c8d5050d87f13ebb25cbd7", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "715678fcf1e6e5adb687c1cb686b6ba7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4b7de26f843eaf92ab84dca1c17b200", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0c3ba00ef4fe69a7e7b7c1ae8a8e0fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 259.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65d74b726e8bcb819771db8bb5fafdcb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e9054f7abd62b820f7908f1d766371a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 259.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "089818472699013c6807eb83e09840ed", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c9b98e3568a84d26dea7f146f3e6180", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce2e1f6aa7a5c106c75fa4da85ecc042", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a3fd00475dd5d9b5c72f4f3410bd12d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4c1f941f11a49dff68e0b98ffd8b86d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 259.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c284f639aaffc69fdff506321ddf402", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11044ff60923a01b7c39ee20a7a423d2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 259.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67b4655d28536255a1904d38ce72c257", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b307cd894a9699eaae8070a917a9f3c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8c08c902e6db78b4c883ea076f193a0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e13e34b4e454bb844a4079d2c53fdc35", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa7a75dbdcbd641011fda9e43e90c77c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 259.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45a9afabe8cd74f4313938453a65cd5b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cd4d5e2a2373f70eaf94947cf1cc330", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 259.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bde4c3bee55d2def384322930193cf51", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ff995ac47c0b14705a6090f0042b251", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59de9953ee4520fa2e712533a67433d6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1a2d3fdd83d227f858fc4d34feb5d96", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efe5dae04909099ea079080bc9de5fb3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 259.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7606973186ec74efc6d9d13fa8acf51f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63b7ec15cd23a0c5f3a5bdba5a840930", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 259.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54526c6d32fb0850542c5ca287cc7462", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c576ae8eae52d7f1b297dd50e7daf769", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e293c32ade398e547feca667af909ef4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbc81071701e096c9d01f15a303b5c7a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e400fb91d98a96be39095aa51aac5c29", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 259.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5787be0779f3a2d89be6a9192e0a7c32", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c680238e31dcf1abdb6e99034813435f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 259.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0af533b2edd36d346bb7a94d71764784", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f270d3217f0ec9a068098fa078263867", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8aec1cbf66a3baaa388e03adbf6a76d3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6665a9de761d22b0894748bd5a4c87d4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05417af98ff4c98bfc07731a82dc7737", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 259.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2a0445a0eaad2c515ad61da3cff4e21", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb70ae9c6385641243cf5e8dd16ebbd9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 259.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c276f1c941c67227068ddfc8b4be8b88", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "395f8320775c206dffc2c021b8a6a006", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a304c24db48f747f5785638fb5069be8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6b5922de501ee9989a1d4487cf2bebe", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a0dc4e311cc1da9ded41efc4cef8719", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 259.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "315c694534e6b1d7505f20542c89d9be", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.749999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 35.71000000000001 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20840c10385d2d137f733afe4f415837", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 259.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0c6d4c0fb368299a5c3cad9439bbaa3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51f9e577d8a5327fb39feaf7463a632f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99b7b8eae5f3f4d92c3fd36f62b5464f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9160bf25dcd91f2b3f265476c39dd7a", - "notes": [], - "params": { - "flowRate": 3.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9177c8936f0bf4227be16269ba4f103b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "959dbdb620fca1137d54533c125de151", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f133caae3c10e20f5661563b531952a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c578e0d30675072019a7b4606c4f1d1a", - "notes": [], - "params": { - "seconds": 30.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78c1378b52bf55193d9cd2cc7d95b92a", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "D4" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterCovered", - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterCovered", - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76c11a6d4f490bfe91889d80f8c718e7", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fc67118608f1da653912010a17ec1c0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc04916c4d71be824658a9f6d8dc7e07", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e093fb4ce1b238f51f4db0d9ffb9c2a4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cca8342f339ca9bb0da8cb556e234dec", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69cc00ca3d740ae422548ffaec9efdd1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a41026bd88d45dc1d3f6d52df63da3b5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20169de0fb6a14363227c9182b6d7666", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "361456943152882ef77e168874fa319d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd2932f1adf751bc8c5eb9471cc73329", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc5ccc75506755d7f3f89778a167e822", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d6685a9f033930dd3cbf52661afa87d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f03ae7791ef017d604c675641687998b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ad366ec802675080a7a5e6c0ad4ee1b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ac68a057a621b52d5bd083c0e4bbf54", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9d1da119f3932e9c030ec7f477936e9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28734f7bc4d78dce18d9b63eff4e993d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d20c813190fbadfeddc397409284b8e0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f285be94d6d92da4883715574185d80b", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b84c5835b5025d94ded3ab7534e2b878", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f64c278e96449f17cb32785f7dff893", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd71ba69c5bf36ec2adb5b5e9d60d869", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b9107f298ebe30864b58554b73506be", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbbb2633fa3072f6423e1a80f4cc466c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51e70c27c4c82aa57a700484ccb7a787", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e301c14be2e1a4d421555805eeb4b2f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "663a115b7c9c83bd25a5357d0af729e0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0042159f02146085cd9285960560ebaa", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e67fa65bc3525fa0910fe10a49263047", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35bc1f7ce01ad10f39314fa4572acd7a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8b15f322729f11685dde8bef9dc05bf", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c628cd709de7453e732b5d55ef92276", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d9286a1c3d5a42022284495bd4ad398", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d998639d23c6ad6e1f809c0c6cbd5fce", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d50d95409ef4aa3e69ecaa64405c4892", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecdf9f60c06b0443eef269d196c370ec", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f7a5dc9af6c76bb89da9637c51d92f6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f81209d1bec638bb68178cdad06fa43", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed76ffff34a7e0b8ce057c454d88bfc5", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a7452557128e3889f768cb4a186ea48", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc8bc48d0d807e5824b018dd420251d0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df017bea718ffd30929b8e4b0b06583d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8622e1aba7fd42c30d95a5343c034a13", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c2efad2b79c4a1e84f8e213c13ef370", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b8f2bf239bcfb98bbbe329b9e15bef4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f5fe240a1c99ffff1806d54dcf412d5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7352a54bbd9c86cce1b527d4ad771992", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6da7082d7c25941b5455510278b999cf", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0655d21b533f86401dd9fd791c508ee1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49108cde89492b148ae732e52407faaa", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4eded44aa4b0fe74748f0f4e75c2c6c1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c38af2fc0e7a64da04d012b0c330a0f2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "282b9bf60eb152392a3e5d4435706acb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "993ab62b8a3b3e2291b52f80c961753d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e555bddc5f9399e1232c4fc7f6a5e126", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aabf8ca4d9f268a913404d25261666b4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "913a835135260f0a5bb227e7b66507d9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "156952e0ae07461eddb05c8ab15b67dd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4405cdaa9a72e72f2b5abba9f6434c7", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "325ea03f304a09d767fce4a4ebe74942", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9724a6e7adb84d0e9b1e626c2a396cbf", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8bc63fa596ddebf63aace6a75c5015b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74df412fd7a0a830746fe3b40de8e2f1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aff4bbbd6c26908a9aae9a2a3428e8f5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d55c6a7780af7f15f7cac41b90f3353c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b1b9dd050c39e0b5cd157d079742679", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d89d3f979c9eefb2a1d6da0d90cb3741", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd725ac52cb21ba2d61ee281a34d32d7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dff640dca33b2cf0731848746a9841e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26055a84cc2bb11ce7087985e1bb5007", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4240b6d1bdee4288ce8b96afdc567e76", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0e921015c85ef1559c4882e701fe02e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f52afae8daad189060f643dd857148a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ceeaed64d3454836c6c966232839e78c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ee0102aefdae30637e48a159d2b0384", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbb176c65a4c26442967b4c15cfd5950", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecf088ff8b7d3af7e3ad974f79b40c7e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15f5a2810afacea6fb49b3f480fb06d0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b6a68bdc2c018540a727673124ad84b", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3efb15718dc5cf2f3fe41eaf1991069f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a73cf856652d0419b08d447f7b451bb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f2cb5219c127e92fa8ea3170cc88ac2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bcceeda30b1629a156fb2b88c14d499", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "323aec0536ba0aeb944f5e97fb14a179", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c27e385e3cf62c1c7e53c82d3506056a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf75218b8ebe84770c9d4fcc30a1d6a5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f72e7ea0060471bf8b064087f0bc01c4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7f6bd3ac34e292afffb24d32f20b64a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8dbf51e34bde484fe11b5b787216e9dc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d69c8f396ae1e1d118146864d99d090", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b8d4b57d6050cff70c6b53e5b45837a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e51f7616cffb262752d875833c28b33", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "477b0b36c0296a6360f8f0023e2cba71", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df045d406b6baa7bd8cea5ba28b264b4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56dec8c52d2c2996b62e78edafb6b475", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99be5fcda5d3ad6a4dfcd626241db893", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e53c25db7f13fcc7cde4b35f4a5d3db3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3e8250a353eac0f1eee53755bce3a37", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6c1eba16834532f7dc3424cc631f19e", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e71ff58610db799f4f1ada5b5c5d1c6", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ac0e06fb6c2ed82666218a4883fa1a5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1900a5d50888d98be585ba3fd6b58cdd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "998d7a369b9387871004fb086cec5d16", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84615371581fc7cfeb5c8fb2c2b23993", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b5b9ffd86d1c426adccd89f96bf0f51", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b0e54377ea6fafe050c8ef4f1614ff0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00df5b7cc73006e1bdc3d40b175d37ef", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d8d9f581c4a7f3abc6a93b414db102f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9796aa21683fb46a2e825e8dccef0e94", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c160df534334d864583116a6f3aff2c7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "517b7c6e41797cb45f5eb790fafe24b5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9613a21cd24736abf9c4fec54c44a701", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e03811bf4fd06ce701afcccc64c67474", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c80bd0d106183e753fd8e92a73f1cad8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e352dcf770322bfc45aa34c32fadf75c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f4759bb0fc7cc2f2c69a5bd49a5a390", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ca438768de069c827b09e1038fbd51f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e19d7be7b2851256ccc19b51943034f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4c1e0349f7f32327d2eed79de389f9f", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e492c5f9c2933c76a15a682e9a4f8020", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9777287a5efe8cbe7fa30ea418c7fcc0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9601bc8166404d88aba3e452c8c386a6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b77ac7bdb3601d25c2505b2af6a97ed1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6798663257d09b781e9467e6abb4928", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ae528f07594aa8d8cc099a794e80c45", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4275eb1d587f41fe99400213122be959", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92cb2298535782b5c6c3456865b4cba4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee99a39b38a68127b384c220e9377153", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02b709411ddee99d6674470b3c03fe95", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df4a2686fe5a1832d2d20e862e5e2aa9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b9ade35884ba5f23bb098a2ef7a3e44", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "081213a4cb7d94b63cb545347f736ab0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b36b484f17d58214c1bdc5590211f337", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "586f243ae965f83ddc1f5b030aaa8a93", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea2a70ab325892aac5e5887841cbf15a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f4b3f348f121dfdcfa4fa912fa66412", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9faf65bd95b0127a65fa2f447b864d90", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a67b45ec7a5ad179e81ff673002155f8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc6923454a042b088c220686ccfa53e5", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9158645f09a2a7909f7fbc96100b359d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05918297d19e3025c291c8c1a0163849", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bf9d9725e5bf1f7d54e184070480f94", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdea7f0f4284454e4e5618222adcb6d0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f35360e18be82e38a2ca70983ff759f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b12d37dd24a45c217c6c44379ed6686", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa4f234a17986b7b0b34bdb24af5d840", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87997504bdf60d2247d8d05a2fbf9cef", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9a78a0637ceeef7013a2172d448ecf7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d33f8e140378b2c59fae0bc4c4f3209", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2289e9cbf1f486866629b17372c7291b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fc1ad458a9d46851875b4872370b97f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77250700d7d938089f9cb32cad6e29bd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5850104e5fd5efd4e6c16d329f7e1aa", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66d41d2afe5f69b8193c81c613f16412", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2e312a1fcaa467a01447ca265350d68", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "542c816a581e3a533620e2c3af202332", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7feba80efada6166fcb3a617662a5c4d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3a0eba80901dad921572f59c10c0676", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c58cf40e3e70bc5a0b0044b25253fdfd", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92a8dc32493f5d517ff996edc8f56d21", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15ea8fef45d59353780bf93520eea7ae", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "065fd57886442304f5855dc37f784208", - "notes": [], - "params": { - "seconds": 300.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80fe26b66d60cd9f4dabe52455cdaf7e", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c69e72ac7886c0e0e551eff42a69ae42", - "notes": [], - "params": { - "seconds": 240.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd97f59ad1f3fd0ccd6ad17b96ca660d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "876a31bf3fbacf1ecb5f175cfb62fd58", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7126c5f211a7c7ea604f0f3b7cc8f30", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8ef95ab6d1b00d10325027b569ca84a", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c298c823dab7e17f74d981081680779", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "baf201aa80ac3476482c66ccd81301da", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56b765cdcb8565a7b0319cc573fb7b9f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b35f5ee81f7b8b5ba8ca7823ad85246", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0f19d35be22ea150db18396d010157c", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4346864b9a0a882343c2be119f07d84b", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22d5e8c08d90f512497cd11bf4061db7", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e083a38b4f9f0867f0a5e4280233d0bf", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc10f2375db546723411ec633319b6df", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fd2a6389a10bd1366cb73bd2cb05eed", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fa23da71e336ae5144d20d839e87740", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab0daf421f33f3fa96dca82d166e9aaf", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98e6dd29151c3a670189d8a18d840e5a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b99c4d1f159d3af556c23d15c2968f93", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9babdd8fbaf928c306e8c7b2d49a21a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cf3984f985efb180c5f63d64c707680", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9633e373eb3b442993d418018aa17f9c", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d66bf805778e85299d7b853b22b9832", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df7c8a231bb0c912fac8c81e090120b6", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83e0ed963cbc95011552e1864f2c8de5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bf5ee50466ba12339759cac82ff5efc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f26166836088b79a7d983602f591d5da", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bc4391f10987ad87c37c72e2d0e8859", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cebf0e79d121533aeaf962bf20497c5", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbe5cfa11a759ac8d735131729755b99", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acf9dc548e86bb41fc449546bca334d9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7cdf12e16a4fd2ccd844535e40661be", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76d216c04d0f541d27bf5b8a1298e91b", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa1b348c91e8c36b5a037cbf6cba1bbb", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa61d0ddc747e4354046d989ace9a8c3", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2c2d8a318a3400b57c3c8b641e892e9", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0338804d16ce9adb6d79567e90b41024", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01e9d6b838951a49a6e36a54bf9d0143", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36eb534468c8d64497ade36ee95d35bb", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d958632cf27cc5b8a11b64cb18bd32f", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7afcfbbdf2adc55643920d3d08a17bb", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "976814d32c755e821cbbd28f308492a1", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af4b7e8c06a90a8c86ab16905207b7ba", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dedc05956187c5c944b66e3c66189e32", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e357b4b8ed6082f736bf2b90bb27dce8", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfa8e787fe2da2a7c98cc5964e1cfbc7", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56ad91fec1e9ad5dec9258209f09778f", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d83c01cd88b52b15ff94af45e252cdd8", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6746954d9509856ac7ee54da6bd2faa", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5926001d0545373c7988f8777ef0730b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b9679422eb2caaa8bec9fe7aa433642", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 169.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 169.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2a79b61f369784fc8bec13f7b4725e7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 169.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 169.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1372b62e166e5c7ad391169578befb2d", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 51.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08404d1418daeecad95043dbbb975792", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efb93c6ffa2797af07b043a5dbaf92a6", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "961a383da3a62bca5cca70ee41114b95", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7288e367ef0d54f0c35ea183c4ccf29", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 193.60000000000002, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 55.25, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 193.60000000000002 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5954e234a741ddad221eca1fa920b3d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 193.60000000000002, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 193.60000000000002 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3eeca08678055088c11d9fca80217eb", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 51.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "add1d243cc13b7ced69c0ce11ce76e25", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9acd12c5218444404b23bf577f569e2e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e119762ef09ed8d144d086fda34de538", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86bde473b34e103132dd5a80b12b5c45", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.80000000000001, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 38.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 96.80000000000001 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "151d98582867cb06d036b9e83a4e362c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.80000000000001, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 96.80000000000001 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3795281bfddb9336ee9aec96ea216a45", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 51.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b457429f97673be62571e2551fc65ef", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4de44538425cc4d0ce9a79dedd854e60", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d30248fc5af243697de5ec3e16676eb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d532d79d923e46a10b6e13d3be3b052b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.64, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 20.75, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 24.64 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "181a06bc4f5e48587bf6d880f0465311", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 24.64, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 24.64 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b537bea371aadcecfa7574c48dea41f", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 51.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53a8bc76c61e2d36373bc899c4b05abd", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0a90afaa916b9b4ba5aad17b23b5908", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d0457525e419fb8bbb9f84144faf7bb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aba346f5d1e3c927c683446f5935e79b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "711708e91205455ee2518ad73ad27d22", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b18ff859415886c6a72fb4fd858223aa", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71407d7806df99bbd7cffe1101ee15e2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "039363e12d047bc164637002a5e43373", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05355de9d108d5d8b83ce30a7ce1da08", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5a16b8b22d437002c05e5a7eb210cec", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b21ac1082016d0cdc47b21e2a1b08706", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05b547fec488f7e54421a4ba30b4c62a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86a11543f9f6596fc47a85890b82f24a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ea280a47ceb11cbf6ebb28de2e4e93f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3e2d1893629a611aa48a91f8ef34615", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "648da3c1140d29535c14b958c98dc150", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89099f736d9117f614f8d9ca18ef4449", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 184.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 184.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0747268778d0a750794a10a911e84434", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 51.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4477758f024008ca745e01dd724b1192", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ef5511ef1b30b303b3147b22ee39969", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c84a1f1f2fc23ff7c3639d009e012eba", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44457f1a79d9fcc0764480cf81c5f6d4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b58b30ec442f45e1d86be3da6e2f9ae9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1779887a2fb7ca12309d3ee70cd498ac", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 37.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25843b2baa2833016e7432d5733ef1b3", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "672586c2c5d195d2478b5ea08df60d87", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bc81345abdca4e237a71bb20a37d951", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73cc18f0e774690f9939df9e260ae8a2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "603cda723920ea75f9a059903382879f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d51b65c82f9cfdfa6e687593c4ce1a0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 37.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef2495976d4bb45a49db5d5b2e6d27cd", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bb81b342abaa3f61dde3fe6ec6e864f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f8224f4b3143b2e7664e7c92c09114f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e23ae3ba853b224de331c3d6313c7937", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96283e83b09c06b4445afa02c7eb53ba", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ec96e848c86910ed1f929c3b6cf9008", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 37.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e41793ce5723f941a82f3344866ee490", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b84f07759d06c4e2600f24c9a12d28bc", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6433d8165ac8d1a75710c6b4d069388d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c335ad5355c4d40621199affeeb8c9c2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4111ef26e37b59d69ecc9c41ea3b776b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95f4ffec2564d8920eefacd166410208", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 37.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb99d3d6f15b847e41524f1a3fcf00ba", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "956dcb29e635d10ea645c476a7022ca9", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e9a074cbb2f17153d69ac3100ea44dc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "918ae83f6756b3b15eed4d7aae8fe149", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a11eb772b8fe7f91dd7191d7c0ee971", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e7cebdafe950b1ac56e06f6b3c92ba3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 37.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d510da1a4b47a2ca27d676f997f31b30", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22ade990743d036e3ba4e2674852f534", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc6cbbfc14e4641e6a59b4781a92487a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d91ea39b00b94f1a4d50f7c13f5215b6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e3e8dcb07619363589190e198a70790", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c41514835bbfbcff864172f69dbc3820", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 37.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "386887ae0bb043824fb148daa1fece3f", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1f4ce7e9b72c08de0b9d4fce416692a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b48f1d2cced9a1bac328bd7df08f2648", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37fca14ca42f145b4688b4592cd5d0ff", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79aa9416655d2dcb1f89cae488a884f7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acec2fa3e303da79888a81a51617db84", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 37.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6228b457ff1aafdf181264ce003cefe0", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a18163f54d296e3dc85cc30731fa7c9", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c977b90e13f1e5b608d4f9cfe4e1b4a2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3469a0644463e8e47a4426673a1245cf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae0038988e9c0489e7e71b552bf8f743", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 107.0, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "243a672a3fd05c7ca3b5ef39d7e848a3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -12.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 37.510000000000005 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cffe920747e99045a5ef54de54d3fb34", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccc542484a048ff7189e15406bc17d58", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbdfa738c0a14577f72fd9d67655f0ea", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bcc2ce8155c1974955e37c210fd7b57", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1d7dedf252f4b60e268c62c13af1967", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4c484f95c9e87308bca6382b537fae3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "305f9321f06eee13734e1b0690b12e18", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54461ba80611e6b9a749cd3171e5155b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a51865a2c4d24d997ebb30a1e1827be", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4904dd381d0ac8619a6e6cbbd34b40b1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f016f51b76e08731c351e1056899e52", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "715cb32c1b3ae3dc9751245bca8c1286", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae37923e33890f74df9690b8388d6a3d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "301f743b8688332eb245a408bfd3d7c4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ca11eb4e35eb156a80c121de890fe53", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a055e1e10061d3cd1529d364f6d73501", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80554708b621fdf3e1b7587307beb5f0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5309ecf47fb5980acbaf00c67eb1161a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ee2a6e06948f97f9f6d662945233379", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "baeafc9736fe3e440c33442e30d11eab", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e525504c83bf88c88a6041a15f1c549d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91ea9e3e7d46843ed9b155f252630457", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce2ec132e515c6c8635de705bd911b06", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c0fd89ecc67c8a7223f77a6cf5d53ab", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "448f3683a3a3d21e816db125b155dc8f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d939d83b1cdde47c455fae88d81e39d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbfa1ff354a90b40124e2aa1af4da290", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23c1288314ded3dc71757c591cce24d3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f34cb5b674527d950fc8d3eb14a2442", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c81d164c1bc520988470a3932bbaafbd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63f87ac17df0dd7a766a4c0add30e222", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a086c73969984dd07b89b2c26585704f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcd88ce362bc092049c8b59e00697c87", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9425dff24a19e086c016c9cd930eb51e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f70b82fdff12bd8cd12ba1918e0ee07f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42888d0da595d86dd5fd09c8a1677490", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e9176129d3cfb57cae946cb34fcd5e1", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 65.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f43331af379b68c44e165460095d2943", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a62f7c4e09be20c0b35fcc20262d9704", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e47b06ce2fcee46efbee90f9445e7a27", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4abeafdfb0e697e3499463940561a4f3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "536093ccdf054f69bd8c965485b322e1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7f3c176cd4a2c7ef6faa6726e83b5aa", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b843875470f8d416b8bb9fe10ab7b934", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "941e44b5736c90910b29fd19c8830807", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0de020979a70df4b926b106d9b7c6332", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa70d7b935224d3f612788f44f188570", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "406cc67c58d193c943c583981c06d1b6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64f9e823d388a8b7ffb17661d47a2f53", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fa6273db13ce0f9fa990ae5914ee1fd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4df2367fbdf3dfc8c14434ecb168c62a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64d4b5ca6e2eee12481046eb2ef521a8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db49e81acebd1bd23a421e504ce11a52", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df3f51ef70e51534bdd9bec8604f248d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "989b98edbcfc0986d67c42b93a598fab", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 56.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2477141856cddd14221448445adb2418", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d90b702f820e6c1e7184b7b861b3887b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7586af58cc0c52281af93cd3defebb71", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "496455267f1045a8d74ec6b56151cb91", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe50980f9c7a0040743fa4f395040654", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12266b83644a4e88465d74ef885bb9ec", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0d724f6c034b337908436ba25433862", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4962c453abeb24a1deedb3df5f124c9b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c93ab102cf33c36019d5ec6d8a62e786", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e49ead02cde65e9106db6264c30b5d21", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01a2084363b2d869094ba3a67b6103e6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17c2d23624b9e0d090809dbc671c8b5e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5177fbdfc7aafab8e4d81e0c6f3eed09", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0a47c5133c169d86e4c255a5b5cf51d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15a639126d8d5b3b77051b54d449d0fd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df26bc9a029fbdf121ca51e5db876cf3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5646b192b6d366a01baa4c8a3982c617", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b064eab99456bd3842d33e77a9c7d985", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 47.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3313e6778beddac5574e104fc935cae2", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b17cd694e2b5e6588edf6beb10242c3d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aa91ba47c1c0886ca26337dc4238a45", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "650851c90bb98091dd5d20bee2db727b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b9a3ad9605d482d77251997498f70fc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1bc3e179f518016da7d4ac0703d2f0d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f08fc651957030e0a963a23e5d89d0e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "714bbf8a110276ee0145a3819f634c0a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "676a55f1853986f508c702e548c2a58e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bb14b2a283535678bc74bc051fecc2b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfe3ac666aeb02dc1850bb5bd22c776e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "471ea7cf822f0176773ded58ec2e897c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ab856c3b2894f55d70f6394a3f4cff8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ffd43240dcba61c6a3d49152fea31fd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6fe9d564b392c144afd539d115ed2e9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "032e39f92c3f9b210aeeceb9ef558b3f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbbc8c1cf1ebe7fdbf80466d2afcbdf4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27b503136e918e342537512ac2862b52", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 38.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff85cb921b5894f1a364ef0b56adaa21", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48a0f06202a0c24e34c8222a75a49214", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6a11a89d5c7717dcd9f16a4c422dc2c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5389acde1b797835664fa88c85ed5260", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c21fadf1af3a1a4f9c4fbc4e369f1a3b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3405f5d043902e809823d43586db0638", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad0531a71a8e0e705df1d42737fb069b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfe5ec0519478e5b38b2dde74dfa93b2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e16467220fcc0531239d12a58045e68", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa248bff0d5eea46b0cef55e4ea03f42", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "691323384f1161c7fa1b648145ac8e0f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a85641a644682fd7eb5aaacaa0504d4f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0971f743b6a42582020fbd3667703b2c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f795ed3263f1d5b068d2da9af25d3d15", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cec926366dabb3dc5efef5810504949", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02105fcd7ce9536ef500843876321e85", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "426d05e1e173bc92fcc6ef4b40d9c516", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a9fa8792c5039a7f55ea3dba2c0cf40", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 29.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc22e69f0e80343329644f9cbb8e5979", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6b718bc6b510821c624e7783b11fc3b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91f7b04584c955b69dbbc9a3b7a3385c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d69cdd47cd1a52399e75ec98ac0ba6a3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e825f21ac36e51cb0bc3a120bbeb2ce", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0591bf3ef34213c49fd2691704a8fc9a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0f84a4d58033daa0cdb34b9ddedfab8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c6211c966f122c4de8216d7a3ba0955", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db176a2e6c99d5d6b892eda83972d9bf", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb456e0cb11039c3aeab0f21f0d6d35b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78c146e0cf1c26e14c5ac964a63a77d4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68d43c4735fb5cdb662a928668ac31ec", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32332c3940d39963e705ea114179d46a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9b7bf992d67307be4ca5a4f2e3a3c8b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d4363a32c05f2a35f4a4c0aac5c57e3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "037ed9b144034e20c36389342501edd9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f3d9ff5a4b35bc37b486530aabecb94", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5edd91f15b4e63843be8fa5db61fb094", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 20.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15a28c902c477e5a7dcbb071e742b8e3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9c58aa44e3624fb006d91603f1d8ace", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a9ff032c3ccebdcac1f4af404f1030d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3646c401881b03bcee6025f91df5311", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72eed94b780fff0e846aad15c829c76c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12973f3dd8e4a02335d127546a3eba6f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52044cfc3859cab4976f8550c4af56e8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "077ecc84d0415580a3b03225a4a61264", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75792c7a6c05d40f1811b5125c9d6ac6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5910caaf2b1be234f476a7350237a51", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4cfd507f8858074181e2a8fb3c41e09", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d65d039161c9a42d77b9779713465b84", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "074de03f6befff4cb02de5908a4a021f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fb2a9e08b11c1971a101dbdd0a826a0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba797c80b0a3bd0088e18ff593dd3783", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8241b6cce895bdc4c484f0758dc9ec0a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4b6cccaf456dc438063becb0a2c5ccf", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cff1693351507038421b1dcb99a29ab", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 11.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17703d187d4c731432b4b2c42ce60832", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7b78e7ca29a61ea6557fbb0c565ad5a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c996b1c8d843caa6c164024305a3988", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f25beb612098b8568c48b3339512c9c", - "notes": [], - "params": { - "message": "Add plate seal" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7140de71232e0f15cf3e552c2f24aef7", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e02db223d80f76059bc3d690ccd233f6", - "notes": [], - "params": { - "message": "Adapter Ligation" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "498a9b94e6bc1c930551ff9e38669e2f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d8b1f40612ef6ccb0e1fbda25f54bbd", - "notes": [], - "params": { - "blockMaxVolumeUl": 100.0, - "celsius": 20.0, - "holdTimeSeconds": 900.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dacb1190103629989c8741fd3731ca6", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "184f66e84fe63b7844f1dbdf15c2a8f5", - "notes": [], - "params": { - "blockMaxVolumeUl": 100.0, - "celsius": 4.0, - "holdTimeSeconds": 120.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f73023cd283351de5c36ac724da788c", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "856cd1b9928d7853e86ba184fb08bc77", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "958ab0972c8fd8280fdceb1c08bd4095", - "notes": [], - "params": { - "message": "Remove plate seal" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c02c7da0f5a90e378a54e8a7af65d23", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49f77a3cd345dd2f8a6e34fe930f196f", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6a924261c61bd8309ec0afc0158fa8a", - "notes": [], - "params": { - "displayName": "sample_plate", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "addressableAreaName": "C4" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "100c6979b24688e6af8c413e1c8619f7", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "866594657047e18d95ff233d07558f92", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af1b9592a012bf62e7d982543da580a5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c01b551c85dad588813290ff409c85f4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e23e13cc967f9298aa2daeca81bc4dc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 14.260000000000002 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5550756de758d1cef229ca52c79d65c7", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 15.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e6e00f078428ed7bb90951f3e09d53f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19b739b8ac05d3b7c8e1c00990516000", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12311bb9f36a6e563f9124776ebad75e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd1069d492e6807c5b8bc548fae28864", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0516f3d6577b2af80021d38df156912f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 3.375, - "y": 347.2, - "z": 14.260000000000002 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18c5f05bfe8aa30ee756b3bd80e8c282", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 3.375, - "y": 347.2, - "z": 15.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba86062d53afdc8f825b8d8b271889e0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "471095ceeee3917d7aac4ef37da6d929", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44b505050d3d213a570fb09b4967ad4f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b70e93ca4de6c607597b5ecfcabba9f7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30833502ffc68d2213e360628dc61025", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 3.375, - "y": 338.2, - "z": 14.260000000000002 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcc39d05495495428fe231b8436f4cd6", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 3.375, - "y": 338.2, - "z": 15.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e8cca58b23979bce858d94aa338a711", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e89ac75e023123e7bc3d761b49ebd6a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "371eb83086f909a3d2f866b42a228eb3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efe8797c0bd38c889cdf23c913e13101", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cec527cdbaf4a9bda49582a1e4496592", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 3.375, - "y": 329.2, - "z": 14.260000000000002 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "631e0625522ce9e2e34bf15776f95c81", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 3.375, - "y": 329.2, - "z": 15.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46fdf817c4da5e4428c98ffd537f483f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e95943121d8912df82cfb7fb59a9e826", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f840e4750c34f71bc6771d87189bf53", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "870e5711ba6b41c68685bd6fe2da791b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5110ae7557701d27d43814e62a17f783", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 3.375, - "y": 320.2, - "z": 14.260000000000002 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8ba77b622917d734050149590cbc67b", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 3.375, - "y": 320.2, - "z": 15.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6efde92fc879c4b66a0e33d70a803664", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cda0926c55144e2594e70f1447ea398b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1dab5a021ca91a2637b3bc220f5642a4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff16aeb588bd08dfa94fbdf3d79606c8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63fbcb79ed451b229710528e094c3f4d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 3.375, - "y": 311.2, - "z": 14.260000000000002 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "600929e993cf1faca435e3b013e998fa", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 3.375, - "y": 311.2, - "z": 15.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c06b5e53c2de59b4d71103110f31518", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93af1e2dce0b7d30c1cabe6552a33053", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50e926af7701e886321fc4507c6b2f65", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "719597e345530ee954db0b94fffd3bc9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdc1b203aceba1b6116cdbd6503a0f92", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 3.375, - "y": 302.2, - "z": 14.260000000000002 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec908ef4b7c102d4e8b40f2d5675990b", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 3.375, - "y": 302.2, - "z": 15.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "480d5b914c9dc85d5a3625b84d5b8659", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "845c7fc0db8217aac25a48fbebb515be", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f2d37d0234a9bfd808a9843cfbd9a94", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cc935ec6e47f819cb01825e928e6056", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "935d8f1626aa4e2a582d32380840430f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 3.375, - "y": 293.2, - "z": 14.260000000000002 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68c7364ade649e74911f861ad8e41548", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 3.375, - "y": 293.2, - "z": 15.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71df2c8f4467dcef3af61e79118eb553", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95b91890651f1913c18198c278ab8892", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "181fe2dfd931294868192ef55802e37f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "debaf54482ff1b3d51a2136c97ed4e2c", - "notes": [], - "params": { - "flowRate": 3.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f6386f69c1eca8bdd91b93f7f3f833f", - "notes": [], - "params": { - "seconds": 5.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59101f37e4709f337d13769f1f677ee8", - "notes": [], - "params": { - "flowRate": 5.7, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 1.7100000000000002 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25b35db558f414d5da2e5ef14354deee", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 3.375, - "y": 356.2, - "z": 15.260000000000002 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50aa563d36ffce280aed300ea2ef4bb8", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0f2c695fe674d2b62da370c35ff6d5c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4027f7b711e01c65c2627601a5bdef2c", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9822553e35e818ad6b15e786b6a272dc", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b98c4d7cca68c2a4c60acc135e11fa0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd275beb89861a5816c49ca5fed6a232", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5247b6fcb9089fa8d6eac981db334410", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c43655853821d11377e16444134b269", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b601910bfedf5b36ce092ae690a1bcf6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f9c122ff5c8de515a780a16cbb4dc70", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26e06496a6f86c5068982d46fa91a3b9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df9886a07dcbaf60876a9b3dc2050eb8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8bf4b7941e9895b2617c798831ee33e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cb89dd3ac2791307d530319f6fc6f9c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc6090a99006fe182caa8a0a9df54124", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dec83340c2ac8800f01b2f0f1393265b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.15 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.849999999999999 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f85e006fc5787792972a4213397060a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e37f846a3fd3a854ae92b74531a29cc1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8dbf6770e706eee0dc6d88d66707153", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b3438bddeef54cc259fbc894062abdc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a764f67869e8fd510c35b0d4e913e25", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "358ca92681068164001e26feb11b6e23", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8162a8db95fcc71fc4b265bf21e73120", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96c9c465dc9a45c8d52f3bf9fb92f0e0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39479075d0734fdc53704cb3d07e320a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3f2ce6ce36227e597f1fcbd369a4dec", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf740f3e29b55cc058619a566ed3f462", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12c153d8a7618b436df7c849b9b62477", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d908db3d8b3746d705e42259229282bb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb5fff1947f9fde66fe31b3d34f84025", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0231192254fb9cc1e19ffe5288becef", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fec1468f2c3c897df61fc65f79e56f1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8f184f41739fe5f5e9366cbea489416", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7322fc82b443ae4cb13a69add8344ea", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb6ae8879cd3eaf1ba7cd85956432867", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd07feb99dbb4d9354fb3c97ba24219a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53540975bb2af72c2bf60d9e63208409", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b07f856a5b53d79043232d6ca3c71ca2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f5f16e13cdab4c1107ce106ff1e1b68", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1df1ab6e61203c4b984c032999d51eb6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.15 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.849999999999999 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f2b5f2482aa0c31519d8d2e3d387831", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58c5705514b987c6032b7303103516ff", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fe1aed9ca62fa9fa3a24a35e031cca7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29dfa3d6b85de642ef28ede77611059c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efefb51a476c498e25a33e1bab5d7333", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2672784a25ac9e7a0ec4b50da454fdbf", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ac42705e7d7a51bbf70ac3de1c344d5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "214b7ff9da9bd2709767a909dcf7317e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "106063c8ac48ccf2df6c7a576c701659", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e752c646c5bc8868f5340e4201129cb4", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b01f0433b4596107a4a8d35eae43e97e", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aaabe086c79f9b9700cb6cdedc59f9dd", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "571e3692735b18798c01983cc07b6306", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b202b71999748c8e96aedf08956b736b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24a633f22e9600f22d1ae4da99e7bd04", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ab1c7db5a7ff6e702dedc25f00a169b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edf57435a299421cef824523f0e6cfa6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95e6587c917212260ccd41546c6b3531", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46fcdbb1b1b71955daa135120861f851", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00f093162d3a2afe3d943629079b5fe9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b42efa4d4a1497040bf78fe6cf3a4a8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc0e775576aeddd78e0251e2692ca010", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3700b6947183fdad6f71d53640911a60", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52c4988bb1f40cd240b4336c72a991ce", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.15 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.849999999999999 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91d2e0546167a86dfb4c548b3ae921de", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08db3613c255065d9341ef88c22b28ad", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c0725f4a039353cf675e93c3a9e1778", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c003e355ca7c3680c8c07a346e1c39e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6972cf1090c5261d107175f7c795f43e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "089ec3ccc4711b0d6e681cad617c6f11", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "505361638e4e082951824fc97ca658e0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b19105e4900b6405ec71fadea19adb34", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8af8c4670f0acd3467bd146ba8ff8704", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac74b6c87993be283e37b6191c0df68c", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80bdf29800a332c27ecb18118c64e9a7", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82813abf938e5f1a717deb46f5cddd69", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bafc3c60ced815cbc7bdcd85e88df746", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da2f1632f09a8ddd4a2c272c17fa7327", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fec71b56969e13d1d8920ea1b55e3e9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "322af1b31cf832a4e509b64faf14a31c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3be93cdb2e8c410bc1cd44dee86dd843", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "970ae31e1f5b6f86f7d879a3951077ac", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db9b217c32610e7e834b2a48396d72a6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2452c62d2282e1d4aeec600dc2041369", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "876b38ceeb13da068653a18a84a987f7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bd364d3c812ae9bed89eea5e7462b34", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "807714c521c91909ab6af9dfcf61edc7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be7ab59696c4eadc454f4bf8115ba638", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.15 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.849999999999999 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d41412d2d72be0e054d48ded231cf45f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68a98dc6b427d209ac35e2f690ad5671", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce43da16ac57dc6c2b18808c11da8a75", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "604669b2103d0963cc67f006baf122d1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "231077c74d50a58beebc1c8fb425c11e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85b62599d3a9ec5f5aadd0d0b7a2d913", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d4aed0e851b30dc39918bb391e2a346", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9c01016fc4122b8ab97926ebd2544f7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bdec01e47aa7def58fe9eff8be7794d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a383e4e81e0d63316bd28cd68e2f592", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab1f368c2a1648fb0ce502db2c4e832d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65fb2dcd0786429ece88fbcb7d9600b0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "863a9c8fedd99c9d0d0ed8e1ea21b49d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f49727c20b9ca3159dc8001e029b78d6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fe9075169ee5aa11fb7d7f21c9af399", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b5f52b5d8b20c951547026d9a756662", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36a67e8588a0029c69c166054ca06501", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2d0ae4da8f99e99366eb28d6a9d81b1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b707120baa3e35e5178db9be5f27fef0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "719ebd52e4865f65a2b286ad06a47d4e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ca5cd7e9a734da6c0a7eaf26ea022d1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "190095939b140a05246ad47c3e496b37", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5a9f4515b4d1aad9f2c654351378b79", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38f443248ac975e1a28865ec95ad056b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.15 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.849999999999999 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7f83a2574ca5ebd52c8969a2b109c48", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bf11b628f33ddf6bdba6c829c362018", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7df0e854b9c9c3c5429e3608a8a211ed", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e49e9d91489cc22e168ae32e2fe77ede", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c0adcc505ba20b1f610d02a5159e8de", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95d86978697d3406f7787ac862b1d194", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d121992a6066c91478ddf6c91900eb6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27efbd3fef9163db3fb99d4f579f8c10", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58558ecdaed8f6784abd9fedf6e461fc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cab1ff60ccc12d3099a7b7926c49dc67", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f77e79536d3d04e0293b21a889cb733", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42d050b3958bf6625b7accdc858cf158", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ff1cfc308026dfda976b4baf428491a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f9c8a349dff5bcec4e18fd47fb190c7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ec9e4d247a6067957d3b6d934308d47", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a2f757a7590fe24814a36777036184b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "590e01a608f63fa03772e8dacc09dadc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2422db0a1dc5e81a497cfdebe9a00854", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd675c960e936f3ef99ec8c4193346d0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "538e4461dfcad7ad7867fd170c862f71", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2558707e9eb49e666ceebf2aea13ae12", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42e4b1179f006a9751c4470e9f7b4ce3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c38ae4cd3ebb041e3445c03ea33644ae", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c951aee00a8625eb62e2771d1ae039d5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.15 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.849999999999999 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1889e634e0b9e42d7a017bffca5198a3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1da6f6eee7b92b03afe594650143f22", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3f861f7bbff05e207449fab9d74c553", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4351149e79c41e475926674f22e0aa13", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84f481149547d2d997dfe96134f52899", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0fb308724950288846f413bf8b30075", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09181d6a68eb9a3c221e93cc5295e038", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b48fbe5161ffdb584fac413f3bc042f2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e9080cc696ff717abe8c97bc5476155", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6da0781881d3caaed13ab3ad7f53b077", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2eef05580151228ba2688328eb0b8209", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "770e8b155c9f35a606c113d776777afd", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a251d42519c382d8f2daa9c7cbeba262", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4564b925f07ed02dff59a2b7c0c159bd", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf287b6434d57294d0f751e6f2a53d1d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd29e91ad7d3379931dfb67ef24735bb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdc4a92c5641e16f8026368b24aca8e9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77a38285caeb9771fdf32de54f6f3c56", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dde09b58fdbfb429465b96b519af579f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8a3057a1fc1243981ff485454738376", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfb7281260b9c3c5db4e407e9437485b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e751f405e836d00b274058e45113d16", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54e7349cb9501185072a155a50bf2fba", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8a40f9a3b6c814cde1d61563cec948f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.15 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.849999999999999 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71d1627ff64f398505378c4d77c06d7d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef5e09b43b201969ffd4bdb2df95d74a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c69c265f21a4855350b74bbcf458e61", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f59348b307a7734ae7d58271442b19f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bea7a1ccedfc6baba0827d8cc3d4ee23", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea6dc46f8a0d292457511afcdd6e74b0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b826d61cd951f6f997ac3a94c3cd49d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "174c80176601c5d86584c7afd5685248", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27172bb77ea599561758242edfe2d0c3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c25a334cbb5839b78c17d3f93528c1b8", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6da91a24f2004464bf8211fead2cdd45", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f72e0e9c9f8d8ec79d628b8f4cf83ba", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfbca22dc0cbc648d00c693c67b3308c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90d3140a72075f156e1ce6311e2fce0e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71b092e50b9123582242e1dbde271780", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad91d08c4aa25ae9395084cea46732e5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0be75c3e561737c2d22ecf2456447ba4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8d0f0d5488d85b1523bbfd1c20c57e8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b76002404d2d8688792e689705c867d7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37929b7e250e911f00caf9dcfac9a331", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0df9a1e6e2507ab89f105a2be4e7a90d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "888b3169620c3bef580e2df177c9846d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca034c377ef0ca3471fe6aac7a36cba2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.4499999999999986 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2788e7895ed76f461df9a61b1c71f786", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.15 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.849999999999999 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8950935511a726f618fec6fd795bc112", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72f2ec4617c8d27f45709e71ba11a1a5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5a2358684d3f4c95f5a87b4280b445b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f407af92672c26b13914433fe9aad51b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e3341bf4452c58c352ab528b7715bed", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2487d9d28f50ef210b59ccd407f9e1e5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a585b03a993132b64c614b2b0dec71b8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "873f184ad850b3feaf4677e501670881", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 1.7499999999999993 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5824134f29b6e5f63ea783ab6de9c556", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 15.0 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17cffe20ea1ad4996782ca0d0c9c0eff", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1294eac115ec9369ba13a2b4fd1566e3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18cf8ed62c4c8ac203a23ec7b1721301", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fa84b10b303fdd1fca4c2f18642a361", - "notes": [], - "params": { - "seconds": 300.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b409cbddd16df2eb705b89e020c9609", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08f3638d76a225020cc7f71d01f41fd9", - "notes": [], - "params": { - "seconds": 600.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bd846ca7625f0c566e693dacfb1a21b", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab55d0c45d41e07a18be6eea0cb7be0d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9683b37053617b52c509c9717b15d923", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f893d8b8130e3c1b6f49183e6401d1e", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1b9b6cbc6100b1f1d7437fa75f272f8", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "104f9f0bd2b45e394cc58abb95dc63c1", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96cec55591b2b7767ef35ebd898d0793", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e856e73c33bbbb41ab9c0fc165d319a0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5466efe1741f382849f857bcc82129f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b916134979b2eed41d446282bde950c", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a39da4358ca1c71e9a8385542ff5cdf", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 277.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "403e811deaf6fffee4ae3ed96d2587e3", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca3fabd26cdbf60f1a306981e3ea8c25", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 277.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecbc02aecb0f7303569ef0cdbff37bb4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c84a51e9cc7afba4f997b9f91bf182a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a7579493173bf432d8a83a1307f8dcb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7743c86787e10e9a8e0646af2d1c1290", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d63148399e956db61729ccf9193ea2d1", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 277.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5797a30df0a953d8d91f4bfcf1cb03de", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c582d494628c66ce3931aaaaf7ab5f21", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 277.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5d0fc9137c207aa1ec994fe46f79d16", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a1b4d910de40ce8c803bbff0b9a0a11", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86fd6488461e307e69744319c203818f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "286669311a1868f976c85f00483f2238", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9859e4e22d97c93555896a698d01b184", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 277.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84d8f195e45e00ffc08fcb76fc83c9fe", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb19661b3482daf6a3d655d01264a3b4", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 277.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63af14d0f1e6128285fd07ee5b5d7d46", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "461bf9d56499ca0576541414478b3d85", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cde67a7d329da128d227f78ae5652b67", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8a6606c6391a5d001c7677693eb3aba", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cff363a49994cca1f326d4a3e7fc3564", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 277.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37c20202b3d2c9f20a665a669254907e", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "701e962d782eb7fcaab9603d88844bd3", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 277.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da1497bafb58f50927531b8899d64995", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7b0115d0c67b73bd1ca17fda53d297e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "475339d2f64c634b4897ef6cab300ead", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e5ee5b2b58f09e0610b5966a6755c64", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce6f825d5cfc862c5cf832ad60a47d32", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 277.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "934ac9a7445c3259efe534362bba9489", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f1c857366943344f7692b102a96859c", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 277.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd0b54355acf0f3a9a71e104b178ae1d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40a927add7fa796f8581d3d25ba062e1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db885f95da9704feb4f6aec2c5c50fcd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6eea0e461e8439307efa286364f7882f", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f6b369789a499bfbd42afae6afa507f", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 277.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a37779b9da75f86dbdad1114fb60f377", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d680dab723734e1246b3308870251c6d", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 277.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f931950697087321d655f20f7d48dfe1", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89c46e5c1c2befb33d3a86819abffb8f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd6caf32a942cefc8731946188bd1bbd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a37271267d0bbe5db65ba7441ebd62c", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37eddfb3cfb20ff353e427fdf0f8c3c9", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 277.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cab6ee5cb48d711eb4ad8780f45b2d1", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4ee8c685305666fbb43fa7aeaa35287", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 277.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c94792e994686687a8609ed6a6b0fee4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c562982a20390bf189d033049c15c98", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc5f460be431755148f3735422e6081b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa72aeb1e8b6e27fe9c8ca2fc8890f4c", - "notes": [], - "params": { - "flowRate": 7.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aa1e8e8197803ef7b0de12c23549c30", - "notes": [], - "params": { - "seconds": 3.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbc07bd1eda2e3e2972ffb49210cacbe", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2b46a26c72e95f554cc863ce74942cb", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a43d6a4f1b445d474c0484a2123fb131", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f108abd9567540324c989c55d320d5f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a23334f362d79eb214780f2b076ce03", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92712c3209e645b3c3b75913b42975f2", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66f91c0f539897cf0ecfcc3e6f9aaaa8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9859dadddd309385fe09c205aac15375", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d5b1009cb28002a5838d2f0eecb9823", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50d55c68d7287384c9b9c8f13b3a2ee0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36698d4c3af76bef4959e196ab2550d1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9e534d5392d82c144833f1e2667410b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bb121609e325f61d02fb7320d496380", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad1b654eccdb5987757aceda1a5ecc91", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eba069ea04f51dc4231669ba4c37d9ce", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7b158f11865312b45cec3cd52493bc1", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd05a9f8c8bec7abbcb27c354be18f65", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7ca28dcea9cc7d9d1d274c1adeb6979", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "552d37a83593d90507a017104a29388a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd25b6ed3abebee2dc4b04e1c1160e40", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "637538a2b3a08407cf2ee82303759aa7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e647300dfb9aac11cc0a5f08c93ee3c", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a120526d8e42dd04bfbadba2534c4d10", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f32742cf4eaa0d5851816f9d56adee9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0999b945eacb57d7381fc7bac48e9cfd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aebe2816f1730ddd00f22d90793706bb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57d66ffa93fb67ba08e790b34f922e39", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8f675d5bcf45f0142a67a6b9c5d9423", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4700a41d26d405820b0ad7258d7153da", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13ebb7482b10c144a18f13ec806d5c4e", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98cfb78d5accdc63c74bca4f85c86fb3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80e63b73b2d6f0e9ac810d8f98c9ef7f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd456be7faaec8818a5c9407db1e41b0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b8877a1f0712734c4b4ef00d4225c6f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2285ff4189f3fcfdba4264b008350527", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b816de76993d70a47b0fc3914305f980", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "159aebac68c14130fb99f8a57ad59c85", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38bf17487225e3849907fdc32e43cc05", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d4470048fd5d1b322f4f8a669a97920", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d87943769be7ae754ff3db7627ad955d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61cd6067c3a7776f261e930dd48dcb7d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c779f099ab916d973dcc75e9e8bb72f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a7496f51a5e0bda1ceb01a995fa0dd9", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2025cd02534d504ea3190c2dc72f02a0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4bccd41fc0dd669d80dbb62ac4c1623", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "737d9a63898bb29a70cc0c0f8c249b77", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b63c4168a8706954b8fb5b9faead3930", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23b617d707dbc701ec740117aeb17e2c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcbd7fd923427f456965a0173226693e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c00ef31641cf6c8284ab6aafa0763d5e", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a27efa29c0c007656530089e0eafe54c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a553481aeb48276999b0fe981fba755", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92034068f38582e6a700d010a6962eca", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed45b62c8fe1366d4bb8ae85ea51f37c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28450e48e76136c20b2f23807d9817a6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b72c75ae6fe8363d2b582520515ff9d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43fdfa42c54f966301e826d6133f48b0", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e351e7e8c05472e5a2d458b455129427", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68782fde35c50bf5d95ebdbcdae96248", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4b7ac5c30d03f68b8fef685de5b2916", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42f5b71d30a566a16174cd3bd08828bd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3125fa5f9f28895a8c301e480e44d1d4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd22b20183754bc7882b8089b53783cc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7da8b94b38c42055e345944c12e33d7", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2445bba2950f497c47f114e146a60e6e", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "942dc83c37131adffdbe5a70f7ea6363", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "002b7c6cf44aceec79cfa2d3834f73a7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 178.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b99a09e0d1f4472bf8569fc2c8f1c260", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee1c308d9b22dbe83a0a24bd1aece271", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6bfc26dce964919ee826a86a1135d14", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad9439cef497c69f596d02919c55b6c3", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "042dab721bb45ba0abf201eb5689b501", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aee450a2ae4bdc7f6c008473a620615a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "992cb06c3030d12119a7d6e0bf853558", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 178.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bd3b5c38da291066f6f4992bd015725", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff248c5609649369fec40739fd8a22ac", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6d273a07a170ddd9bf5c89d292ec2bc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd39b49ba2963a47d5c547d82d263bda", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d0e1a73e89568085cde384d10451550", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed5d316a3c37379f7342e6e6dc4da706", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a1da32e151f8a6933ff0cfcc9567e68", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 178.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f6f032fbb35e7580e0f27cbf8d11c20", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6f5f7a4735f1aa9f1c2f4607b8fce36", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16cd14adf0db1f853a3905a94a770fc5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23e13c4ef8874dfe2fab6d8516c44e8a", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "343913248281185a02e611596e8274da", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20f255fc4e9facbb5998a89d8ff0e583", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dca06e68963f2681a7e09a8b5b369eef", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 178.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f03d6430c8be8dab2fbfbdcc74ddafc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "006a7458a9ea81f7a61773a636918965", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51bdff90a83776ca32d68fbeef2739b2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9cf4f3fe926aec8e8b72333a7d29bac", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e875bc29d213fa7de443cc22e508fafa", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8feb17f0c859da7fbe2974f9d82d86e4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fca7bd5e876a3653b39e97a59213b35e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 178.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5345ddce21c501bbb264bc4519f063a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a96034a1d481a0b8bc1aed844fafa7ec", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f71ddbfb3cfc768c8a6f4030c7e886b1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfd9e65e576fbd9d3f16a8f575976003", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d015d600de85ce8aed9237db025ea01", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0eac3e974e265d4e0b418a47ac5ce8b2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb02d3b7291c62fdbe729aa858669ba4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 178.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e51c6ec14b9cd891175cbfc26e065fd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93d53d3978fa880a0a65acf08b591370", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d18626028d2ea7d2f50f67c20711852", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a15f6f39ffc672e64ca64594c08e2642", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94928eef873eb514b9f4c3eba3909ffc", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79709a113ba8cf1e5c76032242e2ab50", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ce2d4da0bf7a38f3b6271a1a2e93e2a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 178.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d8f8fca199dcc567ac27d78cfb59d70", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26704ec0f95c570e67b1a411143bdea7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bf894beb46e2e0dc70fd84a2e9a2d29", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ddfb2efb5bf202537dd8f0d9be6df302", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdaade0d3067808779dee91945e63719", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cd51d69b98a6d2ee234551dd60c30c6", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1834be17baa0138df5f2207e76c44472", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "394f04ffc95bc46bc971229c419cb6e7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4247b5f9fd62a6b8a3aa99d5adad690c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55ff52704689ad5a1b9451fc698b31b8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d78188bbf59df11749d3ad7bd3a5bfd8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4cc1fced60976c9be579d7ae37abcf2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "204a56c72441328c1caafa762364ec71", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09b5d0fcc3aea5b8fe75e0d0e85b4232", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69f02a4c8e9287ab94649012f7182d36", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f765eeb0d6ba676d4f9f9a553ac6dd3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89c87320034192bc5f552d9a36c68b76", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a7b376d7f9515d5c439ac3fae1cb6b5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25fb501709e1d1ba27971d01c4601e8f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb772fa96b9ab1679711cd4305e9f5e4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "514589fbb2b4c12cee08841910153547", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "628878bc3afa136f526c53cceadf4db0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7cec8a180c9af7d39396d8397d2b4e7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "998ce26e9d30b5a7c16ee8c5aea70c1f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45e23b310276716d15019cd349c73393", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cfcef7cf614b8a6b2420d16e8f7146f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b7cee151df4a7652aabce468c3ec535", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e8b60064570b910a4604c512e15564e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c891233ca661ed0b4e2569ba8fa1946", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dedf7376cf0097edd58b342fa2be770c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7068fbbfbd8a20c336695d1cc561b01", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c38cf6478f0f383fddb7927621cd560e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e90d3c5d4a6bb179a99dbee53822f35", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf85d06a0115014133e7195b15e1a3a4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b82c29140bf9e7bf555b106b265046b7", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "859ce3c56a8ff435d5c7e2c5dddb2b58", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f12c764c982d474f47c31dfbfc3c013", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63d2c07199b062b826cb1d7aaa87e9df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d64e51d81a9d6675557a52db7e0ef43", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "729b48323ff5c21a84e50587081931ff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbe2172de2b6ee380f066ce44c73bf19", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5527db30530bd9dc7f6814f2329881e8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8261388c0a7ba4b7a5d97a91f2a50f2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b8080846a0a23c4178b20dba2289e58", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6066583ca754003d45528d2c5964a312", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f652ed3ca9fe861f2af0db4f458f3846", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f05a0f4df821aa07d1af21ba53bb86df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cba3f8d2876761da9caa22b284b40a2f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1766deb9761ae5147783947f4be2e27a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebf60d8d8ce0ef1283875d42478cbc61", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9d40f4232614c4b3869622640a494ba", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "220f10d65383b5ccdcfe7de689a6c09d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b58ea79b0335707c7ec69246cc8275d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62c5242200ad3b902f9499331fd9be58", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e537cf6e1840bf83a826b2f2417f61f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f52567a8c6ee5cd52bae31929522588", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c65666b09ddb75142c8bc10cef0c416", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9556e1d854410de6e70a61105b0844f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbd95278b1856aff0905e12f22967a71", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d348a68a53f1e4e60c2a2414e7bd5cb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d96a461a918ff9a5ff5d0c983f14c0d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d216bdc20d8830e2ccf6af4a55d629a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "544f9dddfc4196ba99300923cf9cf388", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6580e0fe71d5c0315fea0676b8c55f2e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1435d8c9dac33f798b76552e310618b", - "notes": [], - "params": { - "flowRate": 7.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ae18cacfadf1ccd11e509cfe8f1e2d7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31a68415814424153db28c769b4c03f4", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1bfdbadd38e029806d3c9211dff6473", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b7cdfb6a1b91dce691c0f66bb318c52", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60a0ccf655064cc8e7812178fe5a6a47", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64804c0b3bb85c48897fa3c659d00393", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3d28c649065088c860136957c43ce7d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f23a9a32b51cdf740522aef554aaf2c0", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc850c2a2ad85abb5c750a96d5475b82", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb24841e39d21e55b260b220c46adeeb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3751d0f1db63cd04e5c43c30faaad56", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d281cc09a8b8d4f37829702538703ada", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e1c60f28c58ba9da807820c61d69341", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2cb05d081a0469b3c8cbff6b8e8701b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "539d9a9155dcb0af7cbcef5e5d30a0bf", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af613bb9061c87c4a561efc700a5f978", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67674d900da10af01ea2ffaaea4dfa27", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8064f43415e1d2f731a044cd5cf4213e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79fd4fedd2d04e255990210d6df346db", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "992a0b4b0c6a32e07ba28800a748a79e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "075f5a3e07965997cb507ee73dbed726", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2920ecb308d3c223945f840c7e7dba65", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6586f11b88eb3d5dcccab4c35a01163", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adcdcb1af5a1d9ed3ca7b112301c7f28", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "087e03d4cb9e613e566214fd608f77a7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d9fa0edfb8fb4d23130dd7359450899", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47a4ef61764deb660ff547df700c4e9c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "800169d7eaf4e1fd1cc1d159c9798870", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a99cdf1a958943ceaeb98dbb14e3037", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f357741ed321695dbc6a62e9560be290", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccb71a36983c1e8b98a0f437d62b935f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d2a281ea17748d4c797dc98a361bb23", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02227337cabd86f9b9fb1fa37b8a3a5c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb96fd76b27feeb2986119cd2cbf48ef", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ab0a54f1ecbd257d95bf45259c92a52", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbfd290dab686dda1c782a24257bc8de", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb911312c2b9cea708caaf56157356e3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41794ce230a0276cf5f0e4c142f677b1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6c8606865a607e0c402d4a7e6cb9528", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97f317883f9d5571045750bf59e8e013", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a942064168118471a7dea4f8ebee0fb8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af1e7fcac432e445bbf294c33033c588", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abdbc04862e6f46a3a99a861fdb0fae1", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a32146d0462e7a7f41672c03a334ba7", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4de72c0ec848115c125b0143993f85ff", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e663a28475a7b3685c8744244273d0e1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "950e990efd8422855ca8e1db69d0c43d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39c556a9163846b4101d006eb259a5fe", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec71e92f1329892f1112e72eb981fee3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecfe841783249eabeb8b1cf2d1360a83", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "218a1cfcce504c368ede78c66fae27a3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4a9e07f17df98d2081448f9a6fd6713", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "322811334209de0585baec6d1cbfe251", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d8021e9fbb7a4bb7d3a4d3ddf8c15f7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2717b0ea4df4f23f555b97024a84141d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 107.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b56d913cafce2a6368069975e28b1a9f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96db507d5be2156a6cfff2e8172378ed", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "563aad06f60ad3627a3395609adb3ef0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46bb2352b727a09c1d91165fe775ba3c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4649ebf192897154b51e998710589821", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c2b9b8a1e4ba249f8e4f04961b0738b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b0e938cd48b40ab9cf4f6aa2645d4c7", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7363368f9934ab1bfbc8268efe873688", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60ea33d675561ca823a1fc4ecece1e52", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57a22078f35b2261843967f8158c550f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffaf5d6d9de0e1baaf907a66debdad2c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "903832bec332e818d8a098b54783b01d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cae0eef6684bdb0e6e527eba097f56b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bc009911cba6775aa128d7d613dad9b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "938b8a32f3e1a5418a3857c9a756d0bc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1afc17a4a5483d6878d9ff0e158b842", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb341908e21f1d9eec5f0eb8e47474dc", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac615127e25191a8414ec6424b60ef5a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f828744b75035cf6a5e43fc4059a2bd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36c89b7b303d091a6995a2f2070048db", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "939ff50a79402737f771d271f2c2af4e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfe6e4ffdbdab6973daebc5ab9a1a229", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25fca85ce0fd26695690cd0e31bdf64d", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb23b66831fcb7892578f511da793994", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e9250848779a4c317cfc97ff3f5d33a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8fe972843e2e35c152db44e11b9f3f7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d9acc5503daf69a05eec07c509460ff", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8829cf017e6318d208788e020f2f00b4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ba70564cdf755e441e702155f0c0dd5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31a934069596657e6733261a904024bb", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf96c7eb17ab06203c7b662471a46ce4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac5b42dc9ae1f90d637aa31bb98b9c67", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54495e8efa9564de239c8f4354b23c2c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff5e06e4cf4ff1cd979e1ef01bdee043", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e67d54cb43fc0d258f15f91190818825", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e4debfc416e2f4255dba2e0203df974", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2924adef855e388dd197721d0b37228c", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b1ba15dca78b67e5e10504d268aed25", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52517a22306cbb644a159c1c200b5e10", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95494bf1b68bfd30faeac2a2968abbc8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0afcfe20a58987c02b557f58aedd5ca4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "602a405101f341a0c96c918b724d0dd6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d112c88e8d653fc2204778eb03f302d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a65b07f4904e651508fd0cdbfb8fab73", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2c00724af09eee9486e8a9cf267ead0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1a71badd4a591180a0e00db4a3928c3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26cd93bfe2fda00d7a8a7cc9c92a3e73", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8916bf24f8e3cb172edb35190ccec2f2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d539232bfdd67c65636820ce186a213f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8003f694f212e4f998522a5928aa1f7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "867c6bd08144f4fc75ef5ac48de57d98", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14b3f173cf7bc8177cd9ea23df58fa48", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a7d56fbaf22f4619d935940d013608b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1af84c4ff83cbbea764bce0daa7961bd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5e68e8d4a3a2b6f60c1d045508e0f53", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a89223ff27149372af091e2b7eadbaf", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 20.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bbc28afa5975a3e1916eeb89eaa5cdd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6e0b829225770677ab7eb42ed5bf8a9", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eff0462d6873e6a4be21f67b4af164ac", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35c02cdee2eb84caef2a2b13ec60b351", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6af9b82b62f600b0a3691182dd715673", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e41257dee649a680c509de4b5d64968c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "352a9dc3ef5062747d51c08408a6647c", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4dbc380f15f7ebf0618b4397c1b937e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc06c6fc30e07dc09a6a15fd5acd6bc8", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b72114c60ce469a7068ef3013e36c578", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18e44feac569a85c70cd7ad3c5fd8a0c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "014fcf13837902ad1a24f2bab845358e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "615e14969551360091535eefe08e09fc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 214.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6428444f77429a6f986e2ae88a66cc8", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6b75ba0f05d9607222396f79aafd852", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 241.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ae84954ee129ca44d376500afccf698", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "913c96c154980ec84493f45ab5dee99f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 241.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ede24e65cfa644f9cf9f5ad7cede5dba", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2577f76858689d4f6c1d116affc030e5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e061638f8d1bbf296c60f377f8eb6dac", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 214.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69de7d16a3e552428902c45000e43d7d", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c4a8e6b7d4c224d220c6520e3ab8a9b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 241.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1eab524c4d999e1e097f31ea9a7f5128", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "070a2ba92125bb507d8f9de1e7031dbf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 241.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "986836467aaf20e487785535ce3e0d65", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "613d6f0d62df9d933662f07c5d4f56bb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33ab2ed429fb465c27a9268d31c9773d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 214.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "561f0e8784ca192fe3651d03af13ecac", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea06c50d53f424c69ebdff2053572a31", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 241.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "433be4f8b04955a8213162f2cc8ca7a8", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb98c7618f11fe354015b371beb5dc57", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 241.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4ebfd9e0453c8da4275a708c4da54c0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37e22db6f110d6d16ef9ca58b8ad7683", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81fa3e1797508e0c06655a37078022e9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 214.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a8f4ec7c5236eb011aca46d85bf1fa2", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe3dcae366bc3463c57e108b610ca13f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 241.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8e96cfc0b60bff1f835a9b2b3bcd952", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "320e677d1a82eeece3db3e4eac7b47f8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 241.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d96e95ae7617db9c3f0116ed9dbefad7", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb82595430a5d0713f8cf231c2e3fce4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32c9a75f70f3937296d37e024623cc00", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 214.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "483f789a40e1b64523955a7e2361dd48", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e597db10e3f273c9289e0840960f2d93", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 241.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6772856cb93dbdd04002d26e3e6d7ea4", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "346ca0e4c873b28797b0caf978cd87f0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 241.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "990476bd19a7acec6694b62ee8a37c9d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6afe78b200e663159dfdbbe826f7b900", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2157cd89d6c553c72e5636b57b4dc7d4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 214.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "287c4065d6db293477d27000fc9f36cb", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9353b5ae456bf7d4c8a4dbc8a370a28", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 241.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "157961a144a6652c6f78217513a9a1e5", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "750fcf6d0e3dc5a5e3cb1f062769bbba", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 241.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2c9038332d9a0d6b383cedc46349a1e", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "174c2e8d56659b107e88b60aa64bd925", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa83a9951befb7f7b44b724e6c0074f5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 214.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85594ede4a996b6cfda819259dc3d9d4", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff8e3da5679c607da5607fb78eed8229", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 241.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ebab528e9ed63a29276cdc5912d618a", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b875518d9b967eecf1485fdf751f4d9b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 241.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "609cae3d1282382b1d3c94dd2bb509f3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3258be76ad653364143af90be32cb10", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9388f63446903989ec15117bff4a69ad", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae58a639075e892e4178608392d7a1f6", - "notes": [], - "params": { - "flowRate": 7.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a69636df117e3c0d70e079434b1958c7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd2b82771924bb86629ee4f86013734b", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43c470c1d03bda782b4a43cc0020835c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "805c9789a8e83f6505d5eb8753fad9ea", - "notes": [], - "params": { - "seconds": 120.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3af113ae8d3e24245dfe1d7e8b0086b5", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "D4" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31aab28aba99d8453b8eb8538e0bb182", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec50a10d7f483163b3c3bc247d9d4ed0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98348cd7e3610b57f3dd670e71d859f4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08b1901b991d103aa1cb1b7fdcf7e21f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7244905632f885d43276544548d91873", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3779b692c1427a505421317fc95b92c9", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c017adca5f28343fe7a1d292c059915", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1259ec4cb09807f1556d2d3628a8f512", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "132f743141279d5d6c9217823d8cc8e8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff6a9e9927db59d2f2f5976beb16f821", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b97a3f444850020f9ae0fec25fa5297", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8eaba6cdbf1c0a40bf4ebd050474a1f0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f120e88ee3b66a54e44092f0a1f6629a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cc6b4572fc681862056d28fe84b358c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6992a9bd5650e564ee1f24a89b72bfb3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf73bb83a85f046d8fd0cf336216ad57", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef302ee1174f6c355d43b14b2c854c9f", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6a0332c116e62252d8dc50c9d643a8d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a074c86a89318da3ec2a918155b04954", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bc5e84ac8af8b6c74f010214fa9df0b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a618c163b0af3688345651492bb82c4c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "551c6671a8f79c1d1023c485782b03e3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ceb9991a90c811ae3b1e67427440e441", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8978c40b70ae4831a58f3214aa1fa2b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2d6ada8e98dc0f1ae009ee6c8bdfbcb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b76217fe6d8c49c866c06d95c1599c41", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0b9b9dae1ae2a20650a79f663ac8665", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "338c35fbf20c54c775fec4bec0b28613", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1373fd41993656462a0e36f02c46f484", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b85b4d866f1052d99d7d73f73a0ac9c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db89f6021820f096dcfc526207d1d916", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12861de9e7d693748e024ff3487206a7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8239c905f9ffe168fc97bafdb8a6492d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e63a7efeedb788d6f294f4424d5123c8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fe771edae03fc6ac503d562ac21c6b2", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ccdf6e22fd90281d026b417707978ff", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f60914abcc9616cc4e77796a90e6e1e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02044c3e450741717f37430d1cc2c92d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75a9f4b2ab3b404ee27cf628a607426a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d69d430f784430aefb28da0aa12e4cef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c920ea88d9e97fa38eeb99984bf89ae", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb97e312f4d890e8173d24f51400e02a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3ffef71e96f683550674e0581a875a8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "925a5799fe18ce6859ba7f7508bc2b47", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2dc849b27f49bd1c132f92cde48ccce5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d2ba6c1c4f2deaed2781d551185be31", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d367df62e141c2f9eb5c4bc48f861da6", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b379a1f732b3b9464d098246bea517f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b62bbf2a7729a028762d97923cd81e3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf6af23665feb5204c0b434c0a2f0dfa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c37b6587b5e4f2206ada4fb3f4c131eb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c59bad8b56f9e5e2b01feec128eff375", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18c78c120c33c431edccd3cd45aec0a9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cbabc09bb87cdba464578591bfde829", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fce8a969e21e150b7292277bf3d321c4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4e53448d3a0b31d0e260bf2aeec2659", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2dd83bd4e0e018988662791ec5cd6228", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24eb1f42c084ce11875e03f35dc9b10c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57c4bad79d967686015201df679d92ac", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ae4600bca955b7b40cc388a0818986a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d46c9b69530abcd536c392b9967f5584", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ebf32a222af733de0608b8b038e732d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1446d01d6bfe8f80b50fa6269df99a3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a047db2ed6ce303bcd8485d774f7dff", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c50695dc9f75a5140b1927bae26b35ce", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cc6d7cf812dc856636d6264e8171e29", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "852897992777c10a0cdede98d8c0b886", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cb343ff407c1395c5a44d190b476c78", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26b02ab492827025bd0a78bf580170d3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2356a0ecd1fea916fb84510ede1f6373", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f568c5cf6c4e07d124ca3b9e65efd973", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a924975bec43fb64fac10a2b9eabd830", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68202db0d6d0c6c3c0a7f54616513756", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4430ab457b85c0f6b1d8ae0fd135a80e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "514c9758fe3ecc2b93eea1569e3756a2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbc6c6d0292a136632e09626b3d3c54c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6474968a002fd2c99b5f92c35b8b57e2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f619d96b9a7950e97e661ee0d8204c04", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "810005eb548bacd5de11a1e4fcd1dbc0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0b246de07a0da80fbf7a962f6660da5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a520556f71edbf7e308e72bc5a16268c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "900b9c8bd1522a4bf11633921d002bb6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be386fbd2c6fe8c33ad2c7b969c3c2ba", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b43ac3e0ec79f2bc02dbc31e47bf7038", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "243b35d543f8aa9c7ee9bd7ae3037e39", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b40fe981c0f0455d95823961567d863", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6373212d01553f4d246ab63acd86dd1d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbdea845dd4a74f3b4441d2741e08903", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10476ebcb2211a1057a8b573486f165a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63d140b2f9f9c8dd6f079736208dc45e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08022478bdb6772fdf56242f47defd9b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e15cfd7ed8a1667406d6678766684012", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e2c4f01c6c7d9c844fa2422d3d1fe43", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "207a509d2d82b69bd684471e9fd06ed9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "daa8224011d562b3333fa6465474986f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21b035d8a59637e78cab0e98623ee59f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59b156e08f7d2d177dae648f40d1aac5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a51dc5f481f9ea110cc311d45048314", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c903115840950c75732f653c4d3f9f5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55f84357e466638f3e13308f9ded8e79", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e20b89a623c276c78341cfbaca09664", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7113e8c7f1a76a7605965855f9afc144", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80ce53eecfa67a31cf2292c5c044a9dc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "724ca3dee65cb10c8336f92ea260d5f5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b9917df51887deffefdd33ce9ccb985", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "429c6d44271822affa6225f495e797c2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9584dab354bb3583bea85aee2d3369a8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09a09bd6685ed29312937b66a116d1d4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04ef69fb5330050b5370ce232913f900", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "304d50f0b306f40d2fc4d36be2d29f25", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aa931af403c965ee5dea0fe691b120a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d5f0558dc36fcb49f32233890253102", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5224aa8699eb63b1b81fc33ebde45c6f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "204c935f895231f930d228e4456bb3e8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13c54d212069740436f40e7f74f33a8d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df2ab36b8672b421bbb00143ed2a777a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "835470b33817dc66ad0ca71313600dd1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebf020b48a38bc5c4ad2d8817ea22054", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3447cd7d141258b118ac302429f29240", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7698644716ba959170de8950143b2e08", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec93ee9a9d5e41c430537805066a4655", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6377dd8e10fc817a37c46e3c0bcf9c6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dcf099fe9a4734659fd819f2850d82d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8eb4ec466369d488a43f99ae634d836", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21993d366ac0a79f1e456d8253113d1b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6d670900603b4a1c9b07a895f3e74a3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "054d6b027564c9bdd998d47e49932257", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b758f2f6205ccd983bbc24a7f171338", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2126c058513f4017ee1cc3df180df3f4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e146b1c21d6a7288e1d8f8333c9ac3f6", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f00a5cd4204e871375dc62ddbb92e6e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b8dd08fbba5890adb4144f1082507d8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d50153978b010652e3579f5ba52510e3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6a52224e534d91f99257070dd9e1148", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b635f1f722995b981f3bafe66d57f016", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f8989f9e4fb5a096cecac932ffb3b3a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c05308cc54f28a56d4120b27e856724b", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "758895eff246ab0dc800f7cba7dbedf2", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33fe6eeda1f5e094cd4658d9b0a2b2de", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37aad95cc2f2faf4eb83f5d81549b1c5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e545e60c90376e3e9d96181192cac93c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b568dfbfa19cbf5ab2535d2508eaf66d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b3b45f8bc489ce1b02c44fab11227f3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f27975282d0235c860957d4686fc0906", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9955d5fc1ef98e56a0543e6569f32fee", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d19fba65e7adbdcbaff1b41385dfe4e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39db7b191e616270c6e7870048b50250", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bd99375649ccd7edf05dbb732fb76c0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1116d57f3145883a02adecbc460b6399", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92dc1e053d43bf70d4b24821557885a2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55d29fa73f3f76f1765e1a5be497b704", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0a6b6e6d909a062a304e4d9debc7270", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ed8e8740dff31919267c912308526a5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64bba6b7cf0abc920ac34d730ff17856", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "418c8e348f5c0244c4b15df45d8bc094", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e2eda5f30ed040027df184e331728d4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef8dd3fc732cb3e78e3a13261d9739a5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f9d86ba1587b466a50a3148baa89ecc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dee7b0d238ffd47c5e2cc267c964191", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdac6b1e22054ef9a95de5e7d6e1d068", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88c32542f8430d90ff6ad54735cc694f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22129a91af8ef3e308af2f6fce89f9fc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7c9eb2185d1fd2b0ab01d2e8aded96f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9098cc6fb2e5856770ca09026c8cb4f8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c635bc046bbb6acdeb722b51042eb10", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5235f3152b91d7de55e09dd0e341cd4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3582c6dc0ae9b50dac6f0cbed23e303", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f1d6042bac840c585a51d7f274ea599", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c589dd50b7f124e1155c5021f5b147d8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19acc48857f5427b00cc75105606bf49", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4595d538b38abd3dac3e618a6831c4dd", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f06e1f220f4450ac0a6e2a0e2399f3a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37ee7a219ade1df13dabce7a2c69e6eb", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f534fbd4df8286a13044214a09752c96", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afffececb919d0fe1ed0048195b940f2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fc8058644844c49914bf1d40a134f46", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a78e6f8bacc26e01953a661db64aaf07", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7768c28c6f06f9d64b393064834e2d4c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c4a7285105ef14281a03b987f7edeb8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f0019b1ae794399efb86d30a140062c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7232fe2d956d60634a5bd8d502e29b7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "009ed0516ace0e7f49787718c7d15890", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c9bd24331ead8d4c752b5038a483c89", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "631c399e4088be07422a59713e174271", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c3369e0711cba9caa9ad337009eb056", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08501093675a605788694aae836f2a3a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcea999b5132ff4d05411eb8a8ad86f4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c73891537afdae504dd5c0d68d6fe1f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06bd43fcc0ea44f42e3dd958f186b2db", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cc7904abf98a2168e60e984842df105", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc1c36f57083d5dff7924d57e1c090c0", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08130b983c470286601294f6a18e9a64", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2904db4613b584f93986db549748fb02", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4a58564d0a9599c2846f7093f7032f0", - "notes": [], - "params": { - "seconds": 300.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d707d50a1a1b33982f920bb3ec0ca6fe", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ea3c2c206966546ac80630a12c30922", - "notes": [], - "params": { - "seconds": 240.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c78c287ad5dd608a759d8fa673204961", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c322305fc9382fe7b1a7d8bf4c722311", - "notes": [], - "params": { - "flowRate": 7.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 11.24, - "z": 35.91 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f29058f15a91d8693c6fa94fa218ba9d", - "notes": [], - "params": { - "flowRate": 11.4, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d500a9696a03f5bf2c1cdead151f1fd6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ed4be7f0a289238a2a1ac18408c72e5", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c45e799ef678388ef757bb9592b8f87", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0012bd2a71b6f74ab6fe272be49443b8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36da8110872120a806e550fc49133a03", - "notes": [], - "params": { - "flowRate": 3.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b2200e3f5f9a70649d304a956ef9400", - "notes": [], - "params": { - "flowRate": 5.7, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ef741699cc875de44075b18582c03ee", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da699b8b1936d6dcec00fc2618ba5ad6", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dea69be32b2bdff3f1e1c41d370048dd", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f516c68979a2d48b1ea7aeb86081a7bf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3203b9cfa3d8517949c84b2b31988abc", - "notes": [], - "params": { - "flowRate": 3.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74f57249e4f7a207393759aa9fa5115c", - "notes": [], - "params": { - "flowRate": 5.7, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3c454f49535b83df33290b544978e79", - "notes": [], - "params": { - "flowRate": 3.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "948f5c950e5965221ba25f433a228530", - "notes": [], - "params": { - "flowRate": 5.7, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48c9252d70b3c9e40144c08aceef456e", - "notes": [], - "params": { - "flowRate": 3.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c494f33b9a929884216f047a3b259f5f", - "notes": [], - "params": { - "flowRate": 5.7, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88dd93e38d680aa09afc453807d0f361", - "notes": [], - "params": { - "flowRate": 3.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f16f37b0806318ec8a1a4b6cd318794f", - "notes": [], - "params": { - "flowRate": 5.7, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbfd7f372213e967d7fa7191097083d7", - "notes": [], - "params": { - "flowRate": 3.5, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37bc021ba5be3fc7e7ebe6b268288d3c", - "notes": [], - "params": { - "flowRate": 5.7, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 15.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 15.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87cdea98f9262e74f01e66f482f5cd07", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e5fa942658c63952763730cf2c3e5ae", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec96fb12c7db631b756e8764262899a0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39a6a54532f73fed3e123466dd723f44", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2657209c18f785507ecfca64336d9e18", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 72.5, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41d18fb7444dcba0cfa68c9fa2a2d0d6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86fb0c73bb7daf7be37b77fbf7dce002", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d94d92612020bb6bb31abf2f4ec8267c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f87cec99917d7ccd34a68b4fd11ffdcf", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46c2aad2632daa5aac174c20dfe8222a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4121afc8a1bb277889022ba03a4da903", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a7321194b5e08a4c18b881ecbf82368", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4600635b468c16507ef294cbaeedce58", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d97d5d9486560b64a6973f0a3143d508", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46eef9c30e670881c0c2a326d6d35cdf", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6773c8da965214a7be1e21bc08917748", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c5ee1930c46ab31dee042d8d251ce89", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "375f532fefe6328c748e1c8592439421", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab8e9e71027abb562c697344b91db35f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd8b9508706e18aa43f533dc28a4b2bd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e501c4547362063adcc330c0bc3af3cb", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b56743464757e0d091fc510cc5daeaf", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd4d43f8c81324eea778dd212c040362", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75326a3871cf3171c0cd67edcb1150a1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 241.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1de97d059fe8793db567424c8f1dc272", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 72.5, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a88d71f9c65ac4a00258843ce725738", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7bd8af0cdb0fbff7ce9e2e94b548c56", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19675cd9a6bf6183d7516210631de3e7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35ecbafcfdebcb3afa78c1204918838f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "174b2c60ceb5e3f3915984136f315d60", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfe56f69348252aedbd3cd503080a91e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00bf07ca226a12c9365c71f200f2bd20", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a439b51de1f541e931b8d5039cccb3f8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa11355ad4cc5d4f705deacd0ab9869f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df0eea1ecb3e8586d39b164f00894c29", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbce5b3f4a064f62db2333204c0e8566", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad15dab31173b3ed0d39db5f52878814", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9d1a2af6715345a5e8a47a4d00559d0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8925bebbf8e6498a105d1e9cb4ec5071", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae6c057f7a8ec74190aeba7fa89b5216", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "929f923b7e63e7e2595585b18b8f49ac", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 65.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcbe187a8f475dace4680b3e68273ff8", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae1787dbaac51be61e335bfaee654e4b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72fe91fc2621facbb5c2371373335f92", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 241.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea84ddbb7cac0dcd8535a45469315f90", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 72.5, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "860697f5e1be141f025464b6a2fbb5e6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b6722426bb955a3bebdfb8ddc380a85", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2762be144cbebb0e2e718839ae4dbef1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03378247a78ea802bf173f973a6b5e87", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33505433d35addbde0fe335d047aa822", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8cef27267f166dcbe33021550cc1af3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2af9ac2efeb6288cb65b12187d303e1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e70ece7dda19cf62992d60f5d450f7e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20734851dbca9d35fe5f566425694643", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9ecf047b937aab336bc8d8cb4d26b1a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e539325803c90385610210c480849908", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbc60c75a5f796d6bec88b63be8f9a40", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21e3f45df88464a2211e318fee05bd51", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5920d776854530494bcfabc0c3694328", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "701d7c83353dacf8f7f931870fa974eb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b15caae0d5477f08b5427453824778c7", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 56.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7e0c1499637bb47db0c71e947f6b33f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b0c11bfabf38f1a18483bff2bb6d718", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1b402eee075c6da178a468e7e1e826a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 241.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba895feb75f69d1a9bc743248b69b715", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 72.5, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7372aa6b7f292c51e1fbfe57eeada4af", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c75fa5b49182e9972c799d8de0511fc5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d09c3ff75ee9f5465f081d01b3fda6f7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84ae9ad0c43da33b589d9654967189f9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f72e095f261810ee445ae9143de35046", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0fdf26517d899504a6aaa4bff1cb888", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "513daa6a834d7d21c26a88f8898fc9c8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da69d3779020b892664c7ec932dcae63", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4831b8ba291deacef459f04d5b129cd2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "551eddf9e0b60111a33e82d401635799", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7da1b405f7c3326294841f3087ee1b58", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c01ee49f2f4126f76ace435d36d9084b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "889afde87d6a42d6b5fdcc40a3e46df0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2adbe2ac85baff7686b13d87d8596c08", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83c4ab44ce0b0f37266b5d0260a8da01", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a78990a017bdbe849a045664eb6d4d83", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 47.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00e06e94595598bf88cc44c70af6f34d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7b8b78563da6641dd7d4a90fdc2802f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "561e103dae81e1ded9ab7902d947253c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 241.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "126c7c3740b9f8cefe01049365c6051c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 72.5, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bc1a0525c4d921b92cb856e8e4b0dc8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ed7b3dae6eace1a361d0583aa39b569", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e08b85dae276f5299f7a56e076672458", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98ab9628e76debcc0515254afc536ec4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab472310b89c19b95022582b2434078c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0f73ebc296c9d70da137331c29495cb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf1d2c9c2a35cb05d6814d64a7aca060", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "758e2f70d9e343d53a185a3142adf976", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21ca22f6ecd84fd8162a25afea337006", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3f24413ebe598f32c92bd8ef1e26497", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d351baf18a354c026695b851070f55d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f4d2142ef5de06b1777d5de4080de4a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df3080c1ffdec15ebe9e6b324191c87e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6b48ad65ea74d825b6f02ce492710e2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "548e6c40383acf256598dd9d207478be", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99c9bd0d4780580fd7d971c9843927d8", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 38.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ea5ed83ef6d193745a1e78126c0784c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84384e859905d98f21c7c678974fec51", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33d7093db6b12ab6ecb7c7e375831793", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 241.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8121c3a4b5688bf84005dc0e9429de43", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 72.5, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e22ff05d6e41c1dafd94307cbeb02832", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8e8a2b6c59d16dea0795337948da345", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5417dccc94f621ad76c02407da185b94", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "711bdfb71a0cc27553f23f9b4e06e6a5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac05914c69a124ce15acf3c79158a3c7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a840e1dca1aed580ff228b85079bb9ba", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dab8de9df4b936874cc3d6d794a59e86", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6240c3527763e4bbb9b623823fd8a02c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc23d3c628ed4601822f7252d583aa6d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1a174d8986f97679d79613088edffe4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ac6003c639e7a8a9fa8fddb9d3806a3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba8aeb2c568d37851df8d6df645f39b4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56b8356c289ad7e69705ed9ed4f569e5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56dc418a3494f6e8a2d94cbc832b40ec", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42825a1c20cc1dcf5b05454df53b3647", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0329bf875f96fd8fbdf617681b6b7159", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 29.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49afdb63b25759feb125acc66d424deb", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09bb798789f32d0bfaae7f4daf17f734", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abe94867ba2add0d126f19fefd0f3bc0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 241.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d19ada57ba6be94ea97eab7f284ee449", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 72.5, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c6c85ec951de9740857e14f3a588ea6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a33ba311f7ed0e921c2733e41ad506a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b688b3df2e7c1c55a122b8344b31130", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fd204d4e084652bb5684c3da5f3ff60", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23b88b660fa885e9f3314690387d5984", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "356f7bc46d410e90cc86b60499e78fa1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4d906a221753b2b8d9c8419e1f72167", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1af3c3bd30dc25f8e2fb41d28d333e5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adde2fed4c583f88f2573c130e655188", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e260595199bb547619182df90fd79819", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79861de277cc2618846b5bf6f3efc25c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e172cf661f335647a0fcb30cf8e48964", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7278d1f7e01d5b2d38b34373f6eec6eb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d617eeabb8ece32b518a80f98af2e7c2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22287b44e4db0ddf3397ea0cd379de8d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96053336e9cce9bf15311da9e0a3fb73", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 20.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d169fa422d0c6be9b465b435a8c9a937", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "019bd790ffe45562b9b6e6a4f29d7b49", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce4cbb7bda6f3764b9b884373061bff3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 241.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2dabac7394d744ff44ca8039cd1a8656", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 72.5, - "y": 158.37, - "z": 15.800000000000008 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3ee77bec06c211af80ddee433350823", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e47b95a6317e1fd3d5a76d22d0191c4b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a7ee875cb353fa22a54ae823779212e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cc0c33d0c27609aa147bb62babe498f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ccac3c9848f6172238ef29798fdbd57", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b57ec27474b89fb886855ea0082a032e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cf1d59daa828b0327a9a933329ac7df", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "600e99765810176f580ed7df8d6fa621", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bbdc846eca1fc96bce4e8bc8bbad4e1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01f280762b0b9fd31280e7eb854a7c4d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63736774acca7cdbfd30eb7b82f92dde", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a9a33d8fc4caa7153211b3f5686a799", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1adc6e334037e45895c6f8ef6157ce1d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "561c2a0684599e14adf1dec1cc4699d3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88a361cb9d18c74b20e52f0a3bdd9bbe", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1426e0883ba9484b9f26bf0ad6d2695", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 11.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf7951f4c40b4ae7c3eebb976dc4969c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9919ba77cada69c24af246040eae391b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86e9ecad17a86970cabbef420c0e137e", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7022e5aa68c4ed9b48450b71816e1ce1", - "notes": [], - "params": { - "message": "Add plate seal" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b319c968c0f61bbfc42e094640d28d4", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "363529cbaa2a5959bcba0ec3941666fd", - "notes": [], - "params": { - "message": "Indexing PCR" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa32ee446327b2e85b13aab6233ac977", - "notes": [], - "params": { - "celsius": 105.0, - "moduleId": "UUID" - }, - "result": { - "targetLidTemperature": 105.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75dd3173787e0dadc20d2eecc2dbd43d", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5530af40b05434f4b44bc7b8fc76ae89", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5ccee7e5c9fb9c5787739cdbbe49ec7", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "celsius": 95.0, - "holdTimeSeconds": 180.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 95.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0fbe6accd8f2a75806e817e976d69bc", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/runProfile", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "817eef7fb849a0d663c23ff578c1156c", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "moduleId": "UUID", - "profile": [ - { - "celsius": 98.0, - "holdSeconds": 20.0 - }, - { - "celsius": 67.0, - "holdSeconds": 20.0 - }, - { - "celsius": 72.0, - "holdSeconds": 60.0 - }, - { - "celsius": 98.0, - "holdSeconds": 20.0 - }, - { - "celsius": 67.0, - "holdSeconds": 20.0 - }, - { - "celsius": 72.0, - "holdSeconds": 60.0 - }, - { - "celsius": 98.0, - "holdSeconds": 20.0 - }, - { - "celsius": 67.0, - "holdSeconds": 20.0 - }, - { - "celsius": 72.0, - "holdSeconds": 60.0 - }, - { - "celsius": 98.0, - "holdSeconds": 20.0 - }, - { - "celsius": 67.0, - "holdSeconds": 20.0 - }, - { - "celsius": 72.0, - "holdSeconds": 60.0 - }, - { - "celsius": 98.0, - "holdSeconds": 20.0 - }, - { - "celsius": 67.0, - "holdSeconds": 20.0 - }, - { - "celsius": 72.0, - "holdSeconds": 60.0 - }, - { - "celsius": 98.0, - "holdSeconds": 20.0 - }, - { - "celsius": 67.0, - "holdSeconds": 20.0 - }, - { - "celsius": 72.0, - "holdSeconds": 60.0 - }, - { - "celsius": 98.0, - "holdSeconds": 20.0 - }, - { - "celsius": 67.0, - "holdSeconds": 20.0 - }, - { - "celsius": 72.0, - "holdSeconds": 60.0 - }, - { - "celsius": 98.0, - "holdSeconds": 20.0 - }, - { - "celsius": 67.0, - "holdSeconds": 20.0 - }, - { - "celsius": 72.0, - "holdSeconds": 60.0 - }, - { - "celsius": 98.0, - "holdSeconds": 20.0 - }, - { - "celsius": 67.0, - "holdSeconds": 20.0 - }, - { - "celsius": 72.0, - "holdSeconds": 60.0 - }, - { - "celsius": 98.0, - "holdSeconds": 20.0 - }, - { - "celsius": 67.0, - "holdSeconds": 20.0 - }, - { - "celsius": 72.0, - "holdSeconds": 60.0 - } - ] - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d072668d2d807686eba09cb6417149c", - "notes": [], - "params": { - "blockMaxVolumeUl": 50.0, - "celsius": 72.0, - "holdTimeSeconds": 300.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a98253fe3d9380f7b25fa6e1aedeeb1a", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "416f61aa8b2e3dbc4b91725cdb67c1f7", - "notes": [], - "params": { - "celsius": 4.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2880d02959844767587b10de39c025fa", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffc0344272b35490c5d3419ff890e694", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7e12708b4b29cba4f11f35f4bfee41e", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4328a0158b46387dbdfd6d35cb4d6d24", - "notes": [], - "params": { - "message": "Remove plate seal and add 30uL to A7 well location of plate" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01ef5c0a20b9dc548e21c3854d15085c", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6721d112254b95e6f98eeba56bbdb5a", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27767589efa36a3b1cf671683db8db49", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a2c45ee26e720f1c261c4adf34860ea", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8491259504e792ddb90605e359d4a87f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "944cde3415f5cefc34657158a5342318", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92a0c8c5abefdbb73b4566c9c0d0f26a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c8c4c3b93457684c7f1532f2435e68d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c2e878bcd477a8391f3e5b7584f2e0f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b1563d8bc281aa5ddd2f2bf33da2727", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c60828089e543b4169db08c4b9ac9e5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b03796d458d71f2d8fbb88a14f6edcaa", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7a0b3f93ed9182d32c518acc7a7d195", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af25b5c4d517d14d6de0fbf54ae9482e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ed068ad82443ffed1003e7ef49722ef", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc6450fb7ccf2faa48628f5d5a4f85be", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4165c050030cb44995e478da353c1352", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a8805fb9ccaa5ec385041afa972b10a", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab08f3516b9d128534654552d4e209f3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b2b1caa37728c8e1ae9f7a2f1c9c4a6", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5da1b8b81b1e760bcb2d3f761cf3773b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dc5177760a39ab6f92a9bd10d028bcd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4f766eb06cc71961fe1899765bcd3ae", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbd686f08c99bf5a730f3a052762274b", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc2f1e0a8474e131929f2bc016c9f0b1", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a74cb976aa143b08778949c454cd6e43", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70264777c371551d766b5ec40bb47b02", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51ff6f38ec50b4a4bf5927c11b8ddb4c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88e2f121234c3138000206451df3b463", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7d2cf11945867054a7e5c48e42d8507", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39b29d420ce6508d5dfb6697c26b498c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc7b1641fbb08b63e43087c4fb529c87", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a408e44415be9451d07856bd4eb529f9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f526ddccbb7212f95ffc8affd378b9a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aac2a3a15cd6df22788043dfa67e78eb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e33cf889dd8f5c3fe5dc5c3cc2c0457", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d11d4f577d06cc2f4c9ecfaf7f9ff0e4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04ae4df46bf1537668f971701df38a2a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b1793105d42c2793d886401cd737c94", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea11bf0508fd1dc04453442b82bfdf7c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da7d0c6da37d6f4a19065b3b41915312", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efb838f413c7262e8f9e775d38c645d4", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2842be952522b2f9c65ee929f3c3ef33", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c2bb7f91f5058d9c9a81c4c3586ca27", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfb4cfdeed7445fbfaafe493f19135c1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fdf78841606c6d39798d1b814506e21", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9bf8ccbca6c0406062b18ddfc882777", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a04cc0916459423b44d658f80c18b2ec", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e57dc523247846bc5265d79f05f3e849", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "455f4fcd65d60929f3066899fa6cb85e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cea4cffd038d7e2eea17b7c95cffa32c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "998a4c2862633ecf97d2ba989c62e587", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30bb4fdbef4502f0138f1b97a566fd43", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e714710358519963ee8e0e0bc421bed", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "723d1bab1bd5f056ac60871386182512", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb1b92d43afa6448f2a4f9b94445b893", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97ed662d58e1f77cf0f2dbc9162456b7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3a0420b7c28417181de5b285a3ca836", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa12e437837eeb1f67c7815a8b7dbdd0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cb92a5009f58e4eb0e5ce0bad0b26b9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05b3492ada2a2f53a176b421f1c45cf8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82e49b7508be7373c0d0ddc1ab4a2616", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce25b2f1de8348dac82471e7e641f5f0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d09fd0c9b6ad814355a64fdf9c41fc07", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bae13c47d368291721d31692b82b4fa", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "047857aa98d24691394e4b08ad70a79f", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0221a724957899d9f146db5e3000f49b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42cf87174569d878ddedb6242654e246", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1f9e2e66127f04cadd0266b3477fe7e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 259.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68d000788f5f97873f3b092ac9adba59", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a02c898d7dab17b613885844195f486", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c713b5140f2c3a7eae73dd077d2b1db4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4be592d94c6faba881a532e7159a8c6e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e16c2bc0d3822183ca18a2e43c7d5ce2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26583c83ef860dd416c46fab78d5315d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcaf9a057a4145887ddb5f81d9933886", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "898e108ad8097583c8a524c87610ce6f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2073b6ca73bd3a0a6485a9efa86cf031", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0f9fb12e45999caeef2cb7ad88e5117", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7391e9a6d898bca18a13ee2b82e4414d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32d4e7b1a5b5ff3484a57fa0e58a9fdb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1527bfcf89d3b9ae240974816e26025", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "225e8e14b53396a0a90adab66923588a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0afee23f5d756ffa4bc6d7bdd723990", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f943d1f520a79b158c73a51255bd1dd", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3baf5b6872af531924ac60a932fa73c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2e33f5a780ff7d1e5837e374c387636", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 259.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "420d53f3f63e4f44c1f85801dd1c4801", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63816edb72b391fec3b7ad9ac5a07966", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99f9dea9fea7c28c562aa469b8e8d042", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c49ffb3785ba6750a7889a05da1b772", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbf4d8460a11e71a51bfdce30d8a93f9", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4281a188a308d36c3530db80c69d14dc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc249b83e3f6093dcbc2c17186dd9c04", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd8838784a30cfcbbcdda19344e8047c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e8027a2986bab44aecf1a7544263dd1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c5f08b6cc4431cd6cda0ac2148e0fdf", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbec08b5c1fdda4860cd8c2dd55c16d1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88ff7268c5e676a8d3203c69fa0ebf19", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63e51699f4796c9a58e5e481aef279a3", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c46e7f138a2e7943512902518e5493ff", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ebf3ecd187f7d39013014dd4aea7e8c", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e21048bbef40d177ecd21b02355db495", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9758db9a6af19351657a352f7e643b4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77963da0b958b7aaf86f933cafe2b81f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 259.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a48550851fd3fabc3e7a96f8a2e94cb0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a870de862eca625eca37622600081ddd", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0a6985a314277ceedba773ad963632d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a2d892871175def70e510fbef19315b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "156ad2d30e912f419f96808b27f28b84", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5945cf57455cb1994a9d9b3258164903", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "beafded2abe4b4106dfa8d242a77cc59", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "631dc146abab05fbb510661160cfedbb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51eb4875d25ee03af161deb55d182b9d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e092c12c096ab86e524076ecd138761", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "604fe2abf312352bcf74b4aafedceeb8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fcfae07f33cc0036aa4ec5d6de35f0b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fc71e7ea505e79f0bfea4d40e1e0987", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "687e72e773a1b14a8ae2c26e97d2aa5b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbe58ab83db3187f98b4dd03cd94902e", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3344f33a210e6b44ebbf9b3a19666c3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0843111f59e21bf34701f0c18b12d27c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65a03d88f8ae9485ac8e7f0c4f567cc5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 259.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3bcf914aadf0c2febdb5c9fbba4a704", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "679e0fba0a9bb05bae67b2ac7bcb0282", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d8ca0b794364b5945085ac64964b586", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97b3e0750f1679c3d06754111b485a8a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b0633bb16ebae94a91fa2aea9844dd5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6b712183e52196d117bdcb24245d67f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2319fe057394defa853cdb17d1b3e048", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "189ccab00fc19da6c27d5fdbb9e4f08f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18bc04b28ca6a9963198253c09191777", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ece767fa5fc4ebe203e371454fc553d0", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87ade0ad7f9611736d409ebcd260ba6f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4acd032ae1e2f5703ff00d48081154f7", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f79d8bb4c9bd76050dec5e9dc5d48e56", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff66b9c5810721e50426b38372639cbb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd239344c3c81aa25ea16682aab09e46", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3d28161385bf72233a6ee8a1ac56180", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "994c212d4616d3d4b9f328b0bac954eb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "317dc72167b46f4679280121a9b5cff7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 259.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6231b282553de3a7f55f36bd70dacb67", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b05dfaea018e5580ed3e363a076880ed", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2370bc77c758ad3b88bc49f9a308cee", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91810c3a9681b84b4112d8e4792170db", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "113d74298608e43d4b341adbd2e7d4d1", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0987dbeb11f4396af8b1a6ff0f1fb9b8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b83dba9244906b14e2ebd13b7b72d29", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8739dcb7fdc4e64963511fb5445be83f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06ecaa4d147be2453c758366a317594b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d62fbdae4322b4ac89d854f0c7560c8d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c9c7cd61038f97816f4a0a61e90053f", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f6b5eb55b3821af736f951e808acce4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b57c3a07b91c554f0b1e454f37714317", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d95a24d0106232269c2cb80f6dd89d19", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdecdec61f0b1686110c00c46b87d9d6", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bccd71e18c8295190ed4cbd021c1210a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b01e7f5ee657be3c71a7dfcec5e416f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1a370564b0b2f3fcd3bac6b8c1ca52a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 259.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f67ec40ae13e4de4fbd10f90245d14d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc95df9f154a5e4e869b68675968bd43", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "679baae62760fc9781a8118264f92e54", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b30b6609fd62c0cdd959fd301aa1ce2", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc954f95ee0b0a22b36a5ea8999f5057", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b5c7ce49a698e866403cdfbe4112f9a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a5063db5c9091585b19dc808afa2f98", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c81044a6ffe7a60487e14e40c6f9f927", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a38693be0ee0f9a79de8c84d513a2f7c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce11264f01af0780b19acdfb1f389661", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3642b51e6dba94e4f63625a198a7c726", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1de497dbe21f90fa40dc0bc05a1c79a5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a9786fe92114a544d76d2d8063efd53", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29cc44bbe288eebfed71e12d7b2d347c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d915d80f256582bfcccf577cb15c9c57", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01d3fdf64281350bf7f78de922a2b5f1", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f39c56e8f077803b452973613cbcb33", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a59c3afd69d6033c42109ae2aa06cdbc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 259.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1e8372ba0a5f3088c42e0814f7dc646", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6d1e2cb68a60b71288b486f499d4e71", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "476030cc9b2dcd03bcf9c9ccbb6e3faa", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74606c824029f78092dc1f8dea5ab4b8", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5216bfed2728685e575027eb0be98027", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac64aee9fe0e375b3c8645f0238db843", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d539c53dd853accaa31150acaad747cb", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02ed42ace9538f3d06d094a773f931ad", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bce7d417c9af96ab1b808d9ed5eabe86", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c6efc8ff45889821f814b0ebaf8bad4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e643bbe68d52b892b5a5185ccb685a1c", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50349ec7001ed37d8df5e56ba7b5ef17", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41b6be1d3c2e20507cfc3dee889ee8f4", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa1a8561f73a806c4feb194dc012d5b5", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56633cacd302959c32ed396df864ef65", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84bcf7d7ccf70bf061667d667374070f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79aba43083fdfe4f7df37515cf47a5df", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9cddb882b811d7d555baaad3af0bf5d", - "notes": [], - "params": { - "seconds": 300.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c6acbd90b9a424633328b3be51509a3", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "167cd4c31bdcabbb1be87220eaa592b1", - "notes": [], - "params": { - "seconds": 180.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d489cd0c1675cb40592ef463c10aaa5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "967dce44f6b2227cb23928b6a274d599", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed231f64879f99a19a571a0710fd742a", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b17f07bcc58536b89aa6b9bf44f43bee", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4094bc7fb4e490db3ea7d5214f6b84a5", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "581469f8ecd6352ea8f1eeae85de35dd", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b7087d4dc3a9bab7829af559d9dd255", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 268.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "169001e357c3a9d0be4be70b6087a1ed", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9eddb9d7e3aeeaf10664d6837b58740b", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35129dd181f05133172fd6689509d369", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 65.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a44adbb9d12108f689cc998fb3424cb1", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fc155b8ee31b9708322f877acbc9d02", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eafc3507c1cb922c369d21aba25a4450", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 268.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a04acaa1a420999111f9543599a31284", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77f57c6acde2f2ab1aca370fb44cfe79", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "589cb99af0120a9062c3b66cf59d89df", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 56.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9ea36f5a26cf097c01e7e5f324472ee", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fc6d5f1a0d1dbf18de6ccddacf6cd1b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d96de59063483bc462a9f47475bb24f4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 268.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a00d3e8b7120ef12ce1cdefde445099", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "891d07840841d1c07c5f866b46a6fb8d", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1617104041e380870d029b66e6ab17e5", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 47.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "949deed51ffaf0748b9031ca7d7865ab", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b3b43017809119ac16ad9d2e98c4b31", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23cf72bbe256f67006760d3c9f29245d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 268.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b197e00d5544f3a194b57d285c3ac26", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbade56ccf383528c6bb49fb57db28ca", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70e072133c960fb91433cd3c27bb4788", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 38.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53a1336f1671c17aa0035e1a4d27ef03", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b388756e701bfda857b10807829b5c1b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37f4cfb6179ccc7d3eab07c6c37ab966", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 268.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad0933148114c03853d3fba6c1fe22cc", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70a41b9a3de4012ffb10182800c385aa", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c0d9b5d054d2a49c27390f34c42928f", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 29.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95382ca698b013ff47f98eaac522cb99", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30c9b73ce5bec098c24c5fb39b8a26d9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0584733e741390bec67624e96875328", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 268.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9f54cc492d63b95d33d34f67f25f75e", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f4db047abdf5a0afe713bfe9059d276", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21c87c21540a7fc22712c310e1359d92", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 20.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ba1988f9e304f2c2f4dbb6eb5cc709f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4024daf4fe54b36513fff48acfa6f357", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6fed482cfd77e8a3524b99b33d767511", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 268.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6bb9efa1342a74c2a40477dc2e6f084", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9e4d0c2bc48b6979bd802bc39f58155", - "notes": [], - "params": { - "flowRate": 71.60000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "797586e2c8ff1600dfcb7329505e94e4", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 11.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b583b4dc463944ef27b433d8bd2f0459", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87005e436054d99492c608e80c083d53", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e77283f6d44c602a637872ae1bc41a2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad3be8be58ff1fae79b5100601ef93a6", - "notes": [], - "params": { - "flowRate": 7.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62163a1f7d397e7c3a85c9122cae62ee", - "notes": [], - "params": { - "seconds": 5.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8239444ad091c74d59ddd119d426e71", - "notes": [], - "params": { - "flowRate": 11.4, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "455b9b1ef2f03ba728b8ba3086d3e420", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47c06b3d206d1fe6d892ddd7f1a13def", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46b9249289b0c42426fffa1e24df9b46", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e847f247910b4a782d14f7a901231ab", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f359ca3ed9264bd509ca492d30a1bf8", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8b81f3fb307e53aee586bb3ebe2c0f6", - "notes": [], - "params": { - "message": "add 10uL of Ampure XP beads to A4 of plate" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbbcd375ecf16452c1da65b39a56eaec", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1af2a1ec9818bc650b55ba66c2fabed4", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54c8d71d23c18b80bf0ef167ad245031", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "314118ffe5d4e21737c1ec65355db16c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de25fe2f8307555745a5028c82fd46cf", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69f4c7f797052e239c64d0cebcb95b7b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d17f33aad9b475e0a6080bf42a2a351", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ed0df629279d8c5962637459eeff76a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bc8845e3cb38625471bc3db972a8d05", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9767e6c6ddec9817818d92308cdfce05", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de489b1e5204ca92ff0de89be64bb48e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a76c97e2aa83b658beb4905832200e8c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d620b58e6ff6973586afb1cf5d6b7fd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6002c89a4b55cb618586e22debf812f7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b01221dedcd30b2e4ad864ef2b1ff7e4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c635a2e031a49a6a46f742917103126a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2743ef2de8c5fa12fc1b81751b40a5b5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3e1cc3c0bd1a76b7686066d704d80f6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59ffd930f9758b4d63f41a3e7fe31c92", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d43739710da358481320eba6b50be646", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b393e31372654234956c61880fbc9d49", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a12cca02f2d73274dfbe7fd1a87206d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e316bd9760c02017c3fbbd39538d3ff", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d48dbd2f599d8b38634dacc755011279", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86c23da1c554cb01f41556b892ba3605", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58cecbf1b4a5a005cd6d736c98b6b378", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19428e1a74771714d76ff2c60d67dbf5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 277.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dd3c2a7d6dae66ba90f17c7e218dae1", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93fa15f080e508acb8473741989aa6bb", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "197729f39474ce081561d5cf20f94f96", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ca290c137fe98c35386f9b401fc8361", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ff94177c5ba55165ef239492ce52ba6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2566085b381d1401bf137e4a9fb9646d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fca40b2996664a193008494949003c80", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d46cffb22b188d7ab3471e093df0ba52", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb21797a142ff083872a68ad22298793", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e4df07df748f5bc831658df560bbef4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83cae144c69283ad19a1be3f05944fab", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2c751fe3036c93f3e52dcc21aabe90e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fa27061b4df69a2c1242ac24b95c645", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aa23cec011c14392693c48088b2b9ad", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ffc047854de0f6226df053edd7db2f0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41417d534d260515426ed2587b0eeb86", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c53091688db5a38993f433006370ee93", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36538c1508b31ce68716ee3cc4a917ff", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30e1392d633791e645f5af9a51992f4d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9138c46311d9b6677d98fda8145dc204", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a33e90789ab1f3d4383e315d55dfa3b4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91b41cf476490af97046ec41a7791269", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b31752f5e8a9aecc656ca2c6754fd74", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9f1cdc17c09497015b48df0b1fa8c1f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed7266cd0ab5f6a77bef7c73f5522292", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c43eb9cadaa20dca583f76de189f7b6f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 277.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "835a549871355b720d367658c02b1f4b", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5a24807b094dad1f454af123fde132b", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a67aeb7788dd595843664d39607494e7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46e09c18ebf1d6b66d661fede8712231", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3560497c86ff8d39a34ff763702569c8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d5c7e564c24bf46dfc9b7513b188c72", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fad53d1b301e4e199a0c99f8686bb62", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95c33e6e617e5f3555d195dcb2fd0b35", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51b0b2c49c853f1476748443f54fe2d8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "584839d67a75838639d2430bb297dfba", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4be84056ec4c82c2167e48b31ce585d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebc5cee0ea97c765699446efe5c3638d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94945cae794c05f6107379eda3055db9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "255d0fdb53415af1f9807ea290d7bbd7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca85f256c7fee4394d2651a7921fc8f0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8505bbef79d5e84bb49b7319379402e5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72315822a34b8fbacf2c39e40e1cf76f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f057da13c9556bdf13ce816e87ccef09", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f61a0050e9959984532a4b4df44e611b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b20358706eb4fe558d052b08fded9ff", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7135bf175f617deda37b672ccc45e39", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9238224cf5470366253e98325706e20", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c892925f7ee4968a53a11fd39618134", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a672c9335395870e5f9f1b51165a5543", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "267f9153bb2db58d33a24f9add2dc493", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e169f73c9db252fb25ffd22781ceffc0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 277.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e22fae620c01521fd5bc931129927a54", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bc1b814180477f2acd602f58000693c", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b4a00650dacf866dee0f82b1bfb2847", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35f97e3b496a66adbb623a79ea37cec4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec89406ebd5c341d6daf3e5fc7d9e6a6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df73d63c604cff7a1c9801c27b79b2a6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75e80bc1f88e40dc08170528552fc91c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b516fef6353f4631940ecd4913b9329d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70705e3778c85f71e0e8382e0d92ffad", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45b5e41766e6142c3586260deb3d7f86", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "002b4f66b89ebcc540fb37f8a8af2de4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acc81c638aa1cc204d6adf0ee5f10186", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bae44a9043fe64eaafa05390925b05c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51be8e07864db0ef3f057303cd16ca96", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28b670576642608d92d5ddd409363530", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e88ac3870c9fe782d0e0d15c272e65ed", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "458ff5aaf9a894f92bf97a9beeda4822", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78f5cf80901e34a019e79ea528aab870", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "239b14ee6c406ab4eccd567a56c6a124", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f23edc2e1c683fbf22f4280b0faa808b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "034b63ed303611d10fdd46c88bfaf139", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a3e404540047d70ec203bb67e95b055", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa23d95388da59b0b42e614e5fb420cb", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afe009c20bbcd1e23813300511313c1f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31698833a2c935d419967d3be3f94839", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c595ec471efb1409e1fd060f51963190", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 277.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06e58e103bcc0efc877f92612b971a0e", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47388050481daaf53e209bc61967ddc5", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4d9098ddee45da91406af582455db5a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "806e72b414726da8f42dd5f1ac2b4b3c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acf5445fb70b82a468f42b57ccfe4792", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4061744e09fae5127375c5392ca0d9ad", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "485e56b5ca0edb4171e56ea538747296", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b873ed1cd61aad098d66c4fc7b79d9d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4e6b45c589d141f3cbff69d301e3a00", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2881ca0a77d947543d45e0cecdbb368", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "147358a81a08c62a97958dc8545520aa", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2327016225582a8bc4d6c24a5d0f696", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa9679f8627b9db579627c0d68b958c6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f07f49dbd14032075e88eb56649d2ce6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43ecb67893785971ea026aec759445f6", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "585bb1679a170a7a7e0e8467865cc32f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3312a696a81a9cb5b715892be2c11450", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8209de9eb72f4424831bd5ca73b1a78", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1df444d49516fdc04a263f9a7c8e1e5f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b368281238da0fa23ed2b8c66e6f3f7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "341d4a900e79e2694e9d011256296c04", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83509aac912f0241de989d5ee4382874", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f2e286465490765f1d1680ffe612439", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6c8925dd4584828bb2405075ffbebbc", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d1b2857f4e91eeb9ef6b88c7fe705a5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9548fc9235eaa6c0fe78712b560e6873", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 277.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e07a5fee9c2398b5e2fafa424e12d03", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab523cbff699df8b61191536ee81bab9", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0836a1f6001c8a651d96b9bb7f268e1d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a0ab6ef2080b2f9faf5ba0f7bf5575b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81590e63d72c4185e05b92eadb52f752", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e2689b2b294ccdcb4d5be23d7ab31d3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5a2275b279c48c52165271600e3d835", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a60a4fb8658a019d00e5cede65c264a8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34a3009a5cf74e7e819043b66be22015", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e471bca25fb2ce64f12ff87a02f436f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bee2ead61abacda6e2fc833ba8996f2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "009d1fa63adbaa9cc19d49662e67c4b4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd0de453ab2e0095ab35c4d6aa06f438", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "427b00cc527caf8d2ae7d1eaa885e8c0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2eb0c5e4246735dfff03f49e597062c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7570ad297c5687aa9145c87fc63e2c88", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c6588052174f950145fd001315e51dc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6d0bbca188e71421e7bf7a7d4916e7d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5aba869bbb8ea9c7fd258dc6c708a357", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68ff172b4ee11a9d5cb569574f2bdbe4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa107ff846e1720e9964500e1e25cdb5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e4015550b50652635473a9d8d0a50b0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51bbe43119986b5867a4f47caca5d54d", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce816593671d047ec9cc72df04e8b204", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a1c067a488582d1fe6262b835e1f684", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae30ed5c5bb12564720cc2752625b83f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 277.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78e8f3b8685e1fdb47b00af26abdbe86", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfc226393febf692eb6927993394c782", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63dabcdcd3cef1890c2cb785c0571983", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c00a687cfd18ec6ba493d75ebcdd2c56", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d35594b5a76125f81aecf3130def0620", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42b9af29461b3e4697735110754075d1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e414094c8ea9a341714802d08fbb34e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbbb611c5801c1600030332dbc4f6aaf", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "256db03a7ba4a2b95e662ef6263eee12", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "198c30ba375d6c019f9863620af76fcb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72ae813cb81659a14318267c57610cdc", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3f60b205359c7e1d1edfb2ff670598a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1eaae084a36b3f86b596d078db42cd1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a03cf0e0f04e1b6fd2077414c3851bb8", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44632e2baefa1d28699012f0db224538", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21e5da1b9c28bb5e53b1052626a2b9d1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3210672d8b63467c08c65391d7b1462", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0218a5f0e0efd3c7e7955a6e5ca552ef", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e88baeb20f82a75f89ecd479ed38353", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "801d59f17d05075822de8dc06db8759f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1984213c5d9305a1f28a9cb24dd7395a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43ace39a9e3e53375c436b2abd7ebe51", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95f12c98d12aa03c0911a65c0d06d4d1", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8c20e5d9b6ca0cec1fb93c5deb11da5", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4513964a44e0f0546c773f1f4f62feb2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77cf9479e51f2d7d01e8b08fbb36ee20", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 277.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0caa8ca3be55119a71be9480e095c4f", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7cfd977873b50790f4d721f2ea9ba91", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 75.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 75.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d150405561af3bc56893fec720bff831", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1925a6063ad694dd74e8d97d3a62934a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e3ee39cc05c866be0b0c69263d6bcbd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e58768892fa57f3c1fc06076ac712e1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33faf10835854c358e9ba43d6bf9f60d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39339aede70d4806f2a84c0d3027d2f3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e75bc0400c8b953d27dcbe2e820cf81", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6fe1f91e08105b9d22d99d88db5e3c53", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "263834fc2090f2d4fb4169979bb6ec95", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11bb6698f35c698728aed1abd09e29db", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4715aed604503f6f0cf6041d3b5d1242", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd7bbf4c642a5a4806eea8d99a4411aa", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42622b49049144f142954a1cb55e625f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ea01e2978446ee3d4a3dfcc88a8bc39", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c72a7f2f05da56e8b41f8d5f3b5d4fe1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6df09220624eb4c891222e4c97ac124", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd35008a3e312f50e0d6e06e056c9b83", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f057491d7e25ef14cccea10487dabe5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4674f1a6795a32db8f1a90dab79d595b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0f48dbcf5d567706a09e3706cda320a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b0d3b2d00723f55aef00702a53c7a0d", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6a5ba11cb5e3cc7d74e6d4798a875d9", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "028b4599db60858310a9f3ff21f92c82", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3be8fb9c8016806b638ae004c242eb9e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3d40570150afddae162f95787153f18", - "notes": [], - "params": { - "flowRate": 7.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "504ec5691fe1de4c42620e4f238c22c4", - "notes": [], - "params": { - "seconds": 5.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68eed16422d48bc8b2eff9e8e2f03aa6", - "notes": [], - "params": { - "flowRate": 11.4, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08751212278e20a9afeda789b7fbb116", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30c7817ea2adb82d71369cec779b6c4b", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08f7541c6c5735a79da55cf3420befb4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d74656a38ce348f2dd7ce95ca807f63b", - "notes": [], - "params": { - "seconds": 300.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91e9e51bd8bd5fd8c1cb56cba9306950", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3b14f3edb10131db35e7b109d76669f", - "notes": [], - "params": { - "seconds": 360.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a10d40e9f88283ca1b0926cc16f441db", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7332c9e6b110e8d7af81792b93b441b7", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "C4" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd96700a2a2e1597976ed6db82cefe60", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "A3" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "B4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3387cddca31cd4639f3030e8096aeb0c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "179f50e49be27150c44fa15118ac13bb", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4528784b675b07bdf6cf3f17ff1fde2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8b8c92af0adcacc7f93f472f1488cad", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22f77d982ff58a9d8087177c82eed10c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40beeb656efb5bdea88bef585b61b86d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c7734f2bbd123a143ae82cb38e9bf37", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a169cc6f7b3a0c371b9ad54170fb64ca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 178.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19ea7cf79f8322d3a84c7b0e9ffbf052", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ff9da343de5ce4c6aaff913ee848b6a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4dd2083ac4f17381aa4100bd41d58d7c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb827cd87666aab05cc66ebd9b9727b5", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d46524f5ac95fc6a9e736687d06f90c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 178.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ccc6a14dc5a233d4ac0fa58e2bf38b0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d06e57c8d142346782f1838e6b1b40a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee755060e267327f5d39352321eb6a4d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "505bfb57ce50f3ac9a4803187e829a7a", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b342b029818f0277512cf80be93a6689", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 178.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e22b48d35bd75988d1ec90bf7cfcbb7c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6ad82bbe138e863be6db87e38511731", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ee198d5100f9d4b4036769abb5e1fdc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bf39a30cef85438d31bb9ed1eced9a9", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49067e3af1f40861afff941a497a880c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 178.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad5a52b07a73b4fe46fd02426d24d681", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54728237735557312fd613b775fef642", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec3d95d44d96a9a45c89fc04f6f177ab", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa8d2dd42d918bad63702224479d6b5b", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "346b7031273bb0369e3f0baa4873bce7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 178.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73b7d97d169136074f97aee2c912c057", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98eba0063b43c4dfdb9dbd1963ed1cf5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b27c636c2bc7a9d48503b05bcc42c872", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99a53c91519db52e7fa364de50feb89d", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf59259ee2322fdf5b80ea26b3e7646d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 178.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbd40fd08ca6a338144ce45aadf9574d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7991c5904ba82b2254df57c71b1326c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af4364aa6af1a170b277cd5555931830", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01d9e7588ddcfbf03035a6a9b846effb", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 36.510000000000005 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa55b42a78ec83ef65b20bb1b14b8e02", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 85.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 178.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 85.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8416070298c76080babf6969afe3357f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29826458c9b06a2d37710263515a3560", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4693119d0a3900a3d26ec2b34fc92a37", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d5b6e285d9273f1b6ca18125f5eb51d", - "notes": [], - "params": { - "flowRate": 7.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8001a4b83867dae1f37efb5ec1611bb3", - "notes": [], - "params": { - "seconds": 5.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "993334fa4685378edf914ab4a6a89f46", - "notes": [], - "params": { - "flowRate": 11.4, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.55 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 1.4499999999999986 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31b53051f8c0724003508f48c24d7144", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25d7053b477b2b752b93795b2434b148", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b98888707aa1a7a02864ffc8cf860630", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bca5cbc19f4ef13b94f1fdff16ab723f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a986da8071c60a63e7d29cac49b8086c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52efc4408d2fef18c4d6ea63b6e3d21b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dd70801511f19bb1016f8a85cbf7f16", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe54a6093389691129efb97dd031c31a", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4226cfbdc758fbb0a3e40a95f8406a38", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0396b70225b60c1cfb4cc2b2ee4a4bb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cf707671982ac16ed89d182d72eed93", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "713b1a146db3bb59d6e2d3a17eaac9fd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e66d23fec87e7aa2bb9147ba48532b4", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c426f17a4a195605903785a5a14b1774", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b79a2fe75cc941828457931ba1e9a290", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8eb69e4089589cee6e372ecb4e8345f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee3a338e55cbeee45cfcce3f06de5a55", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "839c1483b6802c51f3b86541dc092dc5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34238f148e8c0bb1a55f3566400e43d2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5d900b0e8ca8b45577d0bb8042ecdd8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "438fe95687d73f1b04069e7d1d2892c4", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e31926149c22384200ef77abd138ce1", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4b587acea4d2a0d5b02e06eb2e2fb43", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bb61d9a0548e6571b1108ffcc4ec93a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "077ed3ba93691537ac1caf698cd919db", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09ecffa1e3f967a8bb0294061a3fb539", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f297960ef9d901ffa9d53ebae501b8e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "178d96495324d1ff7b736a4ca02b18e1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a5d739bfc4f283d3437f173dab1c0a9", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65358ef195a7feff09c1f0de26277499", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c645a3d828bae5ec7d7c46dd443dc53b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b0894773bafc9cd19ada93f2418bba3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4e65d18740688494efa63a7a81bc06f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f07504099853ad38e0e7eda3ce855d75", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b034cc3eb54f6c5eefbe5bf44807c8d5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a42d303c65843b82a04f5a9053031d61", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6199b291353c05024fd2eb71b2823c21", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59a2b83e0f849a584ab7e9bb025daa60", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad90263eae79dce2672c3a19381764de", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24155fb6040b45e23aca1fa465bbcf80", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bd7d15ccf1a2099e36f69662099bc32", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd786e7927599651a30e9d0fc4154191", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa18e474fb6d62c71db3d760d6367a23", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8dd267538078501701575a5e28d02fdd", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f279464bea21e2871142c167cdf13c29", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d39df42a795a9c5640780e0a828d709", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad19a27d2b6793892af7765ba9c30d08", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30c401b701bf9fde0fc969182a7b49d3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35f999385907cb6f665821497c50bf3a", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87def4f61f35f58094e8bacab84c5563", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7e9a147cbc13b0cf063608431864547", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93e2b383f089084bedb5a45d17e56ff9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41dbb3041b66abf6d64e5f7656298fd2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e03070383d185803f926a69d809fa0de", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "697c53d284dcdba5d2bb5b35c2df03f8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 38.0, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f201477b3ccb76e38281499ddbebaf7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28b0271f7d50882a6d216d3a5e20c555", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3c73002278989647ff42b0f5d60cfb0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76c803a256d745714565d64e63aab345", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e45da9d5f3285d4b11a1631426ba3468", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa8afd693e6f4eb33937d1d99e9b43d9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11adf132f3c8424502582d2bda66ea56", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02ba5faa984221ca93fb8419974c0b71", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f30cd3304b16837da1776efc74e915e", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0841042e03bfeeacb889bb581426f5a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12332ab8fc2d3aed6621979abe2b17aa", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24fd0ed66fd4453e348f328ff5cbc66d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2305c075f4434a9f130950c987cbe679", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da87817de9fc36baf6fcd4f6e027ef33", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e77e44046245d2e755f3a670099930b3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f02f0928a4b2a1a7b3d4b112d0e9cc71", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a53bf63657977cc55f16710cc6a49e3e", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99868737cb2bc8ccffd467cf8618064d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "926392608fd7d20061397cf3a009960a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8944713954514c379a7dc4360403ba9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10a788ea642b2953f79a4638b35f612e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5afdc5b16592503765174cf81e594b70", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ef1c5996adbb65b977865b861453020", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c58d15de9c9bc7e3d78126cc57e68c05", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "708999fa4fde3dc794711d256ac8e486", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4a4676c2352d3a3e6b134396eabb33a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdd717b81782fa533bb9e9005fd217b2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a1c72f274ce09d54b44e9609668b96c", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1818c19f0b1204ead58e739c217e933c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d34ce2b943f2589f2c0c8a6fe3d1127", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca59b85c62c5a78634ecdc8ee151422b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1b148d408509f9af49230ec5ce61a7a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e4c76f9debd2b4cd9add531d5e0bc90", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac8f9afbe87d346a6054fc7ea712ab38", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fe8e4b9aff5041668f6453b7eb90d7a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "480ae9ea738b5b189922106261c26dff", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4a584b0f29b30cf9111223cecd50834", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65ce651a8d49c250b8059220d6824892", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f3b2de62829d2cfbac8bb1e227d13ac", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ac122978bd889a6af04f133a3be2840", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c0cd1e23e37ca077553f0802d9a1a37", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4fcb55d82285dfdfb7116750ab1ee90", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fea367abce71a5fce540d5f39959580b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37f566dd48758f45425f8a00aca03968", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3eeeeab8376e2047e4cc419a2942112b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9ca747d3b680b97f65e70e878c2a030", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e698da270c6fb77cc94fd9447cbff1ab", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54bc75233f9cde3bd4e0f5e1fa30923f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2d61fbcc86fe9ad8c4bbbf4e4db5078", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac7ac8bd3d77a36342f8a36a9f852f9b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cadbbbcec7376cd70e619aca04737e09", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f27692f051c877e14037a8b6c74074ca", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b338427e453054462fffde534c5798f3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28b2e168de63540b8699464cebb5c251", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72d5c3f22f1b03c3e6008995f53e98d0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5cd3918eef8ccf0a68fd29660291216", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 55.25, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99c7a37de435580f10de23b63480438c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c63c2c62b8e28297d879cec62dd6df7a", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6fd7ef7eb5a0a7cfaabe1669174e5400", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "677c0027554b44e72d23d394ebd2505b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "697c86e2230c892557780ae9b3765e45", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83afbca99e4da104345baba029c1da8a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40d5b8798da2735c033d65285abb7158", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1225a1d895bde1ec13d1329ea6c5d39f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a8ce061cf217d1dc2ef39a7e7eb81b3", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05892c3fcb71e5d8d4d4eaaf8803dd12", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "731e4ad9d3adbb11aee7a24ce9e640ee", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "960d82745f831b1f6f9fc20403aeabcc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47caaa92421725ab41a85fbf417f0c77", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "492497ea4d2e90caf5cce9efeaf54f43", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "313d8f2df65ef7573d21224e2b84f98a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1aa6eb6f66ab407f04faf8d0b9dc165", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be4846f899f6a3bd29c85f7cb8cafd21", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c2c4feb4f7a3281f8348cc266fb34c0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3897e8927182df210145e9c832a8319", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70958badb1eefcb69b35c7a848ec226c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c597eb19d231c1633b2ac7947f5cd7e", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "061c5e781b67ff36efc641e942ea6b7e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fcb82732012114a0312494c6b3733a7", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e8134517923d1b240d0aa5cba22dc7c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "672b6eab9d408aec36a27190d26809a0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d02986dcc03e4161b18dd80eef2e0bb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2822c1d1111f6b93acd00c9d72909c77", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "219093c4c5d58131c05b93970df89762", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9b3c7c41ce691bcdf3d26e766ff98fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1751c9839ce1bbe2398d2840ff7707b8", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb6eb9b8586fb795d48a5d1f030e52b1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45381d6b2b06a3b9959f8499b3a060e8", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97a58139703ff74bfdbd3cc37ccc885f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1c5362ccc916a5e4c9a67a4475ecf26", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5ed47ed4f8849ab3692bef07e72e289", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78c32b4d2a0bb88f438aa6332843fd5d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5228701f78ae80459c876be6a68c11dc", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2dface6484c95b5544b8902973d9303", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82a0f5bf524e160ed8c9403e743fe8dc", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9eff6ef47929155308677cb6614fece7", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbe919051b12284ce4548000ee00ef62", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c36e8430e7120a59517acc0fec60a95", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d429c557677afe2ce7ea50a8118b2cfd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f97fa583f24860caecc1fce295869871", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e5e4ad61db1119ceaab09520b160889", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da21001ac551a1a415ed66510f603c0a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f76a18ca2b86d556f8b5822f6b49f38e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a75d851837ba7574d3a763fd83af6707", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b338d72c9420812aeaca3fc7870c7e07", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4cb1341be29d9782af48ff590115ac5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfa0487e1788710a6efbb15ab9e51973", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3d7dba3baa3550eb1ea3e7945b03740", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a82886a3801222b2d719dba0a5428c55", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df9dcf50cc9397cfa367b0b41c48b9b7", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c70088f178db6bd976873d7b21a14ed5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09e6e1e9cc0a6076725e9d0dba00ff6f", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64feab3f1c397a547c635b4440551a28", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edc0061ed7f3f428336cd61d49ac5ba6", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d26ffa8dd8e286445dd62086a17b3b46", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc1aef2e7f73f041ca778d6d98181c57", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "423865a217cedb29ef4e68990037ed33", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67ad11bc26be56daa12da1e88b4b6a77", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d239a0af1a41577c2c87f1c77558563a", - "notes": [], - "params": { - "flowRate": 7.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f36fc609804100bf6a60793c120866d4", - "notes": [], - "params": { - "flowRate": 11.4, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.3999999999999986 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 16.4 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bb83bacfca232cc1024049a80c7d932", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6bdba84a07f312a456d1ffdd668df46", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fef4a9ab4f9668d68c1502eaaedd07aa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0163dd1f7c88d82ba557d17990b8c7f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "538980d87e6e178bc863b1ae412564b9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28472e9b31320d2d75fe2fc43ca7018f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebc929aed935c662c591af26b5f5f6da", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee27d2aba73849409b874babb49776c4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "910477f026e35a981075699dfd610c7e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c14aec62cfccf0d7c70a498881a0c05", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e4c73524d4178f3596ebf4a9430a128", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d1bfcca4c8674cc33d0e8123caa7aa3", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8ceb41a35d5f5223c46879aa5fd8d77", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b518ed3282a5c863972bd7afc1441e12", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0eaf354bab50f76dcccede75baeab009", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7af0886999c4bf9419ce7682c0b61270", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e49394b58774b36cbe7074d5cd322e20", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2732da9626bb5bda43d1cbbacf0114f1", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "681eb03ddcc1870894ef7a3365658a87", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "968d17b7b739d8c0b11d732e595043b9", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8db48a78ddfe9d1197ff11784d48e1fd", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78f874a694df8d0432f5b0e060160c74", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bfecc27407ecb587dae11982fd236a4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a54e644d56a7644d350acadedf2eb058", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10295171229973747dad33c9986a434b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95cb4e009362d7fa5c76d314650dd2e6", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e48a51a16ce575160512cc627866900b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21fcec3f4f46ebea8af92f169bc09324", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1d0047845abcae705302fd24aa8e897", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e7e9701e6347236e61c15d5c33de99e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91ecb7dc816be42d4618b08080cabfe7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8a245a2091fe1184bcc346831ebf458", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "914605f7dce778cebe00c0f5c31fcadc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b257b91d4217a76414f209b6ffdd85ab", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5719de8a8c4f916fc4d610bbe9a76df8", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b878d16e0881e9b9c69a07261d1d7b5a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4006d08ae27ab1068a47f1b8f9c30f0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87ecd7b5360d0f990a85961850308194", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "451750e0d8511ab22b37b42bfecadba0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09d84ddb61ee100951d1c07884b1a921", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89103a63399b77e36bd8758e3acdbc89", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c53bdd9469939e85809df6c1ab95979c", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "593fb9dd0ae5d2ebdd5c40d99f637040", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2105874d1176ea2ea05c77d6ac83eb8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b00f6775de9460e2a9030546db702b1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae5273b2f9f9354daf79cc2d2a37e780", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bf055a5ba5742b1330c4e41b4af5c74", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de2515314aa17cb131ab8605c6b8a85b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "975a5e8eff957aaea64f3556dd57abbf", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f17b6f8ec115a0d81a24f4cd7036fd8", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "848d21a824f7ef4d653699c6755443b8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90e3bbf51fbd147f94704977bb2125c9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3dc2333974c81a98730021d2d53dd716", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbcd9f0dc46191c8169213c3d1715920", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 72.5, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dda801820b5f2dfb7ead40c61b262f0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51523f80640f16faa8aa85391fa84d12", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8fec2501fd4e72992e9c8ea9249846b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d270338d1b98ca12081fb7811742205", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ff0c7a2f474fc3df9a6a2f34bc99f46", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e1ed16f4e0ecf3c09aab7bf12ad61e0", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc2a5ed5cd40c17a40c5ad6bb1b3dc2f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "918b9767776e7c18fd06a41b138599ff", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2842391bd1f8bab74b0ef1c8ef14afc9", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79b055ff0d4e0ea1aa882a022a030e66", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6b5b9747eb26964b629a084bafa33b2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2377ac0360c072afe5d03fe28caf7501", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5788b9f50494cfb6ea05f43a222da9e", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d92eeb9cff71243f3225d8b021912e80", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e69e39bf920c162bf90d81402a4ba50", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00c3a892d0cd8bbc3428cde91106f97c", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0f33a042cef82d687a8d0d4955b5f8f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff18963c6d4f693a8d691f7f363351f5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6822a269f49903c042b52bcfaf9b7e2e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa6fd8e3ccaae2624fe35dfef70ffc21", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6488534fb371d909c48b13c0960f9af", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a6474943b8bb565acbab03f0bb074d2", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2c796cc101cddb1fc0daaac9b9cd0d8", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c79c8b4e78ed2ac3efbcf077e2608b8", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd4ac7683dbeb9aa0b0977096c5e4aaa", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d86294088277e4565e4377b10adfeb2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45d7c421cfc342bdb3f10e2f11ec885f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba524fea8903547ba2977c96189425fc", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "028b9f56f1c1306de4e05a013083e1ae", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d0ecc79e82e324958f4c897e1d42200", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbdb27bb41360d77becebbebce54b8d4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce4d201fd15415b699866ec117092b29", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51e1fd5f93a9cb9a84265f26c790f22b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "224d23b379e3a49c32fac46de1a2023b", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff58d444dfc0fe5963f475ce09b92c2b", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0aedc6d197ee2a051b94185a0b5a7930", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07ae6622f28b4673929495aa94436b96", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3cb4d41213f599a2f53f2cf4f15e37b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc96258e4599647b64583ebcf443bc01", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7bdd43161dcd40fced5933b76050bd7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c0901c8d994a74826a6cd99d1504adf", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71adaebf6ab8e8fb448164888deaead9", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "305bda33d1fd231c19e2f4eb45c98fb3", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e03e7232bdd0f4de381e13b9f75c3352", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5599e69a9897d0de22e52b4e942f0fae", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fa238d840e884e6df22e8e60b5a112e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07358739b6ac7966d6dc17febe5314f3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c1a605bd7b9272e29e9fd015440b377", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "137491c89e3f9fb97fdecc565aa17f7d", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82c7f21c4e99cb0ab746804fde4109e5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02c55564eb0c83e38ea4c108e62a9b82", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c3c8bdc00adb1b5320e26377c2d172c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49e2f0f79d97b36e5be74e30ccec97ec", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5184f9c3d32842bfd0d390e0efd1415e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31e34db070d4307ce2a477bc7431a0aa", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 107.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 15.800000000000008 - }, - "volume": 107.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60e27abac791bd5e801a11da51fa657f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -5.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 89.75, - "y": 123.87, - "z": 47.699999999999996 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99ce6209428429a9d8a958050503996f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 48.459999999999994 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4b5c2d83f909be25dd0a773c8892e0c", - "notes": [], - "params": { - "flowRate": 40.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 48.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8507c0af0250f79d52acf8300534a903", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "833a47895a945d122c708e21b888472f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c03a536cf8ea069b500abceccf6a133", - "notes": [], - "params": { - "seconds": 60.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "494a6bfa9283695a8f77ef22b42d2c2e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "616c812cb585774f4c2bbc5c545a26b7", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d64625efc3ce0de5cf30ec746fc5fa8f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb761a40cbc3e231f57f57ac0a3136b0", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e4de58615991d3db369560fc8bd7139", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9710f23e8febf38583e6c52eff128329", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61dbec1ec76a7d549975a88e5fb3d163", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "454d7e24fd5ff7393e4f644178fc5899", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "baa33f51ed76b64b73cc51ba0fed2458", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0020be814a16161c963440c77bca5a2a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcf6bd710e367c13dff416a97dc6db6b", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 65.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "955f13422fb0e7321c0fef291cadf99d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c082a8d2df377abaa5b01c99083ecd9", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "548f00ef856ee310526c9988cafbe181", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64630f7972d8c0da390d91b3e083dbba", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0027141a43b086206f35a494c32ae4c", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46060ca9b22ba7dd6fa2f023fb84ce65", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05b0c443f547dd3d6878a046b93aa076", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 56.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67cac1d80989c5f8bde317a4366b0c7e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9592a27a4b9848811d4a8b7fc605e96", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "226d9684b038956f024fa3669311d6da", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbd60cf684da0db6a9640908233920af", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a4ec88588e2885a750d021e87b7c2aa", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1eed80d97e43b05f80c77d39ad08e48c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a5df2306036f74d60269e35327f3965", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 47.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c7b6f26ee659f09169a52067505f2b7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dafcc21c01da2f981c705d9d775b22de", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a77e3d424daff5f7f937388ab764181e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fd235f77c0bada4aaeb1b02d42e3ca5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25371018c2b90b7124da2bdaa7c3ac02", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c54880d4f4b61b80c55f44949231d06b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b16fe40e58a2c3887772875fb80f9025", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 38.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6424fcc300fb8d4875a35e8912448d8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "455c1300fa19dbf21a72331feb8a3e3d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a6ccc7b8939a181c8c6f6b53a8bd5d1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "481d5ad0813aeac45459ac77e752c8f9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5742a45c0c58e61780e817f055d0f48", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1871356ab62ab46385a8e51d1dece2e8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4881031e9d046eaf212b5b3180e021cc", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 29.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0c9a5e9cc523c896abe2d8ff83e5260", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd6a231e8c99402ffe88b88a90e0b244", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f83a60beda1a63bd0e02494f8175c395", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a88772e414d3ebfa5892be3d52295b2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a811f8b5407dc8c3e9f8a9dd0320d02", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53fd03532fabaef09b022e7c1b85ab83", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "433067143252c05d63c1a951d5171aab", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 20.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e54250389c390c733b9cf8423ee63b89", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0adcfdd29b72a47671b2fd17d8fbebb", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11e2e68f5643f2bc4bafdcbf3514b7c2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae012b780177be54b3b6a9858aa504f9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81ca54407698050d7ba0dd558089fab2", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80bdf0f297e110d1be46d6f73afe85a5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a86ee6583ae8ab86545fa19940116b8", - "notes": [], - "params": { - "flowRate": 179.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.849999999999994 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 11.24, - "z": 35.61 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe7fef59559eeef45998da2b2b3f2b37", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75ee4da2ff3d3d37dc804dd5d74cbfa2", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f0bda2faf40bc6931435efb4f71868e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83ff228d4c39cb69a59810510ff8a69d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27da16d77fe67573e3a7609ff47f0eb4", - "notes": [], - "params": { - "flowRate": 7.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -14.549999999999997 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 35.91 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c36d02994c07088012a16081843f345a", - "notes": [], - "params": { - "flowRate": 8.549999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -2.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 14.0 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79c11a70259ce08e0f7e545a02b592d1", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e501158b2253a0e3c72c0efc6738b23c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82109cd8d15f9d7b39842622f768dc12", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "D4" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31fad7ceded206c655b283032f1cd35f", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc69a145398b53e384c27553a3ef5b2d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48ebd0efbb3fdb14248192a6b3f4226c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30821aca58d2c42c364cc68d46addb5d", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b76e8b042818129280ce146c6515d860", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd13560c5c9aae3a12ea648546e9a1a2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5e105524c2b22e39bbc1632cdb82fe6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b6e731b3968e5ae316c145c9a595c71", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83e15f394f1a5b47cf6fdb479ea61c10", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23a4d61f8a705385fb72f114ccee2b61", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7305f96b5d72ef8560caefcd8e11fcc4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e2e1970bdfcb0b09cf65853df6872fb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3316f37d9e89470f628561f4210c2c38", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02999e9153dcbec0822987e78ca7a5bd", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bf5f8f53b0e774fdee71cd539a742a1", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8b89c62d4f424033e1b099e78afabbc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45f1de3d584a31dd01754e8a34ccea85", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e632b531409a643ca1a1ecb86d7dc3ec", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2161248859d6faeaee6ee7dbd6aa3e32", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5341709d5e25f788354411316ac9f99b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f293acb1a0b90af91756deb1fb18900", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46ec79f6628f38edbc07449e7c6f69e6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1d842a2ecc4cc8f6c6d42149cc2fd6c", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c25d2bbc82689e337cc143a7d90ccfb", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73808cc4bd6d618f0a1bf79f38aa1fb1", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da5da7f06ff0f595cf641d4aec1deb11", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0ab567abdef77d947554b1e45a0c4af", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af7216ca5fa47bd36c87a2456a7c0f98", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94922627a5bb5114ef9769d706a4948f", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f86cec72c3d217a01efeae367891e73", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d666226873292b35f6543c1b2b522ad1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "295f3eda999ecb0758b5dc4c67fff980", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b7ea5640bac8f7d6d0f912876dfbe73", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5370f93669ed0ff46ae32e7cc6bf5447", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8f09c8aec38ca86b043ae026dbb5f9d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c35b21d8f4c50a455d84c127ab29ee22", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62a3aeeaf7fadc3f4d2d572e0607b24e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "676f0f4a46174cc1fb9487d95f1e99f7", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.62, - "z": 15.800000000000008 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b70313ef916e5ff17862f5e334c8c5f5", - "notes": [], - "params": { - "flowRate": 107.39999999999999, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47de19e39954420605189c3ee39f4de8", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99b2e79d56af25b885305f49460e3bf5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf9d63db0568b95b6b8a3fdf2396a7bb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e943bc670f98b6d0bf8eba070a4e967", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d6af845ff48d0f47a1a3845c8b58d04", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b713d6e1d2f09a11f7db686a2e413ecb", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a094cae8f6d094a4932281602fd82fc", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9898441dcb5f86c6239a839ebfa72bb5", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32932dca8e7e8872f26767688c1b0133", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f67069e577eab02f193e86e8bb23ee9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89f68260be4376e9c320cfbbb84da6e2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f2732427013b45e16a0768469b99189", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba97093731805ae26c77c20720553ae3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "089b9b01418eec4fbb5bf2142413f6be", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7be20bc5f51b4da6771c5dc969391987", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35aa86c5649ac4c3faba5339a7896407", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f62e0b1fb10761d27afd35845ef14e2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6926b72f79fddb20c008361504b58dd6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09f16c9295d85f23207d0f5bc8db7436", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6413f599286c201ab26bb97365a24984", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1aed1a630db276b7bf1dbd6b3f04042e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cf230aeebfbcd9298748a3b65674fa0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0862624213e88b480a9868c8883fa4ef", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 12.4, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 12.4 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c13e82d3e801d889f15d666e035123c3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.24, - "z": 15.0 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "107017823514af68b25f907a11595214", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0946149c732520947be4370bbddd2817", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1f73c4e1b9e9fc22acef3747aaac771", - "notes": [], - "params": { - "seconds": 300.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d9158b64c6281c73fa3cbf8648a1aa2", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "moduleId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "magneticBlockV1D2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "magneticBlockV1" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6ae0dcc825460c3bbf28654a8d260db", - "notes": [], - "params": { - "seconds": 180.0 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f341ebfc7edc3ea38aa216e4adaeb1a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a59efb94a549eb02b2ba60f720563d37", - "notes": [], - "params": { - "flowRate": 8.75, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ec98cd219920ba9f9736fed8dcfeb1b", - "notes": [], - "params": { - "flowRate": 14.25, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.949999999999996 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 36.510000000000005 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59caffd448691e7d802869de9228e5a6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 74.24, - "z": 49.459999999999994 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57f70aa0a717ec3d3781ef896da800e1", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7506b24a371835ac88d5cc238a29c0a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 20 - ], - "protocolType": "python" - }, - "createdAt": "TIMESTAMP", - "errors": [], - "files": [], - "labware": [ - { - "definitionUri": "opentrons/opentrons_96_pcr_adapter/1", - "id": "UUID", - "loadName": "opentrons_96_pcr_adapter", - "location": { - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_24_aluminumblock_nest_1.5ml_snapcap/1", - "displayName": "Tubes", - "id": "UUID", - "loadName": "opentrons_24_aluminumblock_nest_1.5ml_snapcap", - "location": { - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", - "displayName": "Sample_plate_1", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "C3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "B2" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "B3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "A2" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "addressableAreaName": "C4" - } - }, - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", - "displayName": "waste", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "addressableAreaName": "D4" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "A3" - } - }, - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", - "displayName": "sample_plate", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "moduleId": "UUID" - } - } - ], - "liquidClasses": [], - "liquids": [ - { - "description": "Nuclease Free Water", - "displayColor": "#6699ff", - "displayName": "Nuclease Free Water", - "id": "UUID" - }, - { - "description": "Fragmentation End Prep Buffer", - "displayColor": "#ff6699", - "displayName": "Fragmentation End Prep Buffer", - "id": "UUID" - }, - { - "description": "Fragmentation End Prep Enzyme", - "displayColor": "#ffcc99", - "displayName": "Fragmentation End Prep Enzyme", - "id": "UUID" - }, - { - "description": "Ampure Beads", - "displayColor": "#cc3399", - "displayName": "Ampure Beads", - "id": "UUID" - }, - { - "description": "Fragmentation End Prep Master Mix", - "displayColor": "#00cc99", - "displayName": "Fragmentation End Prep Master Mix", - "id": "UUID" - }, - { - "description": "Adapter Ligation Buffer", - "displayColor": "#99001a", - "displayName": "Adapter Ligation Buffer", - "id": "UUID" - }, - { - "description": "Round2 Ligation Enzyme", - "displayColor": "#ff9966", - "displayName": "Adapter Ligation Enzyme", - "id": "UUID" - }, - { - "description": "Ligation Adapter", - "displayColor": "#008000", - "displayName": "Ligation Adapter", - "id": "UUID" - }, - { - "description": "Library AMP Mix", - "displayColor": "#cc99ff", - "displayName": "Library AMP Mix", - "id": "UUID" - }, - { - "description": "Adapter Ligation Master Mix", - "displayColor": "#ffff00", - "displayName": "Adapter Ligation Master Mix", - "id": "UUID" - }, - { - "description": "Ethanol", - "displayColor": "#ddd3c9", - "displayName": "Ethanol", - "id": "UUID" - }, - { - "description": "Ethanol", - "displayColor": "#ddd3c9", - "displayName": "Ethanol", - "id": "UUID" - }, - { - "description": "Ethanol", - "displayColor": "#ddd3c9", - "displayName": "Ethanol", - "id": "UUID" - }, - { - "description": "Ethanol", - "displayColor": "#ddd3c9", - "displayName": "Ethanol", - "id": "UUID" - }, - { - "description": "Ethanol", - "displayColor": "#ddd3c9", - "displayName": "Ethanol", - "id": "UUID" - }, - { - "description": "Ethanol", - "displayColor": "#ddd3c9", - "displayName": "Ethanol", - "id": "UUID" - }, - { - "description": "Ethanol", - "displayColor": "#ddd3c9", - "displayName": "Ethanol", - "id": "UUID" - } - ], - "metadata": { - "author": "Vasudha Nair ", - "description": "Fragmentation, End Prep, post-fragmentation and end prep size selection , Adapter Ligation, post-ligation purification, Barcoding Round 4 protocol using the Flex with Parse Evercode WT v3 kit", - "protocolName": "Sequencing Library Preparation using PBMC cells" - }, - "modules": [ - { - "id": "UUID", - "location": { - "slotName": "D1" - }, - "model": "heaterShakerModuleV1", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "D2" - }, - "model": "magneticBlockV1" - }, - { - "id": "UUID", - "location": { - "slotName": "C1" - }, - "model": "temperatureModuleV2", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "B1" - }, - "model": "thermocyclerModuleV2", - "serialNumber": "UUID" - } - ], - "pipettes": [ - { - "id": "UUID", - "mount": "left", - "pipetteName": "p50_multi_flex" - }, - { - "id": "UUID", - "mount": "right", - "pipetteName": "p1000_single_flex" - } - ], - "result": "ok", - "robotType": "OT-3 Standard", - "runTimeParameters": [ - { - "default": 8.0, - "description": "How many sample sublibraries to process", - "displayName": "Sample sublibrary", - "max": 8.0, - "min": 1.0, - "type": "int", - "value": 8.0, - "variableName": "sample_sublibrary" - }, - { - "default": 10.0, - "description": "How many pcr cycles for indexing PCR based on cDNA input (ng)", - "displayName": "PCR Cycles", - "max": 13.0, - "min": 7.0, - "type": "int", - "value": 10.0, - "variableName": "pcr_cycles" - }, - { - "default": false, - "description": "Skip pauses, incubation delays and reduce mix steps", - "displayName": "Dry Run", - "type": "bool", - "value": false, - "variableName": "dry_run" - } - ] + "error": "Analysis timed out after 120 seconds" } diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b87f2818a2][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_consolidate_liquid_Override_50].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b87f2818a2][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_consolidate_liquid_Override_50].json index f620485a4f1..1bea2073c09 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b87f2818a2][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_consolidate_liquid_Override_50].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b87f2818a2][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_consolidate_liquid_Override_50].json @@ -5441,7 +5441,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -5473,11 +5473,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -5697,7 +5697,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -5707,16 +5707,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -5984,7 +5984,7 @@ "key": "3468861737217b10ea898f9465774aaf", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6034,10 +6034,10 @@ "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6050,7 +6050,7 @@ "key": "7341c4638a1ef05050eb8eb103ad548e", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6100,10 +6100,10 @@ "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6168,7 +6168,7 @@ "key": "93d872c45dba87b398265dfdfdb4f444", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6218,10 +6218,10 @@ "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6234,7 +6234,7 @@ "key": "ae8713eac056eb3322900f72d33e856f", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6284,10 +6284,10 @@ "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6336,7 +6336,7 @@ "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 44.0 }, "result": { @@ -6378,12 +6378,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a9fee123ded4dad4e2341ecc6e769cb", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e9a0acbc86b0f33c60723681500fbb2", + "key": "fe9cde573a8cef4a5797b9dd1778f5b3", "notes": [], "params": { "pipetteId": "UUID" @@ -6397,16 +6412,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ddb379b922ee291c9333f234898f01a", + "key": "a244d5c21586b33ce761d8d7bc988c21", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6416,10 +6431,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2121394708b3767eacd224232498e990", + "key": "7cd0f79d3c9cca87d550a6f89d1319df", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6430,7 +6445,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd2fd8e315e4a4c9707bbf2cc42495f2", + "key": "286eded7ce83f701e37744d4c67b2bd6", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -6459,7 +6474,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec65e55954f99696e27d8c7ee1c6cfab", + "key": "83a014cdf759aebaa250b59823e200d9", "notes": [], "params": { "homeAfter": false, @@ -6474,7 +6489,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7997fd11b524fb7bc04323b8e4fb19ce", + "key": "0f680b01ccf7d3c9b660d6b7b7b4311c", "notes": [], "params": { "liquidClassRecord": { @@ -6873,7 +6888,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13feb88404f4dff01bdfdb067e9c365b", + "key": "432dc452fc379f2fa73bffd9cde51338", "notes": [], "params": { "labwareIds": [ @@ -6897,7 +6912,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca59e4305ffcfa7c95685128bd785b6d", + "key": "c805b61b21c095be1eed2b4bcbecff54", "notes": [], "params": { "labwareId": "UUID", @@ -6930,7 +6945,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db75778e59c53347d36e32c971c2bcec", + "key": "840aaf4d1b264b4843f062d5f7e554dd", "notes": [], "params": { "forceDirect": false, @@ -6962,7 +6977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4907a66b63b31fbb34f73629c33f5732", + "key": "052748a311d5b995ab9ee69779207fa1", "notes": [], "params": { "pipetteId": "UUID", @@ -6978,7 +6993,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0108ae781ae9e6ecfddcdf8a8f66088", + "key": "0bc65efcaeee1e75402eae5b994552a0", "notes": [], "params": { "pipetteId": "UUID" @@ -6992,7 +7007,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73ba30927f4fe1c71c037d4294b60574", + "key": "fdce12161d637b07b057e1043ee634d5", "notes": [], "params": { "forceDirect": false, @@ -7024,7 +7039,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31d9969add794a9cec3c93070c20bb0c", + "key": "44b15dbc7ee6654c0f6b2b7bd29e00f6", "notes": [], "params": { "forceDirect": true, @@ -7057,7 +7072,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04501c58abf04c82e4698f29a23b981f", + "key": "75447dfa65ebd8e2f024cde0ce9082b9", "notes": [], "params": { "correctionVolume": -0.88, @@ -7076,7 +7091,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "382a390c002a98f06f1d68604ec6123f", + "key": "d59a94cb1935b32c76274ab9d368ed75", "notes": [], "params": { "seconds": 0.2 @@ -7090,7 +7105,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13714874bb9084b7d659f23910793855", + "key": "5208bb1d142d0a5081eeb15a18bb4697", "notes": [], "params": { "forceDirect": true, @@ -7123,7 +7138,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd9bbb472a5f09a876f3c0b0ba845b8e", + "key": "33f0c274c6c1357f7ec1f970d4a79e09", "notes": [], "params": { "seconds": 0.5 @@ -7137,7 +7152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f05782b905b489c2d4f5722155c93f9a", + "key": "fb81863fb60e417de2737d96d0e74c14", "notes": [], "params": { "correctionVolume": -0.9550000000000001, @@ -7156,7 +7171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d58a56617f3383c8b504878accc5b37", + "key": "2bf15519b9f1a737dbb705c31113a332", "notes": [], "params": { "seconds": 0.2 @@ -7170,7 +7185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e485282a3d6a3ba7eb27cedfe71fec72", + "key": "c1aaacaa5e212304686076dc0c71d577", "notes": [], "params": { "forceDirect": false, @@ -7202,7 +7217,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54d385aa9686226ee15f23a16e44e7c6", + "key": "42815a9893eb1435db2da454424496fb", "notes": [], "params": { "correctionVolume": -0.88, @@ -7222,7 +7237,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f43790f9525086cf8c2c4e33fddb6ec", + "key": "482bd01e3f14057f192f0699f5834d51", "notes": [], "params": { "seconds": 2.0 @@ -7236,7 +7251,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ddc96f465fb5fc650334fa5b2adad026", + "key": "c0d4326f096aaa26d53bb5e1571147c2", "notes": [], "params": { "forceDirect": true, @@ -7269,7 +7284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7db7b39af44fd5569eea445f48e63c82", + "key": "d85f7d4776491174f9b6474a3b8c96be", "notes": [], "params": { "correctionVolume": -1.21, @@ -7288,7 +7303,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a97525cedf7d4f02637519b3ffa88748", + "key": "0425ee5fe1051a8302465cc24b178c87", "notes": [], "params": { "seconds": 0.2 @@ -7302,7 +7317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c6527ecf58b42d9f127de553408976f", + "key": "fe6eaf5bb0cd35e41b75d4891e0c4f8f", "notes": [], "params": { "forceDirect": true, @@ -7335,7 +7350,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fcbc2ee797a245f5b057ae3bf6dce79", + "key": "864f253586521c70aea1f8d6644fc5d0", "notes": [], "params": { "seconds": 0.5 @@ -7349,7 +7364,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01551eccaa009aadd0bd000940a47526", + "key": "0fd31277432d61bd1b8c285c7cf7fb62", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -7368,7 +7383,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a12980ecd15a916de36a99b4ff566394", + "key": "cacab51458d42049deb08835374400df", "notes": [], "params": { "seconds": 0.2 @@ -7382,7 +7397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89f1063ba1386b2f0ff7ef469584fc35", + "key": "18fb56cf08cc8bb26333aa1877334bac", "notes": [], "params": { "forceDirect": false, @@ -7414,7 +7429,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df25f1b9274bcc5c3c051d1484a02b39", + "key": "8fd8af9ac35f2c3a48d5c06929d14372", "notes": [], "params": { "correctionVolume": -1.21, @@ -7434,7 +7449,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b599a72e4e69c152a29a0b175bff8e3b", + "key": "bdd61ab89e74616ba1e66aac7bc28f27", "notes": [], "params": { "seconds": 2.0 @@ -7448,7 +7463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "128f8639997bb77266f3c8e63a5292c8", + "key": "cc1de2f0e84f388c47e28e3cd36f240e", "notes": [], "params": { "forceDirect": true, @@ -7481,7 +7496,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6e7bbb1b21e173ba457e5ff2986b1a8", + "key": "99a90a1c27ed196d5798c62d9e65efd4", "notes": [], "params": { "correctionVolume": 0.0, @@ -7501,7 +7516,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a968b7f8a20a592b8ffcce5395a6246", + "key": "b0d9f4b609e654fa44752d64552c94d0", "notes": [], "params": { "seconds": 2.0 @@ -7515,7 +7530,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3217eda78fa5bd9630869223755a740", + "key": "6f8c6f2caefcd8118943047126f468d6", "notes": [], "params": { "forceDirect": true, @@ -7548,7 +7563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da3907f47beb5c640450d9587b624f44", + "key": "d1ccecef5c70ad299d7c91f9a1ac08c7", "notes": [], "params": { "seconds": 0.5 @@ -7562,7 +7577,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c529736395ab4f19fc13874e54cff5fe", + "key": "24d10a5e5032fd55517fd00f0d3f0100", "notes": [], "params": { "correctionVolume": -0.75, @@ -7581,7 +7596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57c8c9ecac99244b4f32f9d00f678e52", + "key": "ba0f5a924af847c4a5eef1813c44622c", "notes": [], "params": { "seconds": 0.2 @@ -7595,7 +7610,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c5287b5bb42ad6f869467136b2dda6f", + "key": "a066a4c9d35b3eea1250d6c6d7c83c3c", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -7624,7 +7639,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90874ffdeebd630059a7de54c1fc7039", + "key": "7b7c8f5802600e9961dbfc785721f687", "notes": [], "params": { "homeAfter": false, @@ -7639,7 +7654,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "234d134a122ed8a483bcfe5bfbd19cb4", + "key": "9289e71795aa3e10d1e4508ca3473f50", "notes": [], "params": { "liquidClassRecord": { @@ -8010,7 +8025,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "919e4ee83bffd574ae2468810e017cdf", + "key": "415ab0a8e2239d50a880d0de3ddc96ce", "notes": [], "params": { "labwareIds": [ @@ -8034,7 +8049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f88221c1a7fb6cf88fd94c4b08fb0b7a", + "key": "e068e113da7601bf8f07bd76dfe33386", "notes": [], "params": { "labwareId": "UUID", @@ -8067,7 +8082,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1fd54adffa5af73398a4d7f48539556", + "key": "e11c2a953be2e6198bc046248b02823e", "notes": [], "params": { "forceDirect": false, @@ -8099,7 +8114,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18a486f532b1c9814f595dcc40aa9090", + "key": "f52c11ef18c88e0a5713e6bd63b814d0", "notes": [], "params": { "pipetteId": "UUID", @@ -8115,7 +8130,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae887381c13e54d471606e753f65743b", + "key": "c1da0f54fba9a8068b87edb8506f2032", "notes": [], "params": { "pipetteId": "UUID" @@ -8129,7 +8144,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b04961a82fac585737cc457854fc1333", + "key": "bc6eee47e0f8dad6c4dfe6d28c20ba74", "notes": [], "params": { "forceDirect": false, @@ -8161,7 +8176,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "594f0c1ba54329e64512a06ede4ffec9", + "key": "92732561805bd8cdaab0317b538d4d44", "notes": [], "params": { "forceDirect": true, @@ -8194,7 +8209,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b722d2b0e8701b9436babd69bd9b6548", + "key": "c46ce71cdfb0bcf8437ec8d897cef2d4", "notes": [], "params": { "correctionVolume": 0.13, @@ -8213,7 +8228,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4b00c919d5b07ed357a1c00659a5d55", + "key": "93c71a7dc6d68fdb0c6f7fcd7e55c29c", "notes": [], "params": { "seconds": 2.0 @@ -8227,7 +8242,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02e63f5b6a9f355b2fe481bb5c977398", + "key": "817f5531c2fda58c6b4773c94627c466", "notes": [], "params": { "forceDirect": true, @@ -8260,7 +8275,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f503ee15995f90f1cbb2ce1a3f14b5cb", + "key": "a3bcaa720b16540e0bd1d2e9034a67b5", "notes": [], "params": { "forceDirect": false, @@ -8292,7 +8307,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1267e8de2c3bcff54cca4462079b59e", + "key": "b64efb7e74fb86f3a9478bd8d8e2a56b", "notes": [], "params": { "forceDirect": true, @@ -8325,7 +8340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f4ba2cadb9727fa32e98a2c19adc6b3", + "key": "abbb983e3bcc5d2f3a4c2ffc648fa4ca", "notes": [], "params": { "correctionVolume": 0.185, @@ -8344,7 +8359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a301a26ccc3fa00a2da1de048df0add8", + "key": "f9ca7778c8af4e1c4486394bb70b4a23", "notes": [], "params": { "seconds": 2.0 @@ -8358,7 +8373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14147d3492fdea8b9829b3c8ebc076db", + "key": "bd5f5d87e4dc6b59703e6dfb81fb3c4d", "notes": [], "params": { "forceDirect": true, @@ -8391,7 +8406,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "065201c157748de0d56eaadd428e31e4", + "key": "673cc78f30f52a151fe602c811a75f98", "notes": [], "params": { "forceDirect": false, @@ -8423,7 +8438,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d817f02764b0064dd83d944344ec72a", + "key": "946bde29cedc2e832efc9d3447211662", "notes": [], "params": { "forceDirect": true, @@ -8456,7 +8471,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "416c05f15aad9f66c2b40e2f8b59ce50", + "key": "8e01e06eb13a13193303f868f3140cf5", "notes": [], "params": { "correctionVolume": 0.0, @@ -8476,7 +8491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e08f59a3ebf9d3aef24f77cfaa388086", + "key": "6da094815228480e8ac57b8d112b3501", "notes": [], "params": { "seconds": 1.0 @@ -8490,7 +8505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6cee4538af115d00d13f173fb0a3d40", + "key": "62ba438c0cb644ae61cefdcd76d32aa2", "notes": [], "params": { "forceDirect": true, @@ -8523,7 +8538,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db0c90d2cf348afd30d9894c0575b138", + "key": "72141370af4d06f0ab02dfddea4457a2", "notes": [], "params": { "pipetteId": "UUID" @@ -8537,7 +8552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2cf979d6ee227ae572640ffb679765a", + "key": "a665579f3d382886d3c795f8fcee57ab", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -8566,7 +8581,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64a53818f4ef13c36eec68e50fca28d6", + "key": "0dd708e48c202737d966fa8971720b11", "notes": [], "params": { "homeAfter": false, @@ -8650,7 +8665,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -8682,11 +8697,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -8907,7 +8922,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -8917,16 +8932,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json index 3906fd0c6c9..0b9d36937ed 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json @@ -1,126529 +1,3 @@ { - "commandAnnotations": [], - "commands": [ - { - "commandType": "home", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50c7ae73a4e3f7129874f39dfb514803", - "notes": [], - "params": {}, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9cac9dba72ab541665f112752004fbc", - "notes": [], - "params": { - "message": "THIS IS A REACTION RUN" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c70a990bdc4d6e06f98204ffb9f5b3a", - "notes": [], - "params": { - "message": "THIS IS A NO MODULE RUN" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08eead03f33b44adeca9012d3223a752", - "notes": [], - "params": { - "loadName": "nest_12_reservoir_15ml", - "location": { - "slotName": "D1" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "360102" - ], - "links": [ - "https://www.nest-biotech.com/reagent-reserviors/59178414.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 31.4 - }, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9" - ] - } - ], - "metadata": { - "displayCategory": "reservoir", - "displayName": "NEST 12 Well Reservoir 15 mL", - "displayVolumeUnits": "mL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1" - ], - [ - "A10" - ], - [ - "A11" - ], - [ - "A12" - ], - [ - "A2" - ], - [ - "A3" - ], - [ - "A4" - ], - [ - "A5" - ], - [ - "A6" - ], - [ - "A7" - ], - [ - "A8" - ], - [ - "A9" - ] - ], - "parameters": { - "format": "trough", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "nest_12_reservoir_15ml", - "quirks": [ - "centerMultichannelOnWells", - "touchTipDisabled" - ] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 14.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A10": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 95.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A11": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 104.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A12": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 113.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A2": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 23.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A3": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 32.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A4": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 41.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A5": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 50.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A6": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 59.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A7": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 68.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A8": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 77.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - }, - "A9": { - "depth": 26.85, - "shape": "rectangular", - "totalLiquidVolume": 15000, - "x": 86.38, - "xDimension": 8.2, - "y": 42.78, - "yDimension": 71.2, - "z": 4.55 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "D1", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleLeftSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc97fa7abe20a61c5b7652166b8b4396", - "notes": [], - "params": { - "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", - "location": { - "slotName": "D3" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "402501" - ], - "links": [ - "https://www.nest-biotech.com/pcr-plates/58773587.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 15.7 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.65, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", - "magneticModuleEngageHeight": 20 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.2 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 12.66 - } - }, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.8 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 74.24, - "z": 0.92 - }, - "A10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 74.24, - "z": 0.92 - }, - "A11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 74.24, - "z": 0.92 - }, - "A12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 74.24, - "z": 0.92 - }, - "A2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 74.24, - "z": 0.92 - }, - "A3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 74.24, - "z": 0.92 - }, - "A4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 74.24, - "z": 0.92 - }, - "A5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 74.24, - "z": 0.92 - }, - "A6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 74.24, - "z": 0.92 - }, - "A7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 74.24, - "z": 0.92 - }, - "A8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 74.24, - "z": 0.92 - }, - "A9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 74.24, - "z": 0.92 - }, - "B1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 65.24, - "z": 0.92 - }, - "B10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 65.24, - "z": 0.92 - }, - "B11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 65.24, - "z": 0.92 - }, - "B12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 65.24, - "z": 0.92 - }, - "B2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 65.24, - "z": 0.92 - }, - "B3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 65.24, - "z": 0.92 - }, - "B4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 65.24, - "z": 0.92 - }, - "B5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 65.24, - "z": 0.92 - }, - "B6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 65.24, - "z": 0.92 - }, - "B7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 65.24, - "z": 0.92 - }, - "B8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 65.24, - "z": 0.92 - }, - "B9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 65.24, - "z": 0.92 - }, - "C1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 56.24, - "z": 0.92 - }, - "C10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 56.24, - "z": 0.92 - }, - "C11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 56.24, - "z": 0.92 - }, - "C12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 56.24, - "z": 0.92 - }, - "C2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 56.24, - "z": 0.92 - }, - "C3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 56.24, - "z": 0.92 - }, - "C4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 56.24, - "z": 0.92 - }, - "C5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 56.24, - "z": 0.92 - }, - "C6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 56.24, - "z": 0.92 - }, - "C7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 56.24, - "z": 0.92 - }, - "C8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 56.24, - "z": 0.92 - }, - "C9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 56.24, - "z": 0.92 - }, - "D1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 47.24, - "z": 0.92 - }, - "D10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 47.24, - "z": 0.92 - }, - "D11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 47.24, - "z": 0.92 - }, - "D12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 47.24, - "z": 0.92 - }, - "D2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 47.24, - "z": 0.92 - }, - "D3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 47.24, - "z": 0.92 - }, - "D4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 47.24, - "z": 0.92 - }, - "D5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 47.24, - "z": 0.92 - }, - "D6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 47.24, - "z": 0.92 - }, - "D7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 47.24, - "z": 0.92 - }, - "D8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 47.24, - "z": 0.92 - }, - "D9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 47.24, - "z": 0.92 - }, - "E1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 38.24, - "z": 0.92 - }, - "E10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 38.24, - "z": 0.92 - }, - "E11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 38.24, - "z": 0.92 - }, - "E12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 38.24, - "z": 0.92 - }, - "E2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 38.24, - "z": 0.92 - }, - "E3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 38.24, - "z": 0.92 - }, - "E4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 38.24, - "z": 0.92 - }, - "E5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 38.24, - "z": 0.92 - }, - "E6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 38.24, - "z": 0.92 - }, - "E7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 38.24, - "z": 0.92 - }, - "E8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 38.24, - "z": 0.92 - }, - "E9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 38.24, - "z": 0.92 - }, - "F1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 29.24, - "z": 0.92 - }, - "F10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 29.24, - "z": 0.92 - }, - "F11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 29.24, - "z": 0.92 - }, - "F12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 29.24, - "z": 0.92 - }, - "F2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 29.24, - "z": 0.92 - }, - "F3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 29.24, - "z": 0.92 - }, - "F4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 29.24, - "z": 0.92 - }, - "F5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 29.24, - "z": 0.92 - }, - "F6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 29.24, - "z": 0.92 - }, - "F7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 29.24, - "z": 0.92 - }, - "F8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 29.24, - "z": 0.92 - }, - "F9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 29.24, - "z": 0.92 - }, - "G1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 20.24, - "z": 0.92 - }, - "G10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 20.24, - "z": 0.92 - }, - "G11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 20.24, - "z": 0.92 - }, - "G12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 20.24, - "z": 0.92 - }, - "G2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 20.24, - "z": 0.92 - }, - "G3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 20.24, - "z": 0.92 - }, - "G4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 20.24, - "z": 0.92 - }, - "G5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 20.24, - "z": 0.92 - }, - "G6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 20.24, - "z": 0.92 - }, - "G7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 20.24, - "z": 0.92 - }, - "G8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 20.24, - "z": 0.92 - }, - "G9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 20.24, - "z": 0.92 - }, - "H1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 11.24, - "z": 0.92 - }, - "H10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 11.24, - "z": 0.92 - }, - "H11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 11.24, - "z": 0.92 - }, - "H12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 11.24, - "z": 0.92 - }, - "H2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 11.24, - "z": 0.92 - }, - "H3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 11.24, - "z": 0.92 - }, - "H4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 11.24, - "z": 0.92 - }, - "H5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 11.24, - "z": 0.92 - }, - "H6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 11.24, - "z": 0.92 - }, - "H7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 11.24, - "z": 0.92 - }, - "H8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 11.24, - "z": 0.92 - }, - "H9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 11.24, - "z": 0.92 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "D3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5141b52da1fb1d09a21f8a65ffc09a18", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "C1" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C1", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleLeftSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76a6ec260b13a865ec031bb1d86e4cbe", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "C2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9691185c5c9bf291641a27a39ba0e6ca", - "notes": [], - "params": { - "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", - "location": { - "slotName": "C3" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "402501" - ], - "links": [ - "https://www.nest-biotech.com/pcr-plates/58773587.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 15.7 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.65, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", - "magneticModuleEngageHeight": 20 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.2 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 12.66 - } - }, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.8 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 74.24, - "z": 0.92 - }, - "A10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 74.24, - "z": 0.92 - }, - "A11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 74.24, - "z": 0.92 - }, - "A12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 74.24, - "z": 0.92 - }, - "A2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 74.24, - "z": 0.92 - }, - "A3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 74.24, - "z": 0.92 - }, - "A4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 74.24, - "z": 0.92 - }, - "A5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 74.24, - "z": 0.92 - }, - "A6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 74.24, - "z": 0.92 - }, - "A7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 74.24, - "z": 0.92 - }, - "A8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 74.24, - "z": 0.92 - }, - "A9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 74.24, - "z": 0.92 - }, - "B1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 65.24, - "z": 0.92 - }, - "B10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 65.24, - "z": 0.92 - }, - "B11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 65.24, - "z": 0.92 - }, - "B12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 65.24, - "z": 0.92 - }, - "B2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 65.24, - "z": 0.92 - }, - "B3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 65.24, - "z": 0.92 - }, - "B4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 65.24, - "z": 0.92 - }, - "B5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 65.24, - "z": 0.92 - }, - "B6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 65.24, - "z": 0.92 - }, - "B7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 65.24, - "z": 0.92 - }, - "B8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 65.24, - "z": 0.92 - }, - "B9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 65.24, - "z": 0.92 - }, - "C1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 56.24, - "z": 0.92 - }, - "C10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 56.24, - "z": 0.92 - }, - "C11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 56.24, - "z": 0.92 - }, - "C12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 56.24, - "z": 0.92 - }, - "C2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 56.24, - "z": 0.92 - }, - "C3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 56.24, - "z": 0.92 - }, - "C4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 56.24, - "z": 0.92 - }, - "C5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 56.24, - "z": 0.92 - }, - "C6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 56.24, - "z": 0.92 - }, - "C7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 56.24, - "z": 0.92 - }, - "C8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 56.24, - "z": 0.92 - }, - "C9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 56.24, - "z": 0.92 - }, - "D1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 47.24, - "z": 0.92 - }, - "D10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 47.24, - "z": 0.92 - }, - "D11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 47.24, - "z": 0.92 - }, - "D12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 47.24, - "z": 0.92 - }, - "D2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 47.24, - "z": 0.92 - }, - "D3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 47.24, - "z": 0.92 - }, - "D4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 47.24, - "z": 0.92 - }, - "D5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 47.24, - "z": 0.92 - }, - "D6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 47.24, - "z": 0.92 - }, - "D7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 47.24, - "z": 0.92 - }, - "D8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 47.24, - "z": 0.92 - }, - "D9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 47.24, - "z": 0.92 - }, - "E1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 38.24, - "z": 0.92 - }, - "E10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 38.24, - "z": 0.92 - }, - "E11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 38.24, - "z": 0.92 - }, - "E12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 38.24, - "z": 0.92 - }, - "E2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 38.24, - "z": 0.92 - }, - "E3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 38.24, - "z": 0.92 - }, - "E4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 38.24, - "z": 0.92 - }, - "E5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 38.24, - "z": 0.92 - }, - "E6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 38.24, - "z": 0.92 - }, - "E7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 38.24, - "z": 0.92 - }, - "E8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 38.24, - "z": 0.92 - }, - "E9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 38.24, - "z": 0.92 - }, - "F1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 29.24, - "z": 0.92 - }, - "F10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 29.24, - "z": 0.92 - }, - "F11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 29.24, - "z": 0.92 - }, - "F12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 29.24, - "z": 0.92 - }, - "F2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 29.24, - "z": 0.92 - }, - "F3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 29.24, - "z": 0.92 - }, - "F4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 29.24, - "z": 0.92 - }, - "F5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 29.24, - "z": 0.92 - }, - "F6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 29.24, - "z": 0.92 - }, - "F7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 29.24, - "z": 0.92 - }, - "F8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 29.24, - "z": 0.92 - }, - "F9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 29.24, - "z": 0.92 - }, - "G1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 20.24, - "z": 0.92 - }, - "G10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 20.24, - "z": 0.92 - }, - "G11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 20.24, - "z": 0.92 - }, - "G12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 20.24, - "z": 0.92 - }, - "G2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 20.24, - "z": 0.92 - }, - "G3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 20.24, - "z": 0.92 - }, - "G4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 20.24, - "z": 0.92 - }, - "G5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 20.24, - "z": 0.92 - }, - "G6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 20.24, - "z": 0.92 - }, - "G7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 20.24, - "z": 0.92 - }, - "G8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 20.24, - "z": 0.92 - }, - "G9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 20.24, - "z": 0.92 - }, - "H1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 11.24, - "z": 0.92 - }, - "H10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 11.24, - "z": 0.92 - }, - "H11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 11.24, - "z": 0.92 - }, - "H12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 11.24, - "z": 0.92 - }, - "H2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 11.24, - "z": 0.92 - }, - "H3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 11.24, - "z": 0.92 - }, - "H4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 11.24, - "z": 0.92 - }, - "H5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 11.24, - "z": 0.92 - }, - "H6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 11.24, - "z": 0.92 - }, - "H7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 11.24, - "z": 0.92 - }, - "H8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 11.24, - "z": 0.92 - }, - "H9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 11.24, - "z": 0.92 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2dbb80729f8bc9cfaffaea9d572ad70c", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "B1" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B1", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleLeftSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a502d86bc2fb6ce29dbfda66729daa02", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "B2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39ea7394710060bd01f81228ab1fc249", - "notes": [], - "params": { - "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", - "location": { - "slotName": "B3" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "NEST", - "brandId": [ - "402501" - ], - "links": [ - "https://www.nest-biotech.com/pcr-plates/58773587.html" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 15.7 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.65, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", - "magneticModuleEngageHeight": 20 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.2 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 12.66 - } - }, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.8 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 74.24, - "z": 0.92 - }, - "A10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 74.24, - "z": 0.92 - }, - "A11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 74.24, - "z": 0.92 - }, - "A12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 74.24, - "z": 0.92 - }, - "A2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 74.24, - "z": 0.92 - }, - "A3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 74.24, - "z": 0.92 - }, - "A4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 74.24, - "z": 0.92 - }, - "A5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 74.24, - "z": 0.92 - }, - "A6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 74.24, - "z": 0.92 - }, - "A7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 74.24, - "z": 0.92 - }, - "A8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 74.24, - "z": 0.92 - }, - "A9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 74.24, - "z": 0.92 - }, - "B1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 65.24, - "z": 0.92 - }, - "B10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 65.24, - "z": 0.92 - }, - "B11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 65.24, - "z": 0.92 - }, - "B12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 65.24, - "z": 0.92 - }, - "B2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 65.24, - "z": 0.92 - }, - "B3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 65.24, - "z": 0.92 - }, - "B4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 65.24, - "z": 0.92 - }, - "B5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 65.24, - "z": 0.92 - }, - "B6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 65.24, - "z": 0.92 - }, - "B7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 65.24, - "z": 0.92 - }, - "B8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 65.24, - "z": 0.92 - }, - "B9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 65.24, - "z": 0.92 - }, - "C1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 56.24, - "z": 0.92 - }, - "C10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 56.24, - "z": 0.92 - }, - "C11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 56.24, - "z": 0.92 - }, - "C12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 56.24, - "z": 0.92 - }, - "C2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 56.24, - "z": 0.92 - }, - "C3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 56.24, - "z": 0.92 - }, - "C4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 56.24, - "z": 0.92 - }, - "C5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 56.24, - "z": 0.92 - }, - "C6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 56.24, - "z": 0.92 - }, - "C7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 56.24, - "z": 0.92 - }, - "C8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 56.24, - "z": 0.92 - }, - "C9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 56.24, - "z": 0.92 - }, - "D1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 47.24, - "z": 0.92 - }, - "D10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 47.24, - "z": 0.92 - }, - "D11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 47.24, - "z": 0.92 - }, - "D12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 47.24, - "z": 0.92 - }, - "D2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 47.24, - "z": 0.92 - }, - "D3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 47.24, - "z": 0.92 - }, - "D4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 47.24, - "z": 0.92 - }, - "D5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 47.24, - "z": 0.92 - }, - "D6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 47.24, - "z": 0.92 - }, - "D7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 47.24, - "z": 0.92 - }, - "D8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 47.24, - "z": 0.92 - }, - "D9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 47.24, - "z": 0.92 - }, - "E1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 38.24, - "z": 0.92 - }, - "E10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 38.24, - "z": 0.92 - }, - "E11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 38.24, - "z": 0.92 - }, - "E12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 38.24, - "z": 0.92 - }, - "E2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 38.24, - "z": 0.92 - }, - "E3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 38.24, - "z": 0.92 - }, - "E4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 38.24, - "z": 0.92 - }, - "E5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 38.24, - "z": 0.92 - }, - "E6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 38.24, - "z": 0.92 - }, - "E7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 38.24, - "z": 0.92 - }, - "E8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 38.24, - "z": 0.92 - }, - "E9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 38.24, - "z": 0.92 - }, - "F1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 29.24, - "z": 0.92 - }, - "F10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 29.24, - "z": 0.92 - }, - "F11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 29.24, - "z": 0.92 - }, - "F12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 29.24, - "z": 0.92 - }, - "F2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 29.24, - "z": 0.92 - }, - "F3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 29.24, - "z": 0.92 - }, - "F4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 29.24, - "z": 0.92 - }, - "F5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 29.24, - "z": 0.92 - }, - "F6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 29.24, - "z": 0.92 - }, - "F7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 29.24, - "z": 0.92 - }, - "F8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 29.24, - "z": 0.92 - }, - "F9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 29.24, - "z": 0.92 - }, - "G1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 20.24, - "z": 0.92 - }, - "G10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 20.24, - "z": 0.92 - }, - "G11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 20.24, - "z": 0.92 - }, - "G12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 20.24, - "z": 0.92 - }, - "G2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 20.24, - "z": 0.92 - }, - "G3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 20.24, - "z": 0.92 - }, - "G4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 20.24, - "z": 0.92 - }, - "G5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 20.24, - "z": 0.92 - }, - "G6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 20.24, - "z": 0.92 - }, - "G7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 20.24, - "z": 0.92 - }, - "G8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 20.24, - "z": 0.92 - }, - "G9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 20.24, - "z": 0.92 - }, - "H1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 14.38, - "y": 11.24, - "z": 0.92 - }, - "H10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 95.38, - "y": 11.24, - "z": 0.92 - }, - "H11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 104.38, - "y": 11.24, - "z": 0.92 - }, - "H12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 113.38, - "y": 11.24, - "z": 0.92 - }, - "H2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 23.38, - "y": 11.24, - "z": 0.92 - }, - "H3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 32.38, - "y": 11.24, - "z": 0.92 - }, - "H4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 41.38, - "y": 11.24, - "z": 0.92 - }, - "H5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 50.38, - "y": 11.24, - "z": 0.92 - }, - "H6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 59.38, - "y": 11.24, - "z": 0.92 - }, - "H7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 68.38, - "y": 11.24, - "z": 0.92 - }, - "H8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 77.38, - "y": 11.24, - "z": 0.92 - }, - "H9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 86.38, - "y": 11.24, - "z": 0.92 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c066837fe9d625127eef504d39287fa2", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "A1" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A1", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleLeftSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a27078c86e8c0211c6be1e3cd6980fc", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "A2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadPipette", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8589558225cb4b340558fc58da4729c", - "notes": [], - "params": { - "liquidPresenceDetection": false, - "mount": "right", - "pipetteName": "p1000_single_flex", - "tipOverlapNotAfterVersion": "v0" - }, - "result": { - "pipetteId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0df935dd9ba5e5e8cfd3a3fd60e8c42", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70917c4a0e328dc8523bbc079bf05bcb", - "notes": [], - "params": { - "message": "Adding Dye Sample Plate 1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d73bca4e989bb978dd83c8222302af0e", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8aa23a2bb3fff0ca3df42b456dd8ece", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6740560d86e7b4d7cd3cb66dd983446", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eed510a910e9534fe9936dabcb751f53", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c9b72e4072e9b2802a8377ce63721c4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "998630f949310e6c916417f6259eafc1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6dfdd5c3be56fa64aad020c78c947a1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "925e93dfb7472964d996c56196d3b2c1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64db84e734dbe13e9ec67933139bc4ac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc3df3c5119651d72ffecf2434ba61ce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2da511b11822959860de445fdfc4026", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa7b9013d36d068ffdb003ad67ec3f98", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c4061552279f0e18a5c987233313021", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49ad358af57e802c64f21cf35949da11", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afddcc822f8e37ebed1e8f6caa8d0957", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7dcdc22a29f0b27e8f550da86e52ecf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "167a5d5620ce6366c44f88d6e2559050", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1363f968756897d3598acaf22a406976", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b33f977085eafe71a25f839cf9e801c4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eae727abd0f5d5e3243f8ee21b937b75", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b66053bcb9bdaddc225055e76a51769", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a191557d924ae7ff78241855b6a6490", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1a2233b86d6077404965388b834dac5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f643a025d2545908893a90ad1049ef5c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26784f2ef75d545d8a06e64c0d076e29", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94bcfbb1e7c6ac60c263f5c1cc9ac51f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc63851f76b64c98bf2ab344c4136ed2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af22cef15f1a2016d241473471a41c95", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8963daa0cc76e971d7f4b48f5d874a1d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71fe0c63dc0073a9efa67ec88c94780e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8d750279b604d028ea153907d21ccf6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d451306fada3b34aa36fae3c460a9011", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e05c70ebee6232af14504fac0e1b9fde", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "577ff168a8dbae67714f298ce79a34d6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0039411de227833e5d03bd35e52710c6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cff5f9c876b49ad65846191b0f1853cc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b82ba1cef51d265a93a36560cb41050a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b23274fddb4fb19c9de5cfa57fd1236", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6cff253adeca0ca5522a306dc12c508", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95891442bf06088ed1e59d4b58a6c3e9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0585307ad1bbff5f5253201c8fd6a0fe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b04135a844f5ec5cb81bdb078d8b044", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "502b2e57dac6fb4134a476550eb25418", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7aa22291b42a51fd91feed5fee118af", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3d3a0c8d5251c623643f4bfe8729100", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4d75ead4e9c1144ab029b33f4e09162", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dbdce8941a83011f9e0041f7c265a7d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75958ae42e3d621dfc221cbe575e29f1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41c54df51aa3e841c348ada2ddc600a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "166c08ecb4199074a56def495c9e236f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f9f53f6d8c4f80b77dfc7720eb74baf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "250fc12309ac72acca1d82044cd4bbaf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4af3ae57559e149cc60f518d1f782e74", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b8f37ac9382960a9a5d3c3a582e3845", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed924c8e36350349e04dc9861fc00363", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b2e615e311a5e55ffae4d1dfc27999a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4aecb4d5dd9d1aa952ce2ff81e349a27", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3cfd70c18a25e0ceffa64176e12ae459", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aad32bdc1b5e14b1043720fabcb8a341", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52cbc15324a5d280d9ca206699989404", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eafa0ff6c57f86d6fbff855d0c6d02f3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ff5e0f29f4a10d658a4a66a85144b11", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd898635d2f022c510d6beadf3b9a177", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07431589b91b160e68caf8b9010383a1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c802a39f1677546c04c50a57a0c5eb0d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37d9dca37744612cb702b03899ead087", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "143d05105a6396d681aca7eadf0bd0bf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25d87d34a353f47fae1a5075085827a8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a28377d24604516e00b5d6d59236b9d9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfed6985ccdf051424b710736e3050a7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0825fbd7cea13107761cb4aac1fc6e70", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36d7d376032acb2364e24c445cb88b12", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acd87db5745b5999ddb9fe8258e9b666", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5c7fb47f823fde6a3d8467873a503af", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13ef332b3bca718eb963d96ace72e4ac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf7c0ad330b8a8a4acddf3632078724d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "981801921f126bc5f99ed09c6867250c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c69da1e812dbb79050297732b79173a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be3ccd6568ac8e060be3ced633168013", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a14e8406e1891ed4858450d2549711f4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bbbbd56c8aa036d1ff20f7c3d41e908", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c57048a0e9bedeeb0931139aeec7e81e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef2a00e1e6afda6754b2f52a26f52090", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fc0c4045c9e3f2b96a7744a4794003e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f157af31e19a44fd743b3429aa681af", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b35d98faac2f6e3046dbb745c1745c4d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d47a6c63ad5732bf6f1af7cf7dbd68e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d70253c20cf22f8daeedc621db69a82", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "460832850d9302f89948daa4db629be7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c30dea3027f84ac86e4ba7e4b489696", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e811bf5dadfae47f7b8cb6a7752596b5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f954106eb4141a259e8e00956529159c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52c8d14444f31db1025d1cbab14474b6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c22c8b73182d307157106a31da9ff085", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cfd4a9503150c154690691d1d77240e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "220a587da64877a5be33108e18210849", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bf6012b06511d1b1ac2d7f085a4fb88", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7c1d9241a3ea40aec24f67aaa9355e6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "309248cd3f6687f5e8534f8f3e4f04a1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7e09cb6ded07c824683cef4d0b3fba8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ae29956d46d723286ba795d1c169f56", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2946514011c7a803ce73dec6b03cda8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3ad57b3a4ab509c21b2c7110c8bfb56", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56066166954042ab5ae90122d2ad96e3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f08fa050fdbf9d68f7891d52c0fab894", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5feae9d667f3799eb15be21dc66ebd7c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e3b22332f56c866f3a649d0a9dfe878", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ac2e05d55908ec223e1d653e852ddeb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbde1d6cb7b88abf55ebf67bf0deb647", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea81c0737dcda63fe8b4de9110fff07f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f7fd1d0b2876da8450c2208057a1f47", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0072e28496b0fe9598d06bb618b48228", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c14d7383460ddb545500b46764ce5951", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b28ee5e9a4b4fbd5b0c2e241911f3f81", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07098a39127294790ff36d05a4f66d65", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "037dc63efc6518adf10b67def8b32dad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32e8ceede37a8d6096c75e4d51a422e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a60089be7d60660e68eb7d5ac022677", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "763eefed581943b906fdb1f1b1083851", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3958a7accf47f537d42c24974319982", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "357a3834c482fe0456dd097058fbef4a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c71c1a85d024212a3bf051ce14ed3893", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5828b5f94940d791d0fffed7c0726b34", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d453e14de12a3f8de0c179069060e99", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "629d0ecb65eedd6b7829803674711ffa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59eac37c3a3540c5c15ca15f687e603e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fed40ef6cc668e806d7c51dec1330059", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bd8d975aca9a3c487a2bb70ef979b78", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc001073496007707e6b7677b8c3ac04", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a71df09a1e434e857f298fe88394b80a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e8edbe223aacf03a9366507d59c74fe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6cb0049672c9781c99061884703083df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f3488af8a22d91acb05b9c49e833c2b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "627312fd69ac0e830dcc71ef972332cd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a44bed4838a1816399029a92e48e5a4f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6369212b3ec470c06b67b20c6204034d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c11642aff6e675865c125a636b0a365", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72111a2a2dd00babb8eb766e81d4eca1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f6fb3e393bed8ecd1953f0f14a23db9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfc9c8188e7780a240f8fb784fc059a6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a93932a33ebff12e9f947df4062268b1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "277c9788aec4ec4d90b1a3cb14bdd08a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a94af45da1a7efcad4a3a7c8ac9fe8f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50f3a623a5f19f22975ef578ec677e9d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a7c52f6e3760676891dd5cf92cc2c96", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f5ff115c93a22bb96422d3919086075", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a136e7a012ebedc069ae96b88b491034", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e68556c5c91dabf48c00ca98fee38b94", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdc39d8aee981d4e76fd805ea3261e20", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a88fd98f536c5d569c4d1bdfcbb9d72", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8a9c046245953ee76b8e90b0e8aa5c8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22f30e0dd8fd921b271356b191dc3e8b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1637df839cb229e98ec9cb85cabb75ee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f8ae59d55cf78d93ba59c20cabf6b4b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14451977b2dcad3cf2e507c29e8c00ad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a64b961e38af31722969d87db7aa5903", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0ddd76158785a8a4f260b6d3776169b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dc1c492672a980599a5b8599d9adbdd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cac1fd37151b2a3758eca4b20990b49", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a40c6a532b6ce522f12d169abb16beb4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65be83a490f70769db7652281c398f68", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebcc87d8ecdae69be27e3585dd723dfe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2df324c3a0683b8bb8689cd32fba142b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80e3f2e4791fb2227ba77c58091c6d40", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c53ff22db8880e1e63c896b29721371", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11a70c8a92bbbc282b162f2c071d14e3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51c637b44d170a366bd42b7d2a729d61", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07e70cd1489ebd3d2d89a478eae9e597", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "732dba477967c4bd1fce6f60f622db84", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4fd698978b83026706e8121cc333e62", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09e6769476844d96b9a42383e8d03f5f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c319867d21e53929b26604e8ec988a5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a51877b9cb020b405dbc948bf7d8f1e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37247d7e967a677c66f5449f17b99f65", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6177783d889394a1362ed125b90a6a97", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17020365d876d68ef62b0d258ab070bf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3be98565c1a2034f300aa51cdf49df3e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c755f6efcc35b11df2481eb0d2a2bd79", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94ea0bfddc7e8758d09232b471025073", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f147b432dbfa02f8ec003c02faea45e2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "639443eba792451b6b5f04fbf680bc41", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30a2df90f95f9c03e7d1ea91a64e1326", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c912b68e2efde47c67177b69b2af963", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee09c05e74f4cf6186803b0e593857c4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83848563d8aa43a15d4052e92275afeb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50ceff11cffb0667c58e8aee497070a7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd6a827a2d4983714755928772b20567", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8ee88c8254019b29a81f5ffb57a446a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9dd96430fa3ed4812a1a632cc9ff035", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8642ae8c835ec3c2f3af40a3a6d2252a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd5182ccf2d8c50e958f4aaf7ce6c2ac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61fe7a56bafdc54ea1ee62fb0298edca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "018e23c800aa952982774023b2a5d23e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0645645b385572dbc8853a68992bc98", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "184019e2a408c0d35b4732266ab1a00b", - "notes": [], - "params": { - "message": "Adding Diluent Sample Plate 1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21579a98752672fa1ce16a3c46ced90e", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1180e4f90ac8b70488744d2a4709930", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 14.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e66745dcbbc3ff3293e2fa9f52c0ffff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17a8d822202c900d09774a6ba6a68f35", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5df390ef91376e1d849e8f67a38f1726", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 14.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae457b47ee8392e7200136d473830a35", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 14.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0711db879f61b95130c504511a493cc3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11568f01bca53912716341ab4297c8f7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f29a18d600e077994209dd0c6dfc5bb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 14.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d944953538bc7022427d4d64cbddaf8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 14.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecc744d0e952d860b529b360dcac5936", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7049f362f52e0d7650dd5dab86556ec8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8ae09e2534bdc4665ded300df3a6994", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 14.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e20212f3d56885a5efcadf190a88473d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 14.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c540fd9011e514b5786bfec53ef348b0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37bb97f6b6a928988227c1876edb6d7e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a363b3a2d2571f020e09c3640b9a19e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 14.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f326089bd179c4a336080f1dcb818d2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 14.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bea1a526e8099e0b16aa3b9133e84ed", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3667bbb5dbe253e3b670b6f496d9f0b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44c73c0c903d9f32e1d77fb6661ca79d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 14.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "998027c26e5ccaca33abf939f777301a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 14.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f67c54e35e5e359cac55a3dc823f10c9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e9d560793dee06ad1c68b87531fea19", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b44babec8cebb39b70e873c5559320e4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 14.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0456033e3bd795a74b0ba7d3de87d61", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 14.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "902c125f6276d59e7546252f4aa6c3c9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68b634c71d8a25e9c2299f5e354dfa8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66ad635e934b1ee137703ae600858921", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 14.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b49b64e7d6a9014cdc5b9637912ecdd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc4252e20119f2e34db0aa27700e0c7f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0030418c0ca8ec1e33fa305a01e115b9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c554816d9ea6c0e3dcb5d832cd7f4592", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ceb4de79700af8c03d08506d44d7e0eb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 23.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0431319325636d68477c34078b1fc843", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce8bf08f51217375129b15b37efdd1fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cd55c63f3b9c80bdf9f44142d6b39a3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 23.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca0f2158f73a36628d0b9c9931ef3a9d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 23.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "790f4d6185447282803afa9d9bf35bec", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd554684ac72b5a0db5eaa3bdef9183b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bba8c743c88cb8ff5b5ce36f6fec4444", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 23.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df2209eca37e37560d43ae1d0cf7743f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 23.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c396e6f4a26593f62f38eb69b0b49fdd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab1a70d971c50c05dbd8aa7201a4facf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9abf324509d3cd25b0450c6bf0617c98", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 23.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "242c0e863b9cb4950bbe0bc30462dbea", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 23.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35d5d2c050517ec9b9a0cd4c09b8a77d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44112f3075811b56c93a1040f51f54e3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26c924716d35ff14e452b6b59dd58df0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 23.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "674f85c052240356c28e99a67c9e5dc5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 23.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cd5518268f5ec603a56eb1382d1f3a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b38f3d0600df34bb192d85ec97896ec9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f308126bc02d5b0125eeeb91df580552", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 23.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e3ea2573349994ae5e1e768dffcd8bb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 23.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebe61eea00f9860c0b1adec766ffd0c3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83024fcdcab2a4cdf3cb3c1ee50513d5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c1c0729a812aa1a56fd50f0163ccc48", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 23.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2ddf7f9ccbe62e874635eb9d365f92e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 23.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66d06b50c78967ea9b7e58507aac1180", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "501f966662827148693bde4e5be6233e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0090a97920bb0f94b303fe34765c8606", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 23.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "186496083bbc923f412f55c1d42cb0ed", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7520e74c87174a1aff7d1d70f9e5ad35", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae47115d5eed122499395243d0c50e8e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6e22a5bf1df3b837db957dfcb048c0b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c132f6c13db0621bee967815e930ef14", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 32.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5943b7e06135f8d738a3120935ab269f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d6d72ad467a4e4d6362df5b876fd382", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd2dd5cbefd5a10ecb14c2076a47632f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 32.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db48c27fb8386178794442d2cbbefaa6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 32.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0eacfc72bdd4d6e6dfd90eebddfcaeb3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5b87253de19fdb29f4d2a2fba709d77", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12a6a45aa9eef42eecae915b5dba0cad", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 32.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50cd6ef1b3ee8233deed0d71c52b5c5a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 32.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "595fd4d7ef2d31e7c0057ff932c2d2d8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9278d54f682e3f61434d9ed18ad24b1c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35d4dcae326c7864ee195141fcca735e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 32.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e58941fc239488127339ac36442263c8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 32.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06cddf2b9faa716c9bdd15460dc3841d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "931c6d8d1e23fa9f10cda0251001848d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8b6acd2de9604e9e2fa3187dad03abf", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 32.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6727cf3668344128826a9944529a55a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 32.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea7e9da1bacb58e51e0e98a18ccd161f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c750ca8fd7eea308f11b5db7016f5d00", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db2ec5db89240abca64bb8d62e8fcaa9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 32.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c734463364bbc745940f90fd7d8ff85", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 32.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2be5be3d25224c53c4f227b211b9c181", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b59af3dc2248c8a9e990d47106e16ec7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3966335bfdb070bd5959e7416c8e6040", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 32.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fac2cc70af92b18a5228aac9352cb96", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 32.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebb909fbaa05083dff074f53be727cce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2194cce8df0212365d4c1183920b4bd0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffcc93e0bb8412f61097c899b088d41a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 32.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b559f2ea866488844d834d50c2492120", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "451a77ffb682509288981027cedd41d6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b53ee3e81cd8a2a3635338d79668f04c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25deb40da94149c3ef4cf428f0f39b72", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7e3126c3dad76a999928d796c8e412b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 41.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3d22efe91b1fa9c7b018b3a28f867df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d28ead167196ca87a941d7a654a687c1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9f1992f5eed6e217660b33e82603ad2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 41.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c969d97c2b9d44f172f7552f5569a07a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 41.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b73c02ee11adba8273b7519a954b7cc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b71366df0cd925c4507c3538f208e5f4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5607b6a5ab1200756072ec69ba97d61", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 41.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b04096622774b2bd35d665e894add30", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 41.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5d02ff366f705ef37b89f25a848c955", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "143c0a0c3204bce87d5d234078ba93cc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99fbec96b79e363088225fdb5861a88b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 41.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe0b920c466c4d7ab95b90dafba206e3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 41.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43ec1541c2800d876448b7c0b2dd45cf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a67ea8600deaa250c75049abf4180851", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8983b68f9fca056584697a1ac521fc1b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 41.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2eb811e740724f84829c29f51741df4f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 41.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f3532dcadbe5721881375d83216cc01", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a2f18577622fd12a1e580b252a4b40a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed3d2fdf003b98f7e1460f113f8045a9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 41.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66287b41bd3710bf8d6ba052bb540d39", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 41.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "436ed16da0342f2658970067d6a23889", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37391ec839b892c1642473455b2352fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31e4118f60e292f97d6ceed2b30c606c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 41.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "008464a9ec3cc74f9f0cd4f2cbaf6677", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 41.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb126b17e074f341398b0fb47b3d62d2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66e2fb457e4ffd7eb6b3a27440fb304c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3426b43565aee8f66b186aa0d3f1c01f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 41.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b597942bb7516ae78cf5a03e3736ef4b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9755ae3fd57d91c8af02c17ca5604b8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e62433548f1549cc73a2c4b6ec1af35", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87029cd8ecd3b119388eaac71032de7f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "240a5afb1adefd7bc8eb47ce01f2eb2d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 50.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcc68e4492a10b08b03286134da41c92", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "090a217a702251b8b381543b991a4e95", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13db81ca570beb07f4970ba4bef6675f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 50.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26d6761be397713faf654eff4b54f3e9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 50.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58cd8a7b6b3e1bca95b2462f7b6ca9c2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "641bad1e93f8b1c3bdf3fdb2d6faf6fd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a219bf704f5ec8dba783ce3754bd25ed", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 50.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdf793e209ae85742edc3b87a8c2b5ff", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 50.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6a59f0abcec199dbc7bad1406dfae88", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9143ed4209f314eadd201ff1d87210f6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbc7d7db237960b1b8d7533a47295a8f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 50.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94c1a998e95813ed8507aa976667d338", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 50.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5380e476d4aa8b865e200bd0f42dfe0b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4740df17045b8360d004c261e370b14", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac240fdfa909f49428af9cf0294c3df7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 50.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c552c900e3c9553804d14fde018ad98f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 50.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8de681b41fadd578e7ef913247dd185", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17da4d2c1817448df6701aaad4cada8e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "760335892a37fdfd236aa6ac5665bcd4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 50.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39c456fbd22f4bcfb9cf613765964204", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 50.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdadac27358047b46d7673f558847f81", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38490cfec41fdae1a94620aa51c12dbe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32f30dcd072479bc8262579efa732f10", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 50.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec61a341a0a45ca8865fafaf9595cda9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 50.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4af6c3f6b191441478a75050a33eb14", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49b4011dd38240be58a94a972a34dbde", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b3f53505f45469b95ff655f26c08604", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 50.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ee918118f3961f1aebed4c0bed287c2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d58beda087457896737385ac6bb48e71", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "429c4348af6b19f165cd18bef5676a96", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4629b91cdddd4aa3eb844d285a6c1292", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1fb5088445e56d04ffb777e3e44a066", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 59.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a22f60a391039cc8724eec81e811fba3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3bff0606d54821180d55a88d968b8fc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27f7740c2b0f28b317e0a3e3e960af38", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 59.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a96bf30460cc7b8aa0d315ec2914687", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 59.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02ac03f55c67ce83ff976e7165bc3da8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fe0679c77f2defdb2f884349fe3eb8d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0940820a27bdc42e698949903c756fe9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 59.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7277d1ba70a0931f58e939319838beca", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 59.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eee0b03ef985481d2170b0a4e714ede8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89fecb896a5a0fc93e72bdfecd8b5cda", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1affd5bf15a5e83ea0db49ff0861a4a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 59.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce221053d104fbb8e55a09d40821fb57", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 59.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "008baf2319f1247d5cebf51e4d0fec6b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d7fd62311f23b3b229035fec8711c8d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3385ea7e8235e647bc18fbaafdf9a02", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 59.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e803e4d2b2a292b6080f0f1dd7788d3e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 59.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ac6ccc2af06cd4eb0cbf773ebbc62da", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dca42d53b214959ebc1d163bbdc178dc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1f2914fe80415e69036052504852fd6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 59.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbe881f2c2a99698eb6134b1bc6372ba", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 59.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64f528ea1b8c66978bc46c834a2f8291", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d03150bfae50d4a0ee35c90f6b18f54", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a50e325560f2be37a2edc6615dc55222", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 59.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a79c15602bd4e46274f126ba0d7c7fa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 59.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be540f11cd37f1efbeef11bee5f33a57", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb29e33737f6ac70140e2e622f6eae24", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b414ac4a50cbf4bb19cc2ecf2eecb19", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 59.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "577ec3e50d0ef983e0197e3d6f8835c7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0947d32eb6fb4fe6e44ac7624762d666", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd0466e6b0e834b523fe9da6c3968860", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b57d37ddbe93d0244e3901c3c982a034", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6005f580dc65d333aaa613297a3fd6ea", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 68.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dd84d4fd55efdb189b5e7835d11f726", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb667be1b1244647bf6d73ce7e90b561", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4200c2d3d64c708988036c5fe90310a4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 68.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bcf1133697fa1da5a46065255dbe9e8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 68.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c77924afba8454bdcb07cac4fc4802c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b819177b8f0e67aadebc776ac2c8711f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09f8d38177dc97a59d808b3a7405e1a4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 68.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f0ede49a44681c75ce06e09c152462d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 68.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53163e0ba9129b88eefc3dd13ce35d7e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7360d3b3724a6e5e4a17ccd51f8fa043", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ade8dada2e36e54a04a8c13998f4ef9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 68.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ceaf9f2a9a6acd536604f9ea0a80fec1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 68.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce5273126bbf85cfc025a0e0dbbb820f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f6d9054cc2f5a391e9efa88188813ae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc4c172f55716bcbb5615176bd7aefec", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 68.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "172f7f61f7c5bc7ba02dcf235d179fb4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 68.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbf26964cce94d0379af7e44b5c62db1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35a3f0a2a3a43add8e5fb1e6b93c57b5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c20deeb353055972d2e2fd77d8db8528", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 68.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ca45add974f4193dc5033c2bc5b7a68", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 68.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e21c4f4480dd7caa8f63291f756e4173", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ed751bb97250e7dfb164f6559db6958", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17d680f7a9418fccb650ab52af96a498", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 68.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "384234a4a8aa3d63a937e9dfe56c3f95", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 68.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3215b796e413bce312be4ba5e5f46a0c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "123759d874a29aa79abf29eb54b73af4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "013c95443d62e50ef194ef1c571f3970", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 68.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6711b9ea198ca2039d40496c8c2ed1d7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d32a28f0dd83f0e5eb8333b2d670a79b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62c05779299b79b55cc71ac1f9f91d2e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57cf58c070d7e53b45cea7be27132cbc", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c53dc48978c40347bcace537f4f3778", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 77.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6ac81ad9fb86a5ba0a12a421691e0df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebc4f566adaf99b20a5b296a17c1c928", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f32565125be4eba5b721928a974d45c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 77.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f08b8183d8afce8430abfe92cf2958f6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 77.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59861b484f6a4ac0e09c079c03fe9541", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92391c856590e0fcbd1478edd9f7ad9b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fff0dd206167aaa9bfffdd57756ca169", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 77.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f1c4a6ed3f8bed967e7793339279721", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 77.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e26ef521a1cd16351a9354e5584751b4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1faf0181584b5c4e8e3bf430bb6c21a2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78995bc8aabc5bb9bf9d00dbbe4377c7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 77.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f8989117b03b25d3940db463470294f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 77.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6326ccde086b5d1be21bb2f482961c1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9489a4f4fcdaf720abae3be0793e37e5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5fda483f127b498f71acff8fe9953fb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 77.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43a00907ad0cce1c2e2c404ee3f79851", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 77.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f4636944b928ad34105f9f47065743b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b9f65f15306253ef04f83c931f56f37", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a03acb469b8a2d01333a026e850add6a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 77.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6e0ea528de8bd1a250a153194e5b0b3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 77.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f87889571f770d0661a635ef750efa80", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ca9b0814e6bdb7578f613dd893ce698", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95f917dc948659bc15475606203e621d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 77.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee1e5c33fbbab53566b87660fd3df869", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 77.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a75ac719930712f53b99464952e681e2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9efd62a11724c70dc0bbdbc11c91e6b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bab8ab393c611f7bfbf7e55afec094ee", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 77.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdaf3a0f473c3e9fd99ba31021cfb7df", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49cd41c70e9bf1991df137820fdb8a3d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "020232d7e9cdc128c55bcbab05027324", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39ff80653d85adab3969c60d11caa7c7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a42e744f6783ccc4d9714eab4c5c5c7e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 86.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12e7c410e2bcecb4fb199db1d256d394", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce8ed9fb8f3da3d874f3af4f9a62ddce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "419554c7f7b066648e7b4da69115c246", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 86.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c47638912c94c00858ae7638053e3042", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 86.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff62275163ffc4e1eae97f778e15b1ee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "703c9045dcc3cf65c94849a54a48ac6b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59458545840a3ed53c8fadc15cb8d464", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 86.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21ab798a56f167b6ceb20a35b1ae31d0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 86.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6ed1c9264452b0e68896c17ccb521a4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b7e5238ab66349520802fc1c1681068", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35f1f7004bce7745659494b2bef5e267", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 86.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a31fd7c19ea625a5c62f18a9e41f3ea0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 86.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf8f793ed697108eca50bff5fc1ffce6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb1d9716ab7694ffebb61b54e2f6e05e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50c8cf2cb589e823893c2a37138ad099", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 86.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aabfce8b95b45eb0036dc560c2e24258", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 86.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "154276ee6c8a6c4af3ad2cc5b3db2018", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf41532f7d5ae6baefdbd4034b3ae813", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2fbbc85069b4d1f3a2f5ac3517670d0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 86.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a4102219286c79529d51b36d6c4e7d0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 86.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a01b68f067b31442e5c20d85bcf38f8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a92ae9cf07fc8bb1026ea5e19712e8bf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65ebed6370f4a51a80e581919acbbd66", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 86.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c618a7c036a3979cdc15f63d992071a3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 86.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f1b1cf42227900ff9d797919d504a5c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b5325bf0d82caa2c9cf8919eee546ec", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ab7edfcbbd6f475c2a057c1d087d5f3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 86.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5600b3a8eee8202285df050e89ae1a48", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f1359dc8ab18abab6cc7017f9f08abf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b0aca4d02b98a2d24ec906658477808", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7969634150e6b51c4eb960124002f15", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4050ff881037fb2956f31a71e0988a8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 95.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40b38365064521155bc2a11296800525", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edf7035a8389854e17bfec8a0fa21800", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f36684bd6db14b03be280df4761494e6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 95.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e892406934bc50ec28c45cd2f169d27", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 95.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01baa3f3397ff25952c8f2375a2adda3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08f64a567ebd3138a7b6926f8ee8cd1f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9585863e4da04591aec17e3cfa7b5741", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 95.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66dbb7dcab631549b2e4b505702113e5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 95.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc1a1d3a15d8036eec1bbc322fd16e65", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8863f7b9bc0e6c860cd42d75e9e4ea2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14d6278619793291ec57c00600eacf3b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 95.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdd8c2e713a876936144db61cbfeae19", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 95.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f75291929722eaf5a9314daece9a32ca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86580cdc2628a422192ca20a93821f24", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d56f29130ee569a97b9a23e0e2427db8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 95.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec68583123dd797ed0c210e9c0d183be", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 95.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9079b959f6896720245a465fabd688e0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce3499a232763956835825abe55f062a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fb29292a204966d948ef7090602f6f5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 95.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08fa2234b53011bf08f535dcf0238678", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 95.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5639dbd26c5f2335a99bb792db1e5cce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9834d78e02e793260c64849ad3e19a16", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85d2aa3b96992e0abc7de01fcf5f3c6e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 95.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee03c227d7c6b12b18adadbb4700fae0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 95.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e936564cb3c46fb3fcd97d6d0430b294", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a35652ab5da9e1bfcd513080940f0632", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cb93b79b354150000d5d3ca46a082d6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 95.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0eada71e4ffe9ede2214abe6287cb978", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10ba44f58829d416768a882c2c5a15d8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d04be3739a1a7833b473acfdc615aed", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f139c84b5cf07dde952bcdff4fdea55", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6280349634cde06f518fc5427997639a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 104.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80317b56433210633b83ad6b11a59c90", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "669eaf7222089fc2aa60eacd22169442", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cfe63924457a057a5e49283618173c5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 104.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c654388178a0ae30587180ccf0cdba4c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 104.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b624abc24d44ad0dfbc6ea88649e7efb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93580244063183bb9527f79c3e13e17a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c65cf09764960746e5e07cad9bbf58c0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 104.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "faafd1733af81dc818b003168b697bfc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 104.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37b84dbeca4a8c2b8aaf2fd9716fa3cb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a61e262d3f8cd5815f3155590aa261f5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "268837249527a2c2f54da0348ac6c2c1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 104.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "917b96fdea853043ce26ff202d6384ff", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 104.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "feb37832d4bfc8db9b9f0634d9babca0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e775f1ce260533b8b17e12c16275de9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55e253b1b6945fe7a7907cffd9787d36", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 104.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da6c7eab9f68432ceff55cf4ec8b8315", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 104.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb3637289d998823bc21cddc218693db", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab3e180161a4577f44153aee229fee41", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87a1f80ed2a5aba8e721cde84738d739", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 104.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11d9a96ef27061fab78765596e00ec43", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 104.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d064591125dcb6a9ab52123c57c3b92", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c37cb0709622607689dbd339171fe9b7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad56c4448661f0bdef1b97a4a3005a30", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 104.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f86a3af8e5056fd7e2a4d9f8da9e749", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 104.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf037250f3ec2d2ad34906b3c9ea9e00", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab7836b532dcbade43eb7e3f22e8ef2c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f894f7ff6df5e38307bf776866d4f3ee", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 104.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "828e512b022effbfa083347e354cffa3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3c50e643f0caf30c0f2a71c2fa2dc25", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3aab2889bb9d3a2800c8a3ca2f8a08ff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "280daf23322120aaeb0a156943a1c329", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06acf9a7497b9fa5db8b5e6b7e813329", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 113.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a30920d191baa893b796399ed9e488d4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e801197c03e95b19d48db3ed7dd7dc4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57f44574db07df0bc52febd4f42a3fd4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 113.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e62bc41b2161184683171bdc2212203a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 113.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3769efed941e1e32ac2197241012f26b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94ab42757108e1c6d4a32022a36cf2d2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96dadbebb1630caed53774a0fb2a1e6c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 113.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f303e4d84a7032ead758d76567531376", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 113.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cddd7b52bb0aecb45b6e2b7beb0f1828", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8d5a2a92c341bc99179d9a4bec9ba81", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36ae52dcb8db77176b8774eec4f0d78f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 113.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a47a1bddd99ec51be3f034ef037a789", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 113.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "262735d938ae3b89f0a0cf7219b1967f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4a0eeb98743b282a0f52bf3368a3bf3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64f8727e6d87a54a63a042577a35bcb8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 113.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f23a84df1ca8260b2a80740a3edac4a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 113.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9af8af742bcf4ed32d1cd38028278489", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ae6f82f5bb7a0dab9f3ba63bb4d38a0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c2141dde592d6cb90a0f682bcdd8162", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 113.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "416011d67ee8a492bbd3c4515bdf6ec6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 113.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bf6a6a18f1b38a0b1cba89d987f5813", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91f6fb024a43ebc2c79ddbd4564d02ff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e63345bfbe635699c1fa662942abb6c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 113.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "563bf74594e558f953e02b1b7135cc73", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 113.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "201d1ff1f921e1c14d523cacfa3d1ac7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1c01f9f313819eec6a1a1442c76be9f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37b4f6bdf46948c24c3b97c637d2e14e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 113.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2b7afa0b0ef16785acbdcefb45fadef", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "915d9e3a015bcea26b4b6ea334dbdd49", - "notes": [], - "params": { - "message": "Adding Dye Sample Plate 2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ad0d11146a7d437d4dafb1856a0c12c", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f40fa594fd816cd7cba8724bfb592db", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4eec512a3dbfa94f7f27af60a7886ba7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5aaacef1afb4ee75d207fb2871edc998", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7161664ef3a47de5a793a9a4184e02e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80b0b12b02173c74095f1468c0bca492", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5190f4c18f8f5651a36e0d371582f75", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7af4bc49dcb644b9f90bba88eac56d2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a1d14328d1820722b4b776994efcf98", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ba281350bce800824eaf6808bfedc34", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fc572bf5cecf4486e12208da513092e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4aab705964f74c7a21c32994ef01fb1a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9d629fee1d614ccabea343e5ea309f0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e404f8b47a3b38ee20c1e8ccf3a41b9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1127bcc53da234cada6c356b0f2b6cfa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af7b846f7c5d8bf081fc0fdc6c0c76cf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b6f078556e57d4c96edbc3210c7d066", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3c5a5e86e6b3ecd5ca8c9edc12cb2b0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aeb15d78a9f9d8755096a4d7de7c06ee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d9b590f53b932ebde141645e412aa8b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74d81cad5ebf4e5ead1e3cb8c0b590b0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6df826bfbb218f16c261cc970cb3fdf6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97d5e4350b1dd3063805ee92514eb0f3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a5a7e664283f4034121b843ff0b9388", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69f6226dac8d9f12fa17340a34799c71", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8508080b3b96bc2f22a558f4ca3b9816", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e9f27e517834635ccc4481f7082c47e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25279ee04d29e580395afd7098003a24", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f44aa2c358b6b559d53f920e1d78918", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b29cb42d423cf4b79a131ea7e91dde5f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b98d95c0ca22277c92d4364a818655b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3932c9f300299c844eeb573964cf56ff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56fe7595114c743ab48b4379b9f0f95c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64db6a026f2f8e9421fdb25152caabf3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38a14dc23e3a92f472c87daa80ab25ac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "360ae5234856f84cfb00c1ccb01dd6b5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "900eb22a91eaee6ca595272c28bb7362", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe7c99072b7710a6aaeb756d1867accd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3745cc8ad3665d66cb1e5bb43bda1b1f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0e5db228a4dd027de2e6f7c5e73b68e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a71b225df6c7724f90e252ce9f5b0d3c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7eb5a7f4bed17adff49a28061610029f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb15c946876a21a8c507d50f30a8232d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ea0f26516e54ea471db285bddef155d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81a7a496f57a1b337d346024269c8b1e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49abd4172736b98510f36ef866ffe345", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0e628a34f44e2ad177c59d1e349106b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38aa080d5388786240bf1ad7442ef7ca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d8ef4841a2d9f4778a46df8027ae387", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02c884402f90e814706106d76fea33dc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2118719359ff2d5629c7dc5455119309", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cde424482c910440a2314c46a25e1692", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ecf2f4e12c1364f87b20822cf49e712", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58235605d90da58fc8411d9c283b4b7c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f77e456a5be521a5fbbe2de91a69a909", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a215b97543c024830db30792906404d9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5edeb321e946089b30b6f1b632ebb11", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26e2ab0e23d59f2f019eece6fb6540b4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2c3c70b0dd8b5c410d6a72a41e699f3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d224057f06f40fc5193c5740770fd8b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e12092e224603995b871ddee0871b09", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c634b8a25c89b45bbbbc507265a9e699", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa5e7dffe0265dc42a315cc96da8a8e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e098554ab07f46b737fd5a8657419d8b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25eb44e92961811e04f1e6e88618132d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da3d75ca77f1f61ad90e58c0569e7891", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "633f82ecc3d9c2269c4c75f5d3bdbc70", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e6704feef375f5c5c46363e0032b64d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f123ae383b50136c362b03a72f02770", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b4432a85c92906e5e9dd4049861054f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a04e9f2a95fa18e6bbb114f1ca358cb3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "894dee4b804abb37de633cabcc892f2a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91086d0b12b23c6aa4a4a84316b2cd81", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8093a66fb283696d2e3ec6950b165b29", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b2f80a70e247626f24cfee33b1e0354", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e223b07ada0e3313cf3a06b225ecd45", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f8702bd636d37feaee8265d2e0c214f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "affde222edef6a107010b7f2003475c5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8cbbb04a5400c11d820f3c078fee056", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6a4abee205c4ab45dfcd297049b3dfc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b63f0ac79acf70d724af17b2bb654497", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fda2e1db83537ad61fd83b42d5813c7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db501efae5584a19b6d9439fb32ff5ef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "328a75543240342c3232b91b4dc7ce40", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a15f20d1026ce4dc828e2c84857b8537", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09c29e4a705f3c8ce93340f7844c9926", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5a634e36dafc70962b311a100aaa4b8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "319af838b0868dc73f8c449b47d67f90", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8e581a13c61f344e891782cbd001660", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16b604af8f0ee6ba5d118c75a1db1045", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ece91d475486ed134eca1cb7aa456175", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f339deb1508e4ffae692c46cc420c051", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15f441a3952bf04c886b6fc3da6034e8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd3420c9c04988ea67c576ca37205a9d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3327e722d5ce1f8d4341134ed01d1cc5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "052f3e388d574d106ed87bbc6c5fafc2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c8ea0d5f0b8f50a9c0b7c936a4754f7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4461d09ed56d7c16db64813f0b3c531", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be659a28979315b27b30501486303b78", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34d5fdebcf36a548b968d501b6c0ebf5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1765d7163bc47bf9776eefbc7ed29062", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "028c452b0a9c6119131c62bf476df253", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41f7cfda393e4e0d8f5bad65fee5f704", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a22ae3a50d1d1d21231e33e55eae0d94", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0df0f1d40b82dd796245acdd33d4ace2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "543c53afc3d2b3d69f668b42a98a4dd2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dff67da3b9ee1e08b68ebde6d6238041", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7afdd3e80af2e199e6aded207d4ce1a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e1452dcb00f4101a1c7d8e850936892", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3ac1f09ffe8164d11ccadec7bce477a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dc63f8a1b829e67e3c18a5030684941", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c38a977a7d23e9597e79d810f461326e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "418466ee2da4672691b69136dbdb8faf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "858e741c0049261e8a4dbde282011ea3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e3aab61734781e110e71e85db38bfa0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a72310888ab34985ff7df7e5b4c53949", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40fdefee5b7eff3cece8fb42c1954458", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71324c0328e91b18beda5dc3ee4a414f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "207069a3446ea6597705483a7aa26355", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c861b8f52be7d983d0ce4ad2ec2b455e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcb1bfef3bac34fc95130e20cc55bb69", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f6b5e91c55e3ba1ee9bf8d613c3e4a2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d4487cf7ab41e736fd6db4fcbb9ef93", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a284765f055f278f0a53f19cb033f329", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55f01afa18fba9ddaaeb9721024a5214", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2569e5586c8c90f2435ff694bffb24c1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6586f5c2a3fac90df9bad553d1f3e976", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbe4061028a4c5ae02392b84738fcc3b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ad3655c34c799de57454d3d7368582d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed201f4330e6f0de126060edfc07d96c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5d974d66013b76be1bfbd5378d79498", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "213c9e6d4519a783c667b92b75092c2f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5edfec57092537cffe0be7c645058f86", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a897aaf5bdfbd88971d1559c843bf6ec", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4d2b3d02ac1bd96363652a62d1d5530", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8e42a1d849bcc3f5c197abf32308dfd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa9197db60d285b58ce79468ebd84ceb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b02c8084a307c98aa093e1c44318406", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99533e47d8e5652b286efc8f863d49d6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3260781815a86e5fdfad9656edb696e9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1831e91b6c0dbfd40d582b84c3ab238", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b076802caccd10758e4890d61bafb92b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c4db2c1a594c596e2d30a2e5a20c33f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36eab10dda7d24546782d02265a30b8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "331188ddfaed62caf568e01782c500d4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c79f2e081190b5c734307a1794e725ee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b139c28d6999813c3093c0ba4370de90", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "686d049585a3f62bb470e6d74d0b574d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f733303d42588d376cb25cac53ba5c87", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "612ef23b5f98383dc74a8d68f5ebe995", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b75a3396ddb80aca9fc7a3c407d2702", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34ada88a10f058a9217c12d9086c5858", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f56d65751ec64dafcc2faa06730dca19", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c555b011499599e9ce6f22da2bd7c8f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9139a6def6bb1173c9b7f9e773e11c78", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f096476414d594eb2ac2eee532ed46d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4118b5116346526c07099bad0daac663", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14334fe1b47bf5545fbd4b271553e359", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51c0c56682d4deb90d7b3282d1d09ee8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52c9eea4198471d31ab846b115eed7c0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7aba4cd0bda4ed9e5532ad35cc4796b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d089cca6308e95444b94c2e4b624a2a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f947b47f193ac1629f59236a7eabd7a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c9024076d399d9a0578abd639ca15a1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21bead5a12ce840064c329f46f2813ba", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae30d090f098c8538ab4f97755984c5e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5db75522cdff3980ababdab87e41d67e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca2e6679028ef0be3772f78d7489c01f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "157997c0b5b925a64a206d869b68c514", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2b01b47c13de81dc7cb045733841ffb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "daedf137560a95691ecc9c8ad6d9454d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "baaacaaa2ebd60f3a700ce0ebb0df4f2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63a00c38fd4eaad8d9e0e64b7cc7be27", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9249c6304c25a23209a85a9daf36af3c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "215dd9eac1d34a2e4f9fedeba3b33674", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d0c4ce2bdd7608f4324bebfcb3d8ce7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14e5404b974c20dee208efeedfee7f68", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ea0786d2ab9e8e73e36c1b862f80dca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "271c4b5fb9c6e00af331923a733174af", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a90ddc635cdb1d7f781b712046a5ee3f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b068fd0430d093bb7434b2d05bf21d06", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e6d74fd08d4a948333b9258588dac23", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63df44df9ddb31ffdcebeb666b177349", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70d5ae16b1ee212f6f7151d942b6c3f1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a4d4657c53c99cc2cfaf9fb962fa7d7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6c7aec8c6e6091f3edab31f24e3552d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82b21900aade7593744a0c35cfab0557", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d2fb4b9c3528d5dde090f7ee0f300fe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4542882ad91c4744018b55add0d9cdb7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1068955eae74cfbf11511e9a723061f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "987a96db0b8789eb295d61510224cfc4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71e45f2dbffd0a9d2b8e0be4b0f23e13", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d17202eca98c5b4b44c396608cfa454", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce0932d92c365a7a07120afe0763d038", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad085e19180c6117acb415bdb8f4d483", - "notes": [], - "params": { - "message": "Adding Diluent Sample Plate 2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79a2d10e3e40dfa6ad6a4ffb8fac9b8e", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4413cebdf5e0e98befa54d003ff6e0c9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 178.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2ad5b65ef21db1861bbf470c0ba88d9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04503db20e78360e4c273511a36d8854", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1bf87b09d261d29383ee300631b6afa", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 178.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "326d34cc854fec3d65ee2b25578cfe3f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 178.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f705d44b1010b16a956954445a8d6db0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce42bb041e5fb8095bc63ef88e481f0a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4da4111925f198580e567b4e7c274653", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 178.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff3b329853e8e0af73cf7b9d9c6ce8ad", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 178.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccf4e97b5fc1fd43ea469112c64810ae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "614919d76a8ea445cd9db695b6c0d2e0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b482e038a87ee0683046eed762573e52", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 178.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3316654dc18f1838ac38c0f159572f4c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 178.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05d4af93678fee4a94d255646209e5ef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ba112381a4339693cdf904199bdf2c7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a474e0631c94beacbfe8c4baad4d5577", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 178.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e16ee5fd9c43ded15370163888a49dd5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 178.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b000b766711eefe61c10f0c84246b0c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4dcd70b077a20c378746daf94facfac6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "301cffcc35d9c9b4a5514714fcc99b84", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 178.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f57baa659bb9621ba8af3b976b72f5f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 178.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "160b943022287ef7a973ebb192b26bb4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec2a6ade3099cd73ce2a11da3b4abcbc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b88d32225ed4d753e5aa09d2bc74e0ab", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 178.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa7334e99fb48be671b6b75765501253", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 178.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c92fe8aa3c44bb925033d7b0e8b9b4a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d0d92375cfd525e3bbd098fa5cb4506", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b7875487baa96344d9dffee352f0381", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 178.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2dd3121a3f50e4af9e700e1248675e0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88900a326341af5f01b9c1c2a5eae19b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71ed6cb8463cd9301cf3fcfeaf19ed79", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76a6e401e3fc147fae51a8ce96d3fb7f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81fff8b2825228bd2090cc70e1c95881", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adefe19571ca0644bf849b5522fe35b4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a0d6c2c113bec6803b93c6dd91f26af", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f224de6bb3d3d83fbdbffcb88adf4651", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b09dc14eb20fc6c1cc7aac382b1ec79", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76e583c37569a298b614f8275c88438f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f3db7038a81dcb4f7947722f6398863", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bd26e3f1c512775a74ef0cd3a696d27", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "addd1dd3dd94edc2b30e3f882f8c1822", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c25dd9d3222a097330d6c0db40aac3b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41bb37ad41e973f56d488bdd3dbede8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9def902c22b7409bdde78621b75257c7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bb390b508ec91cd54091335ee039486", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de43de5809343b98dce8c0d71a0d8b42", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e87d966bef3885dd672f7535cb82180d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35437a706be581fa41dc812a8617d59b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7471f98e16a104340650711ab6c182f8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7c8bf89a33f2196b235a2aa2207fb01", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0719c32e67afe5364ecb5ba7de78186e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a471fac799390d1eed772fdf71b5a13d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b5c59824a71826ba475c41926136cc5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8163e1f7d5b8ce626fa204fcba10e709", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6cd20d06234cb03d5493f1581aa0196e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2932ced941268e9150695b2a6b0c3868", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83c1317a95cc4ff7fea369f3da11c6e6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b82547aa0032fa512404ffb728060d8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1dc73742a1da594b688270c255152a2b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "115dfba774003e88b6911644d4a3b016", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13a627152ba1a5fe1d9be19536c4cd42", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e585e7236f3a413879875947eccf281b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3adb24fea3bf761a71eef1de76f92002", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad8d88ff661afcd70ffe0cd3b92508dd", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6958de9ef5997d2333a409d2f52d5c7d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed60f7aa1bdcd47b266f7c124eafcd45", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4584f50e1aca5cfea98bbf88e6559eb0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62b4ddc5ec81fde2bf8183c4b2afe8fd", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "887f791bf21d245829f1b151ab705621", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34ee90372f945df976614caec71d4db2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d3f1831d3d35a0cc78e88fc7bc850fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fabe1753f89dcf1cff03aa1bdef521f2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a8807e1acd98e638f5597b32cccc6fb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05baefb8e253dac8abdc887b8b6c00c6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26209f5fed53f64f0a2d2ebae2d0fe02", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b4dcadc4d0ea6627981e4a3c91a2ef8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4050f284c3ef4a52d0fac09ad8dba157", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aaf98b5721490eb8b0b06e36bfda95ee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d855b2f818963c7ff70d728d571dd0fa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "313e4fd255e8d533c7baa662327896f6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ac90ad5031d8b314ebb59749b8048a8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "967376bbccd4f0ac108df25ea4936589", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c843c1d4b78624389c7389a92ec3c5c7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e386d80ad7a03d4ae5a543d5095831d9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e07d7b526811f0aa186f8e32dd7372d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20e3e53d6cf7a05a42544d24edbf9bed", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8dac7c5a93083c1e874446dc89de99c1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db2fc1379e38087c12bcb3335da17f37", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a641ed2adedf025a2ebc51ba9672ab3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66a282d324370530e0ebc24d66c547c2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b18726bbeec0fd11d092800e5767b9f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21fc68ea67e9d3d97eb1173f9714c784", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f64448fe604b0da7d23aa69309a5669", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "909cdf50075510e10f8147475a60c4b7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c96f506bbb8f1c1d859bc4a81681679", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0caf42432d11519df120143ad3ab7c73", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2275779fd2a950ee6d910145545e8a0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c61b4bf97c37a44c151cca4979a5419", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a2dba58e16a07a6e1fcd0bb57472af6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6643863e443c99fc075f9a18a59cbcf3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4e259b461215611c91f0ab9a7a6a6e7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c7c9879566a8e6ef01aa07a7ea1cbb3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04336936eba7975e69fc940d1a057e3b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6206a7d073fc333e2f3ea8ab6c624f22", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62be465db03f298c53af31fda16699c4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be8aed666954932a41a5f7181c7ff002", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "018f6d459a0a179ec891c1a8bda664b0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9462c0badcad9354e2a3b51ce806250e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4749688c7fbabcb5dae16ff9c0ed18be", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "751d91cf8cad490d8e7e979fb169c164", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7ecd8e80d8766a6a643e664c919d1c8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e83d0f8989d83333c2886fea193a2649", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f74fdaf5f7749ce6fd7ef89fdd0af777", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30df883eddfd47ff32278c58e9b6711a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7efb770a3564a250b83d26f880baec3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34951a832c377b752705cc007dbea31e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4697da227192fa814c29f7d1391f236", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "429f32aba199beace50372a5eda7cccd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f31daadf9bc84a3d13a411d19bbfc8b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62d3d190d91894ea006ae08a6507f756", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "087a28fc7ddfc2fd8f82f5ab1ad2363f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2639f561480770b83b69cd52aca3847", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2697b9a32c497e66a26220e9a976ed4b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea88858a033035f9f3da31cd1b1c94df", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b514a4b566619a65e361d6c8d34d318", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "967c4c222854e12dc8b08907cbef6272", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f5b896b3fcd72e7620640e0bb39c709", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c48377f275f4774e3b3e440648d6f7b1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "929be5e9f6c10a1366acafde36eeb66a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 214.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2be17d62193d5bcfc357e4206c9dea2f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bab4d1b6ef063576bb7b7072955e6c9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30313651654f1787e2b244a6654a6cc6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 214.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d16c2b862e9d3a5c78a9acbd18b4f956", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 214.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6def35aa80e7018aa040ae19d21d56d1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfc7c0fcba2ae8051da62c7c94cf8491", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5d4d14192790dcac49d5e7aaa47e667", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 214.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a640ca4ce425f89c77b4c4b5f9f24dda", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 214.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2a048b0ed9b1f54e3638c4bc57c1305", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2983b386a708264f501e9bae8b1c69e6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fed1a6e0aa142cb609d437da0679aee5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 214.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a1ca1a85223d31ba30ccd830ef97860", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 214.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7e0d01f18e2ab72461f39a9f808cb76", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "091dfdff0be84cd8b7677dc5b0a9c629", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe3bad9a3ba9a7d75f05ab68a10726d0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 214.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d9d1c98a4bd59e1a6f6709e19db5dcc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 214.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c82974e368abd81b798b1b358e3a1a5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e4f5ab7ef6d48e86b67031f5f71f95d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4034b2ce7ee7c94b6b6cc3cca8a5114", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 214.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a6c0dc02b68a9b799b0f2d4dfa20631", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 214.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cb6bbc79229ce499d996273ec9927b7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba66d35ebe3b62262f05919d2668b8e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fabe90117c1dbc8c41ad2703e134664", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 214.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8f644662f6977a046ad753d61a985ab", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 214.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8adbb5782d7e725185672b0d1ecd881", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5d3d664e2c1968e242f7841aa9e9ff1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29f7c4df75c47e30e6fa78794b7f9e1a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 214.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab8c00a3b2daf58b61eb82c09d392403", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25212b3a9e0081abe6f0878ecf7ed9f1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "788b8092a92c2d35a4cb82c82d788993", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "636e5f3563dac46b9aaa3aa9871234da", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdafdf44b14f96301b791949077e6af3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02f4299f8556e0ba677950ee01ec3ad1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d7d3e27722549295da0ad14bcfc7e54", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a716c38fc09b76c4af5f068876e9cae", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3f04dfaa1c24c68275a77573b1e2474", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46c374ee7f01aa855ebc13216a6d3e3c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c798f190f765b3cb39db1b255c887440", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d01b83b4a2af7b805e27c8666a1ac87", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03d24156339c6001a39f5b6a4e9e78bc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f103870d47d6573e07935c8f3a374303", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5972a2ddce3d7c16c8a4ef9f7db933f0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03e9d8cf7a0fd747508b0d2961f81cc5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa0e26393ccda7bc01903fede592d6c7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "086eb38f1ae694fca633dbd74cff03e7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b69e8df85f21a580274db55334bf6cc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30afaa01704ba57bfe7eabd0d4e64100", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74521f558a9df64e81d04908eb1625d8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67a4c81aa0f7f2e10052040381584820", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "035ac9b8db9669e609a3a976dd6f738d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11d3965d15ab730b088be7435d5b74d6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65b1fb098ede5f137bb8646ef098f825", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b476940c3940176af2539bd4072639d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dd2802e42446301834027175f6dd269", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8225f50a13da94a5964410ed1357612f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d01f0731d4a8ca59f3f0f8fc5c12af7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "113a54bc64698a173833d987c4d56100", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ffad82750f6ae9b0427fcc8ecb42924", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63e6c31ea2326844ab90372e30c44c18", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43280e70a78523f22398e032d7308ff4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2f90559f26fe721cf644d330aaf31ac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8f971f384fa51af675f674ebf887422", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d73073efde03eaba362489847119e13", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cb06f1d5fccefefbab9c468fe5a472b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ae3e3c63e022bcd3b316aae6b686423", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68e1f02ec319a54c4409e560a7d5a4fd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2c8e2745d7ae253d73c3c5b17517cb8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8fd132d0f8ce202b83f8e07b9defeef", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8a6de597a0bb5a13d89d932a86c8b00", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c05e65b8c2f723e6f90eafa12af76cb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbaf7632e74df9978f6ac354bad344b3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08185df67ecfadbcb308450fedf33eaf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2eaaa0365d604154b0b4e5ed14ded827", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "483b07e46edd99c1e3654b56248c1b11", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "556644d4ecf132c61dc02e9b7a6eb4be", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "faf58c3a571f41dbcaeffd69d11220bc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "773572629c1773a0f4df2e9a8f791692", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a1831d21e7170f36e83b6f92949ac66", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cdbd203ce13ec7a42233e3c8ff87d97", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7aabf45143cd0dd7886175193bbf8fc4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99c1e8613669e33de7e24aae7451981f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d093667a3178e2ab091e8c6ce23e3c8f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb49ef67729a69488114fbd873c57233", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "871e2e86c5c4588375665f399fd96277", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05344bdd2e9e154dde13dd8c8ed3d513", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad230cfa0c515f1a05a7b507360b3072", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "facf945f5a507fd1100f65b539c13ee7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0db2ffbcd19ce4158a8270e2618873ce", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cca70de92f9fadb51d3c75ac31c182ea", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94778452d9a016732aa45c496be62d76", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a008d73333f49b629efec4bb5c33471d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3434aedae652b4c333a2648cbd8bee5e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49a78c110b05150b89c71e61e1a1791c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac0dc77b972fcf6d08ac386356e4d826", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4945e3ca48c014999e0551a6b2340bc8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c1d5cafcd4cf25f154ab8f3415c6da3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 241.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e80d15561b0b2aac864576c574f0f477", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df09eec1fcab580fe28d6dfd66b73933", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e8155da22e083754c2c4c86d7fd4964", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 241.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "208933776b30eea8c1217cae5a2cdbd5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 241.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2127cd4a60b19aca13ce520fe7b415d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e493e3e4df13ec0fb53ae5e0a52f3d0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c78bd20da74f5b5f49cbfd4f7b6e8d8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 241.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86918b120701f21f687d878f612c63b2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 241.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "205af21d024a8bce917ec2c92f81c1e2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23a35b3e06bae54a4eb719510691ac5c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93bded15d1584ca7a4afe144bb45db54", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 241.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c452bd28933ad19aee79d9bc7370aa60", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 241.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98f2aa93b67318407ce782e6cf85c950", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c561ff1f7e2db781c8b17ddee50510f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dafb3c762b960378f8d23cc4de8d6270", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 241.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fe58a9b957571f15f869796596dbbf7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 241.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4319e8c29dbd1d1117501e8a2a77e48b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24bbcfa632956959dac6aa38f6777504", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85c12afb9da1aaac0561db3447449d65", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 241.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b199ae2df21ebb5aea9ee990b73df192", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 241.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0df29e56a873ccb758a13d296bf27497", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf837c3da901b0fbb6a264197b421560", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77c438427ada4f55a6b58cb12376f113", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 241.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac9a3b58b042ca3d5a957be8a1678019", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 241.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2065ac2cad5158c9e395df13840f1dfd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6bce7257ac2228ac2de5e14e58f36f5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13563ff6f3618c132c1d08a3763406f7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 241.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98814cebf1816c44ed5606dc591f4d7c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f27e4037fd94693d293a137dd24acba3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d64f5e83e8725d0df6842f524375b77e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "489aa576ffbc44f199ecfb88732fae4e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36e8b05264bf1fff0d8cdbaada172c8a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75991ea85c6b64239af122ebf873a142", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b66ac2a6f6840802fbf2d8ef8bf467d3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "990240208efd0e0ee4d65f3a2ee4e8a9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33811c516c6963fb48787850eb4ab7aa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0a1d22737e53180dde99d4818a00690", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eadaa8801672ef66faef7c9925583282", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00fba76ec8d9887f6a0b4d67ac177cf1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f34157a4525f8f4e327d843946bae18a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9aa312d75abab3a35fe87cb0e7215b0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17a4dc0705c6d9aed8daac483d4efb5e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32ae275fcf65f27e6ded4329ac508c45", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "840bd729bfa25f5254d91bf71d4459ee", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7814dee2fe301e20bcca11ac0e33cd50", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca898374adf3c40bd29489e0bad8863e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c6f14512be1c8169aa6d7ba85ac6e0f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "766672676252b05a908f8c5c8f292d10", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83da59c0f79369dd13c9be4c1d4891e5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f4315d66dfa3982ed96a554d8d6dec5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6bd9e4ddece2ba0471d206af678f707", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0ea0b0c1ad94ac491124e8d22ecb586", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e0bd289fcbf558879dc98f44c1e223a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ca50e7fee9ed6a6fb394327f32e3443", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "993c58d37b3a026398e77bd9c807870d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a37411f07ee1395f5d4b798f098f5161", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22c8325a2876a93899f08d99c6b970f6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1541cbc05841a980d9af2bff92ec098f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da2856664f5a524a9bc0a7858d1520aa", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cf2b2ad36dc26066e3b6002a6da3fe0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5494020d44949dfecdf7d210bbb85485", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9776940e7bfa96d0d04bd0a4f551a5bd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "433ba6c0f4b1eb7af0cb74e6c01d0a08", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5679a9db606259a58df3d745873e432c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 259.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c368026c9c91154a217b5186e5510e0c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db3eddeab38ea0cc2e1c230dcc2b9003", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74cd033ea687cba3479181748f559fa6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 259.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e6305b38ff332172617171ebec0f2fe", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 259.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f4442ccc3c313189288fe2fbddb6a5a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1afbc7617ee7862971888fb1cd7c6f91", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e132c9a77000f5d887e0c4fd07c72c7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 259.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "883802ab5d6ebbc0fe203d13e60a0d23", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 259.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1676c3c49bc8e2849222b4532b32a712", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "466ef3555bcd726a3dda3367229b009b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6939737eed411e02b305b973c6ff2ab9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 259.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c88b3d4bd932c7b158de8af67e092f2c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 259.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7c401b2f33ca88e3a5045ecf8c8f4c3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "537880860b24b4b96b1f076f069f0b50", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93614165a98fabd11de38bb6b5f7f071", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 259.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90a2e076be7464a6102824fe5be6a4d9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 259.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f14165b0ad54dbdabc2e88523966c625", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e233898dc2f150b335b2d7d6c55df26f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19b469314e66d3881a69e74647add224", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 259.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f35bec9f7ddaa8ed39cedf3238c65d50", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 259.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ce11b8fb677047eb1921c9a3ebf3440", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7662f817d35c9384b6284d893e66e330", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e0c95dbe2127949493937a552035a25", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 259.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44e781f173f14283997dc1b02abbda62", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 259.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d807822d7662dd34635457fa8cdc252", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21103cec00979bb8404d144c782ef29a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49e1b83b3c9d6ab56864ca115cbfbc54", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 259.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38fb7aaf3eecd70b59efd4e677aab405", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2687ed518ac498fe8aaa687092049f93", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3be360b1082938afab14766d48b0c8d8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "358c6cc00bc2049fe6ec07fb70eb5cf2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a0ab3c5c9d702aae7a49c1acc52c000", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 268.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be1bb3d2407790b933d9fd9000a84f3c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4853d736ffeebc5d25e0201d9e854236", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f41cf9bc62548622f7ab3d9ccbfda63f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 268.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e417b46dc6480f8a053662f05717604", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 268.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d2e2682cca7a1276dcf94c2ed99dd6b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8d0e3efc4288c24704d23e58ae08f29", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ce55e9bb8b45aba625e6277d5675f1d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 268.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ab3be8dc08c702ce0a36fccf97a8684", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 268.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cf1c06788bd8e2f7a4b91a17095dbf7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21eac964b54e12e31a3e6aee69579688", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f423dfe1a3f014543de569a45683ddf", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 268.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b62e6791e46f483d2940201a643dfeec", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 268.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bee491e6333f4647e022e7665bc6bf1f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da0c3d3f5c1b2797a42f684d7215915b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb1b5c4814e285ab3172c969f3f6453c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 268.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9cbecabda855c32324813a2fcdc67e3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 268.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "baf51143a26a2cbe25cd4df5b65ba64a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6330cbb04b559dfcacac2a185cf011e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4add0441a4f7f91cf9a9d8495742a624", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 268.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77cc1b5173c474f16df1d1c6e6304ba1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 268.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88917248904e8fd957b30c9cf4d4eccc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53f1806c890132e97272cb6462aefc4e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5f2d5121c1b6f788ff6ee83b9e4f800", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 268.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "827a94bbb68ec14ba971d7925d12d2a8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 268.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "faa5e90a5060686a861bae34df18b15f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d48c68c47cf6d21bbbbfb245ef67b0ff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "202c0f8324fc0c760b6acc9c67a0724f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 268.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22164c525098db6428b039f2c7beda63", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7616587124ce9fa3bba927f2c254d36", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1567cb52c8452d66de4e940fe5a0bd28", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6acd19084a395884b20eaf57578fa06e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a5ea400fe763a0e1fbf06b1abfd58f2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 277.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86d6176ff45728b1bdc7755a4b7a8a69", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8865fa360ded1007001fdc8c47f20fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32c46a8369a6b8ca57e5d32bca54de94", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 277.38, - "y": 172.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3d8fee25cc01c1fd00da2cfd9f321dd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 277.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3de481517010a24ae47bb659bb776c0e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e545985911a614378631cd0be5bcda6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "657049c24efafae9db8761d45c5f82b6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 277.38, - "y": 163.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53b483679009f0d6f59c99926c0b7b38", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 277.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c51bd3a4281ce3720f2764922319007e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3ae9fb53b9f8b71b3af8649e0001687", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a7abe799efa3ecfcbdb429548fa0969", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 277.38, - "y": 154.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b53518f381c94bc4a0fd9245d30b9e37", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 277.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6007622d45859ead84c0c6b7fe7b0b17", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3bd96618648f3406808d99211363efe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "612694d68c60b98cb38b5ab00eb211d6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 277.38, - "y": 145.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78e48a8a012eb86b7c982be20af2fbb8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 277.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bb2cd2e64ebb13c880108e3855beabe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68e08d933bb591325528fd1205542ed8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0bb8dae9660b80d09a196cb346e3c85", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 277.38, - "y": 136.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d320de9912094a57d6f1ca1ba1979f76", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 277.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f1511dbb26f99f4717b71840967c2ff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60a49ee0635c0c0863fefbad18b100de", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbec463e4c2f762b6267c64250f0613b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 277.38, - "y": 127.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ea3317c63fe20303511bf6424a5d9fa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 277.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6af51f6ceecc5b8964c3c4dcf180ee45", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0211c8e47d8f2dff5aa74a5fc9807108", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "436cd044b6f4c356fa90c7281813ccc5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 277.38, - "y": 118.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e945bb94fa978b3bdc48c336581059e", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "914e5641110f040cf44fc0762d3884be", - "notes": [], - "params": { - "message": "Adding Dye Sample Plate 3" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "415487137100ccb51e3c66a062787a69", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dcc5673f91ab631dd244e2ae2d1412f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ef695c6441303c4185873e82ba1fa13", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e534426330bb80ec4780d74a04789a35", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb7ae12b5082a149b33885d45fcf2d61", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62301e500d8ada0d8df5790d3e1c4945", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "959b02c75b6a06f798fbbd8dbd41101c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b0bfd164761e9f53e9f9d41216ec7fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0de90777a2481cc6f2b65a3cb0977c50", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b7249f1b888ccb8d05312dfc6c8c69d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4ef33d01edd12126a707272b8d7bac6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b9df084c0d3798da17796f3aa0bdf5a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53b7ff98ff67bd0d5426987f00fbd625", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4eddef5ddff6efb5e62c1f150239799", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcd7b5baedc9503e23936912686b7c73", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70b7bc53252f81f95195f35d4040cd7c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eeabb070d1b257d4d07f8e94c166c2f0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5804f96fa0acdeede158c121097e7ad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57d99586742295d703d91614a3abd346", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aec4b0e0bba415bd9d2d427a55aed40d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0aaa0489ffe852e25ef3bdd1bb4849e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b70cd3f007523881f03cc4d9bdec5fbb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f4e6485e98f6c0e526d880f6a65c393", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "788140a57523858619e49f35dd8d8009", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bee65a9e00025f905277cf34a9e030cd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5828fb9ce88a74199535a63de113c72d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0afdcf214e1ad938961f42ba2271f8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3bae9a3659513a7c75997a1fcddbf7d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f36e74eb1626e929c60fcb5289208ed6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c91858ec313de2aa5b713db2a400f76", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eba9cd41977ac304df3c48c0d3772b8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21a72701f48b31196db886c31c16ec23", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04eff158ad749076feca010aeb8fd6da", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93038f6c7ac669d5a27ae77080e4b256", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c029dcf01b1c256e9a3b376e7d1fca8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c01ef21e77c0f94d54fe43f500af78b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34a148673acd7af27baaf6bfd6dbe166", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c87b7b651904e7bc28ef96ca022d784", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f89c60ec9345e470ddebed71de7e653e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac4cc0f6f5d27b98c618efb9ab239b98", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5377994c26060b541f98c5f1ea30d7de", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a589f3cfb5266ba8a421b7b9accd55bd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6846099349b28d92d6185d5b56fa74d5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a244cbebcc99d514a69e6761fe6fa6ba", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c9ae5905b4fa6223e5cb3014f0f5e1c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f53e9101041d08fe91abb6fef451005", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d36d7446622e1565372b29b8a1707099", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1406ae4c6ac627ad2d4b9aa18faf16c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de4f0883bdcaf53238a93826418f296f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59800ea6aa2bccd12309a3acef34631f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df50074a3eb73c147da1141364236b05", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b99f3781d7d8cdd50e835ff2ec495dcb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "162b3f620c89bed4fa2c345816a941bf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc8c88a59e417f22c3aa67d9eb75e912", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e88716d77f4c04851b828cb576a74e52", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08e5597172ea48e7fbc13911500117ea", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15a1607722eb8cf05a36ae62468d9bd6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23f4b1369a5466eb79a6de3d86e6257a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "929ec8ed96d0e5c17a844d3bacb63769", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22d9f88c45bc286b7ff965ee87f532be", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8db41ef8dac5f9888aa34496a495b90", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e19dc5fefcf2ee7195cd0edfb28f1df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7319608fcd4b9a6948da9ab83f1c813", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b14176925ea4ac692775e4bc990b41d2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df51f44780c703737d6c1c59c36122b9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "367d44d0e5569b490c962b654da7dae1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab24dfda3f1fb5e3e9234d29f4a12bf9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b80f5f4f28ac225a4fd84c0c3081a0b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c00ec86d79ee68d06fbd9c3a5246f5bb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27840c52f0c4908db4823873a41ceb83", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2e0974971cd14adab52d39eb409077b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b5d8e81085b685a688e56ded5e66eef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f01ff27899853db4ea5ff43385595296", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30c4cd68936a13bf312ea9354eb698e5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d31a8de4d068ee0a0370511a621aed8d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75c2c9d112e5381252cba20b7fdd9c0e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71f48f05b41ea72e369c6a13fc315ff0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d1b0359f38e248b0b70d833637ef487", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3f7c47cfa24d9703a854e0711cfc17b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67eaa1994fd67b0528c848be606a195f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0772b01f7fe372b79da16db9d15efcd5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "730ab5b8a1636080f813b3b556cb6547", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc573ca9b28cf0bcf20f066b7219008f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d47b5e0a93ce32d6dfd41cf4019e396d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25d8083323002aa15ad5fe547d3bbc39", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11e7a7f6a1b967269af925fe89ded60c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eca41a6c99b706561a71cf1052ddefc6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b31d24a58a8675c249e627d5af6f384", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "970abf8ae4bd7c1ca28cf87579973d17", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "559ac0280fb9b198ae1a72e644346900", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d552e1a2985decacbb42c77de11c6572", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a739028578c017203f6282149d64daee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00e7509283d30465f78b36a6eb0e5e4e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8e1789fa8a1a066093fe91061fa19a1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "692a1a959cbc9863bde0b8ce24cd1992", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63b70073841db1bf739b6ff41477bee3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27f328d7e601d17fe309ade190b2b4d7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8852a5ff3046f0cac12bc18a567311c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "329cbdfebe001201b5e38f2ce9a11791", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8118f75cbab140d4eff2a20db1125f6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbf0624b7d30cec6cccaea7b2d67f336", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "256223be60839d7a960adba477771469", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "322db9448f441f27018072f09c8b2277", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "491a0c8dbb15e3bde8a9a3c564858581", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1904b85b28d8c7193df3908b307a6992", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12cc0eda87834bb9e69d970a54923829", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "343d8c09c4ac99a733a3cb15ac1b401f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d7536892b6c0620a3e2873707ae357b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d93ee4e69eb71c0d1af9a02fe77a30c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c1dc88f68b98a9b9aa444342e4f2429", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0777ef55f1d983c4e4868e496d9afbcf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d50286652e01562f1afdd99ba540fbd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "220cf7f7c359c6cc5219bdf82482ffd1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba8bff6b362de060be9ceaf5b887d412", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d0bda3514ba41c525f3d75d51cc76a6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11104f742b4a17eb54030690c8305e40", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02f5bf0274aa9f09cf590e4bf45e62e3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3de81d848b29ccb9ecd3058bd39ed342", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c96dcd419b920d580a0e3ab135887d7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6b151388ffb2b1ee0d077db78a3f055", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f92a1a070f2207ec9566fdfb37a9ebd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "793758c91ad02d1d910aec9d865b8267", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7233663d8b0ac6c9757e488db7dfb53a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b25714d3e9cf69e46a1e5b29c6c34318", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ffec93ab2886b41140b3f3674ece517", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efc295f380f6c60145d4cdffa5a11076", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63a6dc67e4cd7a62169f48dd60d50951", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c301a74b92d7fd7ce6691181b036fd6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95011f5b04c3689ad71ed527277c6cdd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4524fcb961f3836c1553c24b57b022b1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56967ba76d4aa5320c2390708c16c684", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d23755c5c82139f02870beb220d924a7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac5fa83758df4fe725df627c0da83da7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37ad30d640e5ba75b04f028812162dd1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32f494ed0c70dda7311d49872c588f9c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82a8f2de7043b568fe1335174a159eb2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ff8cd6311a4b01b7d4f80be9a8147a8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed0400f54c9979e7119e14198bd03229", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "247f166020e914c8973255d7c0e10990", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f213f6101e90de49278c5d9d67b7028", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6aba019a3730d42e29f1b53d4971337e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c90e93c4ffcba6e016134044884ea1f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37fbb0bcefb0cb2d8b399fb070c30287", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "805efe1b5c93718b004ca1ff9c58070c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acec3b1ba86b687542038f459cd07040", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20934e52d432409aa6b66ec12525b362", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83e9d227e89bc76b01405ed6fd58cb70", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45d45a9293624a82b30b9313d58036bd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f27bdd754cb926c79f6d4bf109203af", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1544dee272bcce9f4c3f0821a772d3bc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c086138b080c0c48ce151108374f7264", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6147a361b5e8280eb5321e16256e3b66", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "999d2e688d5b985ae5743edd57583434", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8ed5befa16dc9a31ee1d49f40e474f0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e36af319385288896b62228bcc09a2cd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "871c085ba44df7bf9aea91a5ecb204fa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c271b176d499d98871debe201f73540", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ed5a520175848a88fbd3d43f3e41ed8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "712a664b1fe833ed374d391ee5e1943c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aadb45b01f4b2b79b960ed38068e7f09", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f50f8a600f6c9f2e0a418e0dd3cb979", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea611241ff6d2f4b42182f1ef1d0aa7d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb4033b9794c18bbd86c6a194aefe657", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3481dd7f764439688cf05a4a02c281cf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "694330d0f6fea7f6bfdac0ed173fa190", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc3af235f88ebddf820202546b5d78d9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fc96c86f63dca75d3785cd368c3afdd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4f7b343603bf843a2e2c7d46344a837", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c29ebfaf39b2baf840438f5034d3dcf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "026ae429163da928371a0edfdd8c0f83", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ac68808edbbe1e2bab2ba406bb5b66a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "053e3893d7a8ebf243ee53db9323d160", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa597506870e48e418a6b0a7ccd56ba7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f23809b8c88fddce1ba9f9fd461a4370", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95a9d28b37f515e26f1e021330f399ab", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93f29f11c146d9dd8a05e8145e2f6637", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf8abd93ab49fe19ed7588d8fa884f24", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "700c67b3b4380d3f46f6770e36d3b1f6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc1cece31e39e0c044fd28d425d5772e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4c55742f346fe13117a7b9a9143111c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b5d9b6b947aacef08898ede2e7349ad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a49356ede1de07e71b5cab88de5a5046", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9541da1f842e5437388854ab949a7f4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfe5d63d5c279bc2f22e5d90a38b5f18", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e618f0768de191af3b5ba7085b396a1d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8c7f0269d807d0813a39e4b174b66e6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8c5ea102d54fd024932d8cb337fa3bb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69b51feeb404a73af2f663176df2f6bc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1268ab578b8f20069a43fec85e86d88d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8989ee9729203fc1692070dba1f8814c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43385ff1d558465dd56f9b10445e2752", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f35f8d2f0fa12c467b6aa3744240732a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c42b0c64dc9ca6ad5d122e2d4fdecf18", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0149fab2a951dc79ea4fe3ef5d6b13f", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22ebf102295bada868daed3ca2e508da", - "notes": [], - "params": { - "message": "Adding Diluent Sample Plate 3" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73dcfeb856ca5135ba1987fc76845f38", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0c71bcc6a322397c13040a92f6c6426", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 14.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "962cbbde3714194b3df7fba8da0b6a77", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36ae4e95f8b5a9c59a67530d30f1e400", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6761cb6448fc3247a5170f1d24fd8615", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 14.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf9be5169263d02fbfdfc54b485db8a1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 14.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b37037c2c99d7e022d669ffd9bfc41a6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "680ac05c1bb0bf885e0cd105294ffce0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc8967a97b178e8fb5a715e6393581d9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 14.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d6acfb5ef29923ff177dc336ac84620", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 14.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32a583aadfb0a7c08d6ba1342fc40cd9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "898c1d11a93803d49d948509396059ed", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19fccfdc1466665b49be9ef97f47a895", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 14.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73b213aea1cc488a767b42a98a5cf210", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 14.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "176093363d188ff015d8829d0c7db721", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "645fc434f77aa53edd24a664ee3defa6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "579d95c5727c3c6393c796af322bcd56", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 14.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ea9837c6805b9c103b8a956ae8323b4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 14.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36c26cddaa2ff3fe8e31a4e0592e481e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "553564003698974a822b4d43c47fdfd7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "442ba1a87254ac27d2de190ae043f02b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 14.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58a16e20470d15a61015845c37f7e72f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 14.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0df3d055163ff215c6e3f38cbd0222d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f8db948daa3d5bab333e7f0e9cf44c1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4dd3f55b0b84abf5b37a83935ef1331e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 14.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce5f3baad8a15f96abb4e350ad9bf72d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 14.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20b4a3f7213094fbe8dc91ec275295e7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1cd2d092210cf594be91f396d22b3e5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf7a34014fc1f26ce29e27cd271daa34", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 14.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdae607e188a01419b3886eef8319277", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5802901f8b8213b0ceb568ff4be85bee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ceb5e051d2795b9604da6e1d225b7c6c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "151517c639a05569a784ff8204873c83", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ada7995c74d924e4d471f6a85a24ee3c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 23.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12e2790deef42eb47654972798f073c0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b120f0ca0ec5e33b6ebf1a3858249ab", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b2daa13144a28b983bce3ab1fef2229", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 23.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "420e1ad6e5901142221a7b81ed54096a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 23.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88675ded0067e4a0f953e41a3427b241", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eec1a87231bfd2c626e934236620f11c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1229c84b84de641e507ab9f78bab3b12", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 23.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "664ee3a96ec9eca72d3922a95ad41c8e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 23.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe12eae9f066c29c56509fa62a8f7b1a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d706c40ca407fee75175a68d21b4d4c7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3d06b55177c12a54638844e11d194ef", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 23.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef5edbe4d5cd0081adc636159e0ed429", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 23.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3271f1cdf74cd95934fad6f732acada9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d41e448a3c75e6918477b2556a644e25", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63368c12ff77a2e4f339ea60fb002db5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 23.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25a805180f58b612697d0bfaa4d429cb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 23.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42fd22d2637d0a5a44b68484a120d6e1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b57cdecc744c830c608ad3030eedb0ad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfbf517e8703745b07c75226b3f192a7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 23.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c65dec0f4340a0499a3a9136f9bcb95f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 23.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27bacf0046e59379a5fd4a47e1b321eb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25ae78e5e526edc9701581c736c1d5c7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e40c23e107046eb9c0c60e7322c7f2c5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 23.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c986d4bd1455d577ef58dc79292cd48", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 23.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94357048c52250059a8462ddc8a9a79e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b00280d98c1c471977febb7551c9bfa3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7aaf1bf6ebfe7116526697abfb70b311", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 23.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42cccdafac7bdb8750328939f573e9fc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5a8dbabb4f14913d94f39938fb0567e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0eada76ce2807e06bea604a342bd4238", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e37f7b0029bf9f2c783c65cac4fa4b04", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a1f12df226f09dece16b5e67a347be9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 32.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f9e1a15497ed71a4d0b6cb5ebdb2820", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a9b80898b46d2ae22dd35f36b527d6c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8d825834e77d5b051c7cdebb8f41b4c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 32.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "609bc1ab8e012d9a8d29edec3f71decd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 32.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adbe4ed1a0fc8e9b8313bcfc81615fec", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f13ee34400f663795c0e9896d3604664", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b1a0f78cf44b7ffac96d270a307e481", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 32.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c41275347194bf94e3d50f35335835d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 32.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b339172e5332cd652008427c2e5ff378", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31045732b532c57adf939db31ce48d25", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ae5f34b2593d8adbe91fff0ecb61366", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 32.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "833f02737e84a8d7c7bfd103de60b441", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 32.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "733ac18a18a6c97199f8d86e393964aa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4df929afb69837ae4313e79ec80ec27c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38bc304ffdd7dd2f988fdc41aca249f4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 32.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25dbb18885eefb2b93d0013f82972cb2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 32.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a90c7628c01c339f5365c36566feb5eb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ee5f857ef694dc06b332c2d7cce3085", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7a0f91d8cbb1dc50e9e644dbbbe40eb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 32.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bc9dff98e4f8c3a8847776301656083", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 32.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "623a798e6f86dca0f3271fff9beb274d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d121e17a74c410e8adf83b999c55fd70", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ea71ec96c3f16705c657990f4d2bc87", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 32.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "664af64fec4d802fac25a75b255c5701", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 32.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96513948b81118fe77369c4985f62be8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd8fcf994afe585a3bdcc3b23fafee27", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ac877ef6cbc71721fc161543cf6cc2e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 32.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a68da97021a5eb4c381f14e61779273c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11806ac2e157426000776a3a3b0702c9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "028e227c349a2a35718c8bf03cbf400d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23d3bca5f4bf236bd991a3081d13e03f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7706d11e4cb1219c42420133e8cb724b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 41.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b964df11c4175e24ace00b1aecdb90a5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88d05f008b23cdd64ebab3d9359ed099", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01f8f220c056bd439634451e88533439", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 41.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7f6f2e7ed7def33e07b2e5c6eec4b07", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 41.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac818c13d58533ddf529e38444b71b15", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47f9826cbdbb6a1c953fd738b10e211d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b161180de0cc4a966d0ef35cd138fa10", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 41.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7232c605ddf0e12f871949e8daedc3d6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 41.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "274c92d77e7f40f54ebdcda94f084ac0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34ac5af59096eec24d5c0ee94452e882", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20cfe2fc5fe96f980385fa085b4fe069", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 41.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "597c3f43da39113494797c58022bde71", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 41.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06ac810009b5104e271217b4396836d4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fdb983666a9ef12a0c276d54c17bfb7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d11cbd507a417161a47f3a396921089", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 41.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4235f299fcbc4c392a7c1c65e7570d4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 41.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb172694f18bcfe2dafac85fed601cf2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02337df70d6c6312b3e7243775a4470c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ef6ed871c4661f7bf84c351e059b46e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 41.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03a46129c7c2d59181253b5674e78213", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 41.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d151edc949501bdfc2a0e4c4c5c552fc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b02ccc7c313d2f4ed7aafca6176ced5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d1d87e3a9505ab9204213ff478a2609", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 41.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9522c37c1ca1316a729b0193fc0fa24f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 41.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b34b7a8b08a9c1fa9680e7d2ff3a3a58", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8b88e4fab095c80aeff25396e165a22", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aae723f0af69350bdd899ccc1d3b6bca", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 41.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c889f927b74f7a24f0482994efd783c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94226e5b36734445de3928539e551459", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f7b7d8c136215a4e05b1dc39c388bbb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f16d1f1f262aa3029ada3416f7466d64", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce7cc4a011046ad55d820d1f52744c00", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 50.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12dcb48bea73764aad2e054e37006432", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de98d5d8133953b059155c6fb6e4e8cd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14d64400d899a5d32c7fdc0326ac244b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 50.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1311a5cbdd2764fe2bf8df5535370085", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 50.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4acb11fe1f9afb43e8152a2ada7f0696", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b48127dbfdfbb929956e5697587c5e55", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "589fbb659605549daea6b313733d5ded", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 50.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "935e0eb1dcacfff1a0e367d384c74d7a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 50.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df9496a1101ee6ea8a205641c1645d35", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3708d550b8a2f1765d1b7cae70d2057", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "999fd1b50c2526d4bb92c1d8b51c221f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 50.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea2e905d1c8fb4db70d5fb2690030213", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 50.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "450a8bafbb5f94071819758add4a5d07", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e3b45e642bdc6cbddc243a26459d934", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5672257c9d3d8a5a39dacaf2a584a106", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 50.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5af5b3a08c6b34d91384bb88f6f8bad", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 50.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc8ec3b8d06904e6aceab8ade5e2e5ff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b8fe7785813a084c87bfcf1b93c23ca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ff796721ebd9cf20c1e7158f37354b2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 50.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72da6500ba990eebbcacce328867b2dd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 50.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccc75d086b8046b0d943a287b921cc83", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b01b2333f21397c8a3536877b927862", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d87cd209784ec7c76c201e8ea4fc3605", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 50.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6770b2524adbc9ad668b6d6e94d7d446", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 50.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab0a09eeb944881ce3c7df98da3a702b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5d3109151c004a27b927c9297bafac0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c494088c526a684e684ee85dc26aa11f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 50.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f116c3c8b859331c472daae94051deef", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bcb8009fa038daaf2f431f1f744f439", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc5d6ac8df3f54e31ce9173871ee9718", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74f0053cd708033b0371b14697284650", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a6171c74ace5099dd36b3323ef7457a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 59.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c82cbfd1491843956556c63031768e89", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7588a64c733fed3a738c36d58b42360e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbd97dbb83e6a5f8995f706977223dbd", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 59.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8368fd923e9a0efaa6349f136a911453", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 59.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50e2968c1c5cbb96e2d0f10c9c5a0457", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4d9f474732320235dcc5ba9fec600e7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1787f67243fd6904012bb4e022b1e13", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 59.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "309d03c5976b7ff26e72d9fa2bf44e69", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 59.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "296496d1ee5b848a2ff1f9cb07e63cab", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90957ce45f89610790a6e1e1f351948b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0eb577e4fbfdb536348d68353ed20888", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 59.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3f71e9824ac03fb6b5557f4bb8e4e78", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 59.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47056a630ae923e24c532f7e1e5aeda5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4613422c55b441aa1da2b46fea439b6c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c7b70355f3f08e035a40263c733d5e2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 59.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ad388ddbe6bac3f65542b4629aaec61", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 59.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10adb5942495d75a738303ed39f5cda3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "637226f8b4f41af6db76ed762977face", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d318f41cc6400ab869f2a8485e472424", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 59.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f3514e28cf045e87cac55b7ca49beba", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 59.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9d616d481b800513c3e924b7ef94589", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fba677fa7ecdaa7eced619f3d6cee48", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd24fa62b45c5b2a75c01fb6edfd3a6a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 59.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03eaf847544a01d68f41254eb42c879c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 59.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "302c3b1f51fd0eaccc48f752ec1ee326", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70c781c7ea11a6636ff9895791adb603", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae077c4aff7694955e297aec442460b8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 59.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c5eaf5e140950b66ce3aa2d8166c20a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21397411484c74b41447ee0a1e103b25", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c57b3cf283549ff66d34895abb42cc6b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc1518248688d1b2c0ac6f195526c451", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "862c2f6c2c655513eda6d4ae554b36a8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 68.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34dca5886d864b057fa49f7660717eca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7272260f7c9f6bec2f00efa03daebcd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6d6cde0dccf9f6ce9ac944e276f0772", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 68.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "493280db004102227ed0dc6f60e7c677", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 68.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dea1bcead9e38b0df8334e8deb393a62", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a35c20d3b1f27712fbc1081c921ab64d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3df189ab62d0117da67973aeea3152c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 68.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcd2f4dbc525ef747851c7f4428d467b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 68.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e216436785272e96e2d4ffa026ea190", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da0f64b3996b1f8ae3f7296b43d45fa3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b937a0796878e54e12555625f7989cc", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 68.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e76bbec6ebe703453fe2695349657ebd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 68.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "384b84acbc96602d6904bd16a588930a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cef3d5df16d37f43df5b2f0f00d0926e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86b37f3c27bf206bb2f755ed5b3efb4a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 68.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f253ba964576e6999eceb62813aba36", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 68.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c78f8cd0c52d1be7e6d4456fd7fff3f3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc98a919b06fb1d2d4976b7eb84e986c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92f6061a8829bb8da50a850ce834a834", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 68.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbc20bf67bed7f161ee220d96069e8e8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 68.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a14ab0d6efa48e31659c10c861e4c85", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4c23c294afa664b0c4592646f60de18", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7cf96ffc2ea6bec1b9e7599506054d5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 68.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ad6fad664d02085db1af65740b64d17", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 68.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a94fd7cb5aa913e6a978348d9f41fee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ba114b5cdbd585ca62c55141c7eb8eb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "473cc8e88a7009ec51bb614f2c9bb749", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 68.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45bd571024730627c72529346c64b39e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d9a9996f0687e703dac6effe171df31", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3db7b53c28b94893c81cf0964fae698", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bedd9797b53515aef2d436f9ff27f44", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26eaaa51623d6fe28b4bb4752ebc00f9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 77.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14dd896108387a81d0e4cf7fccd6d6b7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebec24eb362370d55b82550b9c0fff6e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9afcabd6924e83561ea5e3b590ed7bc4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 77.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96615bcca68b16694b9d1165e9b7b7fc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 77.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "762c853bc35ed990bf4c51a0d7aae32c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3046072a1c2a2e35cb2d0b71c0bd6907", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7e9b9da8b26cdfc214647fa89456434", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 77.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80f006a0eeafad3a1ad9c645d19f9b4e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 77.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26b205845b5f5970522e104e4ca96b81", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac85b6b44f75f1b21590227289371b96", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4359ca5463687e03d997519ac01a9be7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 77.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fc256dc8e02b5810bc02cd7f4509f06", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 77.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0af151b973c1bc9684a54dd05ea9afde", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba933c46cb3881b690ed9e0de549374d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "416efffc5f928da2b66f0bfd3104291b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 77.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b14eaed700a4448d22b499da110b216a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 77.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b0dc4f9f935f8fa9519d64a05474e0c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0871859751cd1d48bbb46819ad742a05", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f866226b1b70ea47de3a198c633a2216", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 77.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0639dd5f7b3de585eef51e114e1170b8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 77.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdfe33573b7ebacced624873fa367c83", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb029ee611d70674ca27b4619c440742", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8067545aa5b97c5e888fdda466314d95", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 77.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba343918a4c20d77b8717a1f947bd16c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 77.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a987ab4a9019543a657b8c45ea4ce3f7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a3c0db13b7a433315cda0f848bf456e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "251c70317e896d9c2e5092ed72f8fa4c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 77.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b833b1c511a768831772e9c8da09ea2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a98ea8bc199f922a740219db39ef8fb4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8f29dcfafa06d99b0dea749dc066cea", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae9237319beb006f676e39d1d5cf87e4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "225f35d68b78064f5503bf6f51b14e35", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 86.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2fb349bdff53654465b0027de639131", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55e6269d859f0df9c9ed305bc05d8ad3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ad91292f510ff6ea6f96548a808cfa1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 86.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fb0df147148712fa90c1e26a4919980", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 86.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c4752b20247abe076e25d019566bb3b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a4d0308b4a8f5118d8f40f035cf6f10", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c39a9a0c3249aaa420192e63c9747bcc", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 86.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "befa03f604ac408bc777618c06853662", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 86.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd62e84fe909bdb40f96a65467cc5f23", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96e28bb8b03a456fcc0652fab3582f69", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c51ad7baa8358ae79c2c7758ee48fb8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 86.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9de123237640ab25fd37c6b4d398818a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 86.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "769cbdbf1cf59a030b7e5100f81b4fc2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2af705954d8e930a5b3e4aa0af25ba6a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "baa02c837a44a99fcbd7869656000a50", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 86.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be0c3fb4a160af47de475dab24447edb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 86.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a71ce1ac09dcbb8f645de3ab6e74c5e5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6210902c3dd778dfc7e11e42aaf7f31e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3718b9545e25a7450d0b87fec76f292", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 86.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "735d76bb56d02ea83f9e5c2f6126f261", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 86.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6e34ffb2a7031ea4e998000399a27bf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc4738976e622a0b3fcc802c622cb20a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cf9211206448cbc4ea65a13967d6562", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 86.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a51389d9d7738592f190c91779dfb16e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 86.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c96f14395e28fb3c99b713dae1f0eb7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "065f66faca3e8ed176a4e81f1a2991f2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73e33d49bc10af0481acecb54216156a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 86.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7aea70b1c8121a775b28ab2a9575d1c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bc6fdac0f1819084e088d0df64352f1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3e6fd1911c953ba9daad8591f688f41", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed5be49f8564c004e3fe7a144bc5a8ce", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d654b1428590379f0b2235a80db431ec", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 95.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acbee64cf8a3e2ce567d6beef9e869be", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85b63f02daa11fac4c18d05d9f457dcd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad7a4fb5d19c670652ba7411ad6f7a46", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 95.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "224d1f0730747bf3709aa5246126b143", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 95.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fa0fffdd3163e38b9b49e6dbd3df6c3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05b3501d75ce81606ec243c7480605e6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9adcf70cafa9a2c9747e60575bb2ad96", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 95.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0fe8475888a93603a31aa2e4af37a24", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 95.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05459ee29dff69cb68cce7caa833cb34", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb5605c1bdc3410f280ed8a6ab9837b9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f82a066c80f7726c437babffaa1f3e8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 95.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0df05eef986345923884c0c409b6235d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 95.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d53cb660b74a27a1b1183fc575695be", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6756c495b951c8aff39ec5479b8c08ed", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5955be4ce12a3828ef0d0907938f1144", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 95.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee31c4c575cea7ee06fb35d5b2da0cd1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 95.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9aba68270f8b964b07001dd67312ce02", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "627c98eb09f3db56818f08c714047f73", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47d49fea26909bc64bc9f9447335b224", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 95.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a474b80d851e2c81b3fe7abcd715e5f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 95.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7368354ce784aed87330ae127829433", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4e40b6c3dd0877b8eb199f98c07d69a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a1be3b04721453bc733addf6145ea6b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 95.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ac754c4df1364c97f86b200cabc50f5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 95.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ad1ecdb93bb0a70bd0b2498f46e02f6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97fbb5c2863853eaf97ddd0c6988ea45", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c25ff9396bb8f99aeb46df115c355ca2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 95.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d34648dbb4721bdb3c609db1e76c004", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70d09bd9b1e9057bef384c85a0b34bce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e24df7c27a71ca9989ea2620bead82d9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1fdb83d4e230c1714320e7ba0d95628", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b21131ff913a72b0d9fbb53dc042a67f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 104.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9b83b068f4f12fa03feab1a0e5d3568", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b6fd98d550bd5ffd853e2934a59770d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f93e29e69dc6e0f02301acef1e0507c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 104.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0625e1a6f29ee9d999c3ad63651653f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 104.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1022d96538b435ddca09c744a40b278d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb93255561a27aee96c2c32b6445c8fa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4ffb96e6399e2cc844751ca5f11d97e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 104.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "135a860605c9fb31f913c0873eb70adb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 104.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6874da8887b4e5b3397f23afd5e28b3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cc1d9ecb8b16de58e056225affbc494", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61e098f8abb3a36a8fe6f702e9250c70", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 104.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03710e02799418470bf4432dd7f68479", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 104.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cbfc5290f6cef4f1353e6e4a58a6550", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f146a5fb298cf3d146ff5694dcb38bc7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f1f8817e06e3b481b074560340487f3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 104.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "495717e946f04d58605c6785d0ae45d1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 104.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ffb25e8d84163f42e4c728f6806f2ac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdbcb74b4c7c86a9708cddc27d0112fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b8db762a48ac39adb462d8576bf20bc", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 104.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ca06681f573b4a9e46733c94114ba0a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 104.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fe1cd8e378f104bd2c1d4b887b1fe56", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "216b23921233c542be621c33a8791494", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e244ffa3532e1b172e36116c7ad1e19e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 104.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fba27397c2f6a060f23430cfa25fe280", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 104.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34c29e7d54b8275667409b9586a3789c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "def5f50db8866552e192ed83091ba86c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e9d2dbea2c5dd0f1a39cc4d9176ea62", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 104.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c37b03b643dc0bcc81895a7d4c51ede", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df04de3348c4c96bba67dd04e768c424", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89ab7b2fdec2f3819f3714c9552b0119", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a5c5e9e2f2063baf4a9ee48a73b6ece", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "008db59dd64da469e6ee8ecd11c14239", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 113.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "385042fc59c99b922373c90a1068ca9d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7187300003d676b7dc5841cfbc79100", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bc632419b8060356911152c0f5550e9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 113.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c3b266e5a1d43122539e8b963fc24aa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 113.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dea1b0ba52df118a04d23b1d989d05a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5bbfc003e963fbb2a6daebe24a37e62", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d906713128c5255387a485b4fac40aaf", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 113.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aada9bc04938dee60ea6fcea6302608f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 113.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dad077584610be2fc088af47bce82603", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41a93af176b9e1b4df1008dce60a2e63", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8909a45a9c4511a1ddbf7df15e50f7b8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 113.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9e5eb67dca6049cebe44343d63fef32", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 113.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6636258d92f17aa6964597bb1dc26231", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40121711ccae019e87e797b577fb81ef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35744580bf0458a2a4c30a3933fbaf55", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 113.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa72c4dd09bfbacac736fde4c9e17edb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 113.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbf6a51d3a64273ba963baf72fe08938", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d7b5dc8f191a232912092ae15bea555", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ee73c8f42a71503f39823773001dec4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 113.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59f7531785eb80b06bfd2cab9976588d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 113.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecedb803bc68c946d3dd1301d3816dd4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ede597c9a13bf4a621b8beb5bb0cc3ad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a36a17aef5c2983e772f1eca2a4a937e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 113.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f33affb9d319f69b7250a10103dc8519", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 113.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4137269cba8ef8ae7760c74babb6cce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90712cb0f79f448eaea9cc21a087d63d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ada711ad76fefe78e96eff843a37fa1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 113.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f4654e141e3a007b15cbc1285b4a2bf", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bc6cd20c5a33a71f089756ef75cdb7f", - "notes": [], - "params": { - "message": "Adding Dye Sample Plate 1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed8ded1ff2d1ac3f8a5588c95a3bc1c6", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be7c2fa2e5052f2cbf9b6699df61be69", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45430360ef862fed6fe4321f4be3aa91", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d410b103bf386957fd97683e063032b4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecaae20906b8a85e0ab821291806f300", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b73e1ead4372521e59521bb50e9f3ac4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f95858fd4848c297f43d466bcf16e82b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bf2aa187c428afabb605dd0ab318dbb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9de6beadd0a44dfad30129c08dce121b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e5a2269d51f1e2b68d74500e2ccd9e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f64493973ed45eb546fe45c90087a41", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b974998d89c1ccb348558769b1a0ab4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "072df3b767a6b1a8baa6b9cc2644816e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0660ab82ebd517fd5123f4f64ab3bee4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c54c3f93ad39bfdc8b080896d678eb26", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21e93f1cb40a35776d0bf76da7e6b972", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f925403b358fd0669764142490617aa7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75bf5f9c6ce3eb9f4ca20a6afea31920", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bea70f99c0caa20725c1952b4e0cab4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ca71e49c881f90f8a13f2aa2f98e40d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e9005d3e6d23062ec391919f4987df9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8343959215c2f2e473f8033a43e3d1b4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f107bdba685e1781ad312cf85f5a602f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be0ce6454d833dbe1eefc6d67352c0d1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14afca76beff119c66f65787780ca349", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6372fa74a66448c8a1350089086ea72", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87cf368bd1ea7e9e2514eadc98a7ce41", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdb24a7dee1d96bff3206292a5a0c606", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "664409e9007cfbc963087fec9c279ea3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3765c5b7326b39d0f0d6f2a84ed6d8f2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e75e58536712cca312adec3f52543c0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2767c070a72175114950320ae27f77be", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bb71a6947a1ec882ce9bb0999002d97", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "342a790b8df22ec7c5891d561db7afc5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9090d07d0d80731f81204dbfa2c28474", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "caa37430cee605dd680ffb7cfe8c8dab", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "103bb68cb551100d90c09f7ea868578f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "267ee58eb2f674f9bf666daf58a92225", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcf8332990e04f88339b9ee7d340633c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80f3a3688e745ab0d8c1a1e84f7093c2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bd61591db72dd9b91e8c77c0f66e06a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cbfbd9cd1fa6eebd49bf488b735164b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b362867ccfd9dc9634b857309b8a958e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b54cf7ce0773f3cc86b27ba5005cbac1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe1e3e001751654cfa2930423925d16c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af1ea0de9efceb36e834a60c6f427d09", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dfd2adf4d28ee8dc34d4b44c8b38046", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e21f825b290a6218fa9cabdb8e1a1ee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec29bd2d836670f829afb5029d069e81", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "595d5da4cf643ba47dd25664b7517f9d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9469fb388d4516646315d9a5e403ee7d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "336b88ca32217a6cd897bf989a61826b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23a75004e921f9894d67fc2953712192", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d83147896014badbf3eaef710a191f12", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ed68d4a326bf1370e59178b03a05bc9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3b73e3e76aaebc7b84a79e9de54fbec", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f422756240cb880f471bb9dbe5dad94", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0946a93937a56bae48410eccd3095c31", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "912747f9798b9b16f6d4ccda5605bcef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9dfab368e9e7cabe60b877c7723a628", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "492207ba32f4e6d32a74e9af1c558e6c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b57eeccb614d44bd7e5f960545aaf14e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c91e17223e203ec5d64db194d75f1904", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef0352b5c0e48daca9c1f5df2aaf10cd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d58f94ac27f4737d409b59d328fb88f1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b96fd6569c555760f68e10fab342f9ea", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60ddbc96f6523613ecc28bdf22b992e7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1efe000cd5b4c6e95eeee5be4e95aeac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2cb5ac6c1c8354ad5aaa174401b1553", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ad1b3e31930212748cb59b44dcdb9df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "387125f6962d635be4ce67d75bb614cb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b17cd2bfd1f1ecffcf8f11d0900635dd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "848cd38aa6936bb797613f979fc65249", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "905e10e4acf13c208eedfd9b28e9a4ff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b832f0bda995d61f71b0c92e28e0c59c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e6ef78cac72dfc30486298a922e0de4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc65b10f50624910a305b231aa7b85fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1a0a1545974f54433527b09c104e7a3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "560814ecc5850ca8d111d95bae95703a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6debc6a93e342f6a84aceaff4f7f7f1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5778bb96b513746935a05ce113011870", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86affa22c75da297eb3610c7980012bc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8c0d05fdbf624c28e0c83a1dc3544ae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e8579c15f37739eb1e7aaee780cb81b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "297ce050f265daf982486f7da69d2522", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "910002d6694780c51fdcc2df658a781d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78bdf0dba74d5794d3bdb03d1ed78f9b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f20cc0bc7cf85666059057cbe35d188", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc23b006dcc730169059866f6b2d96b7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "471e7601efce0f33c11f7ae634deb4de", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e62b9285cad35745d9ddd0ec907c28ef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3d34aee8d7d1c74231e3560ffc4861b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cf4387fe6807f5b1dd7fd44585d9cc6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b55c65187fe46f346ed94a789ffdc08", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86e477e8920c7d7ba12518bb9e4a04b5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2519b41cb0e5caece62dbbebdb948fd1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a58e678d379795535a1c4a1cd7c1ab67", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fef24fc2ff13213cb73c24df5e674512", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13d0d81734458858d3bb8326aefe061b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bdf309decdd9109ce1e8654c6903b52", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea42c78f5254fadd1dc4693434db3b40", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9ce3f32fc70dc94f875961e88ba05b9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bbfa76b145331b6bc667d5e72616cf7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cee77dd98567e815942f6367c09f48b1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f1815cc45f6f8dd548b09b3d7725343", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52fd25e7f5d3c19d0fc3d21cc2395674", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b94b765b10a2a7d18e272e10b003f711", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2ee98db4c15aa44eeef1a50747105a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c97d606fea283712d2d3db94bd45f481", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b930c1619d07a441c6582dae63b62d2e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e133102f1ba10cbcd0d8db75b0b31f03", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f2633b8b3600ebf0cd8d7584c7cb9b0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee89d19be42491d22d53b5df8b05220c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76761ca6b9f852da14c6aa7a1746ec92", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d69816ea1e62a6bd7b1a3c30a9507b5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4e63174adbb433d0971bb744ae5808f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edf68548945dbf180bdb123de398d20b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d89560b03fd850a50240fc341058720", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fc32f8e8b9a17921f1a80df8b45d854", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35b65536998fee80a681450094b8932e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec13fcc6e7ee22653fcca2da12397bcd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "146cb851de9b1b9192594f2aa333fed7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "482d8707ff8504b90e4f4a33e6d613e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05bee7fd6aa7bd0dbda93b6be5aeaf32", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "121634829040947d0a110572cc91e7ec", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29d6fb2176365a34fbefebdd079ad992", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "634016c1e1a883425e90aef7f9e1d5dc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffc22f71afc66d5a724b20199588b4e0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d073e3a34a39680ffc4b8e43332474f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03c0bf1641127964e7cf098c626a57f4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27fc8dd9e0d5eaf249a4b98b7993a51f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c67a7f3e20968c53bd4b57fa16bb3d7a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96cee2eb7c480ebf0c69f8d3e3d39e6f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09c6cb6fc6aa3bd59fd31f9ab889c649", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2e9222c048e920da2c7f8168edd6930", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b40b09d55cbab1be4237489423b6efa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acf35d31953fa7714994e38dca41dbac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a3216ee39f555291b0cf128f59c98a1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "273944c03a68bbb16daaf8405d615c64", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5fe2c8c044e960a93ad8fed9662be9b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd7989075634997002c21c011ca62c35", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36dcc0f00dd9f8fe2bd0f85dc4e5674b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "444af49c5b6495cbd0fc15f629e1c43d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea4d10a6a24ccefa384ee7c5fe9ccb6e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8fa16ba847e2bcf93a2aefb5a4e99c6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7aa6345ff0086ad7f2ed1a38c4d8a607", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03c5d864d619f331dcd555ce023b9bc5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3b577df2d85e1739ef495327d7dd9d9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9563fcb6961af5d46ef3697871a51153", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af3369974dc7fc173027d90953cfbeec", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdcc8e47f7be6ca47197e92261afba27", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d330f4282e72881831d8c74cd7cc14a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10cb192f81218f255f73e1660ea7e094", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "108fbd8dbab220192bdfbfd2cc5f1882", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b303f1637a20b8089895de7e7e6cdf96", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0907fb06268fc16e1b64947b9fea8aa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94add2d634b34cb1af7f90cbd12a573b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e21f67a6453394d84d76e94f9a7ddbb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "352bbd220774ce5062e13508e7283f21", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66b5a162b2fb027d88340ef6ebc33644", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c9e1e82c80e67a7f1a7ecc9ae7879f7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed0a0603301db02339f9ffd7641fc443", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77b208e9db8baca0aa364a20e499cd6c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70331196522e6dfcabc437c10dfe362a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e343a2c7e593e7a5c9745e9a3e344796", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9e5bb3a0fe89d6039f9c9e4f96f0467", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00c4732d732835a612fbb50ac9251c77", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1be238f662ee4c7b1d65277dd748430f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3c972cb758f37186d9d36278da5220a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a138503ace7de1ac6a4e5a2283ac97fc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4f1363d90cbb8b7e718a204cce989d3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12d9e85a559ea9fe1d8732ce37cbcf16", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "333082a82c75957c96cbf42325bb5193", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3170506b3f64e8d88984954faa56260c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0a2a6e10c27ebec0f19d0412795efd5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bb193eed721d8e12f4c221cdada0dbe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b821808313e1bb1cc5ec0d81c64b66b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d53a807b9260b628f79f1f90c169edf8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 74.24, - "z": 16.7 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51e1c87df6d9c8c2805609232a257f02", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05b91398a00e4f7e6e57750392f57dc9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 65.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f454d157fe1e2b1569df07600b1bda28", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc15a4cf4c6c628eae4e587a6cf29c61", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 56.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dc586ee66fd0d062935c79c616f14c2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f9a11c7276214393e5c32b2e56b2067", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 47.24, - "z": 16.7 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1c1b4968e5c2b8792c71f0abae642f0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23c54692b3994df5e4a644f024592cf5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 38.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2833f26da41ba2cbf77cfc8dc9073f36", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ef0b1054ace6d28c62c2af334a86ffe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 29.24, - "z": 16.7 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "211c163032224813833e8793ceae9401", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4da2ea534d51f235a95c6e81c69711e5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 20.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a63ee1c7ba1ad52e317b794e88b8f063", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a636385667c2bee4f8f841a18f0f496", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 11.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73c9bc3ad28b1ae11170e437be15ce9f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8feb823dba95642b9d04b10ce505f327", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "170f88e148a47e0e18659a8828d65737", - "notes": [], - "params": { - "message": "Adding Diluent Sample Plate 1" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36f8cf44667ee5cd3cfbda9d97557cb8", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "393bb026f13b1a7efcacba6c0b91d632", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 178.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cc218a9f1c23bbcb46f8c9f9a01c72d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7331187b0d04942ef34e497f9d934aff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6a30374855fe03f7b4030f72f66bd14", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 178.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1631b9387c5968193b7c00b0c9d73fec", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 178.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f8ecc98d45f6541bd1723d65c6a02ff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82d3981770b6f007a99d4226e857dfa6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d14ef22a1c5e6c56e1f453d3f5b858fb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 178.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "610ed4b3ed8f295164201887a4873a72", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 178.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb9f7a1dba89f5a8cb5829f520eed2fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0aead3c3e923c8dc3772df7ab96ac7eb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0596b74c2ca65ece6caa847ad9ef01f7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 178.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da0e77ec36f7fd9bf6fa731dd3a58c38", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 178.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a529c5f3ad3271fcb3ab317e13ee93e7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a8c24bcf506307e786c15221e6b25bd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "204eafd304f9e86f72319c0f62c8c39d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 178.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7452503ba84acc8f85454a827bfe5b09", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 178.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3730deb4ba48dcf2905a8c49d506781", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd26375929ef13ef316765b2805f864b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96d98c678184626f7c62dc7c59005f23", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 178.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6c29b1f42ff874e6a5ac9c5e62cd613", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 178.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0849d3f1ebb51c4a074f24c9c02cd89", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6fdbe8b28b5836031afad6753e5e28f8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2006448c18a015ed9095a651577f5541", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 178.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de52ed968f42f065aff8eeb860186f67", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 178.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9770d4c91a46e9bdd667b0e79a5ce61b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee30ae41f990f740f437136a9a1159d9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "609d9b45fcee6f28d1c23bac3e4f3686", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 178.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fc97b75c7c3d3bccc82af62b4e513bc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f7463560379836337d5379d399c0c74", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2610eeb38fb7d9446d43a38d15068743", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23ebc0aca0e000931cdcad75cca36739", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acbb0f4fab285a60bc05cb5e269e1950", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b071de677050150447570ce795c65bee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dd4abe5cc714409eea9be55d3f15d88", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "811a64cc48e5f602ae7dad359dc333a2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea750120a518423fe9b2bc532763ff8c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a48faff333eab2ebc6b6b6f8554a8971", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9143d9993a7a901e9d59783082d3ffbf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6123d868903aab2b09d7c5a17dc9bcc", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd46043e1c91d26c0ce51a87a7103604", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84a2da18b599f45f7e0f8e2fa1b510a8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad7812220b727f5f69e56b1dc425a272", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "117d9d120b9300ee8070742a0c4030eb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07a9b86a151322f1e2b7cf6331f0763f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2fdfbd48262129013da80099734147a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da4d61a05300a88b30951f353da0646b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "134d4b16577b76ac557249a42b032a5d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35cb2be2a51ac030b23924f0519c3f13", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "441bb9cc754d297cb451185c0a56a176", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15bee432765e70e4d4a70ef6d37b1959", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a2177bc8573eb3ef233e9e785c89b71", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42599d88aa52e69f495575e6289acf30", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1e72fd8e5d7e10d6d055f636211ec51", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5be4ae32d71b53c648ca7caa504b1955", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f40d80c223095eae0f0aeb0513ddc007", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a38cf3ce4415c0202916b0d2a743b0d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77f2673c0b713eb12c0078290cb816b1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16106354ca6e3ec237ec345b3a4a12e2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2357480b658f5d605317157bb786287d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84e732f34c0764dd92a1879d7f81acaa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ada78a51bb7e158b12b4f6c51e4d8b4c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2213b6b609321088f813b54a5a13cc03", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bfaf83c6ece30fb8f4d33f3422adcbd", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9678db5542948ddfb5a988d3a5b5df28", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a15db2d069edba402bc274ba597ef28", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4469731c6f8f1159a209abd753b77fb6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf8de70463ece6399d901d543e091b66", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7da8ea73b770c6ee80d0db6b14d46af1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62b9246b2458f837a833aa25f778308e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b904e3f4964705efc8a37891f446679e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fd187d3407b77b660a14b73a5af4795", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "553e0fb0459247fdbb21ffdf7d9aad04", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33ece39c90d5da6cc0cc9485da6c85ca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9ad5a2b6743df2532f52ca049e56cd2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b0cc43bbcd0016ee9455f92b585350d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d640f0768606dedfa675806e075d47bc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "064894657fc748b3f8d0618fd2c214c7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "573c2e13a45b0325ab2bc4cf36f63e67", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a5a3ab1613c4b020c16cd3dd1dc93af", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0757caf5b40bc1966c3ea19e4848128f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9573a3d76b1f630647ac40ccaed93b1c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d3c872d1226df88e4b05cbe8ee8fd4b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71818b35904318be4b5e75d68ef5dc51", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3245e5531e072f494ab1050ff439a7e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2e981088194b7518f06f949644e2003", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54a549431f67fece0ecd87604ce03274", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cc15b9846c343cc673a0771e6d6b652", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "405db4894a7d4c96347574a922420b3b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e3b8624674906123c83030af1dd7f8b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b12cda08825eaa5185b773ca1eff3f6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5e3c5675e74d8874ef24775b6498da6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f332f7e5883a78fd1a144d1c5f70ba54", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4863de97c3b5b48adb261d44874b2613", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3a99ba0258512a7ec2d0b70c0d00b3a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "698dd60d9605e2e13fe97d682ddb647a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4519c4bd3961710cb3abb28188d1e7f4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ef6e05b980da1f6349e660ba45bbbb1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95303091f584ec4661b48f0439cf73c1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef9b8b9a7b7eee0271131c84cdc88fec", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e85123ecc14f64735b7ab41bd6b7bbe6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a70e89cab890129725bc71f5e9dd473a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a04dc170a888f22922acda3a39863862", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c083379ecabf183274e4694837c8b24", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af5556329d30a1fe97b3342f7131c59c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa622205b162eaf4c753535f552f7a7f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea81ad102ca1357b5c2d54bf937e0fd0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5d7c49d935d608b285318db210a6dc8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "494ece9368b3259ee901f3ce776d334b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ddac8080ab111f4234d17f06ae6ae6f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a6981af89c1459522a57f46be8c8ab1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34e6bf7df0a11e5fc03d44ccd7c78d37", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e0daf4d6c3928487dbdfc4bf894386a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be526725a8aa1c1294a29dca541b2988", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b92c23b1e3237630fa3f651ee88d7d39", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "400091479c585e7deb4a096cad349850", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba7bb015b8f251c1fd70b0346f0c0de8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7611b28296d71d857f5e38cea6564bad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47bc655df4f5b366a53770bf7a6c4bb4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a32f545e6a497152300373b1e598766e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9474905938c4a80fd89f5699da892d6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c305f319cffaa0949c1cf7a24c3809fe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc965bdd750e53da50cf16b5d7e70821", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0a7cf7ac2912159721d2d9af0786c8a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbe42f153466e9d5116f14d59017bfc5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd9f8fb26bc9f373da20b908b53f41a7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24b39d48ab8a7de5bba108b31281e41e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfd07807dbcc7e85bea4c4bbed4d9492", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43b612f3895c896813d297710dca266a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 214.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe954c0cc11154e9c56eaf89138caf1e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c648819ed6da886dc5201a2b6ba9870", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "302e592b9356e9ea0bae6104fc54f2cc", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 214.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5d2a605a7415f0aa1fe20787ed6ba1f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 214.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "607a6afe2771c3d92a8dcf1f0203c4a7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f162419e27e8f96a196d253eb6ed9613", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "238797138160ed9a8a3cab20a75d92c6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 214.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5d7abdc54616b69248cf17b191e4619", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 214.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c8fc2875876ca150d01dc2eaaa7ad34", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f69daf6435e8122eb829cfc79549c34e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c127dc775520080fc4fdaae688b61d6d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 214.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31c7f89bc91df168d6f1771229943ccd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 214.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c88dc04bbed482dd00870e607b143aa2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c04a4c84b8660dcc0dc5f5bcd6918cad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1a3c8474a32601c7a29e98e5e67496c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 214.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d3fe3b88f7b98b3931ab898d950e777", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 214.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1168521f46a0811e1dcf10450f7768e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95d9100fc0a3397fee979168f755247a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f4a061a0ffbeb0caac52e95cfdf4c8e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 214.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbde7bf2c55f7c95b6346d169576495f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 214.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57111c4af58149f25fb38e0a44ee57de", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37ab10cf9aadb8aac99399b8e403ad54", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fee75800f2badd7d79e7a87bf019758f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 214.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "783325d14af0fed10a62ed7217a36335", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 214.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "115cfaea7c66a4e6aeef926388dbbc35", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fcd83f95d13e4b7af2488b8fd2b2015", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c97915f635fbaed33307f7e3e50d2cc2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 214.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36431bf22bf0c13f56d2de2fde3d3d95", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f9b8ed2eb1fd60bc205c3056ecaebf3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "095ca48b15c259dfc143b8197ec84959", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6ee62b4d7455eef193c95a3afb39d7b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d841be634892e3dcb3413c43885f406", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a20d17dd829e71a9033f2c149fe491c6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5788efa3c275bd16d265f838eb382110", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "256f52c1b75fd13767b93b0c47f470f9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f8d6a3d15d9f7e5979532de80f8a09e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be9afb67e0d57aa3251a86477aef5219", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e74b6b2238e7fa06ba86586aac94e2f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f815a1fa4f243fcb4700be79ee66255a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5f13487d019dbb1e524c1f626225102", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ded3c8b851dc5674f6d6824b586cc5a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ca337fa05bafce64d94c16c52aaa535", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd9e70bd3d4f55e3f51246fd0ad67271", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8866cdc7a8ec1d22bd3ab152165b2d33", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0376387091932c8b61beb95672a80174", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b61bd57b9b50f9cca072491639b519d5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25b11c58024d512827c313aa02fac498", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2d7042fa3cffc85a09ed762fb160b45", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8564afbc97124a2a811d5069509682b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "515806252ece494b6572ef72a8842b01", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8f6e867d19a44e3ee6ff9ac1473a058", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dab5d65b14e33e43db58cdacb06539e5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd75df1c7751a87642a101f12b76cfdc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d66466835fe61522bcce06ad6ab6f270", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a384e0af68474ed5470513c038d3161b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba48eab1b847a6103ef7da6ae9275e54", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0879657680d26056449b884cbc124100", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "421ebf6412a583d99297f1b64b7a902e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "879cfa408a62e1be219f02559a7c3910", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86a769bc0e033c46f05fcb251ee6281d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4b292ae699f91bff285d390b38ae692", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40f9e786231194c405ebfc0688d27fac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b91cdb34ee7d38df3bdc1fcbe047ec83", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52e16c31fa33194f48982561bcacc424", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d72f0eecea7250dda8a1da269e928a6c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0588f79b9bb535b020aae195d6ee732d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4481939f9cf95a8f6bf9ae1b42a3bd4a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86f2556dfeeb0520a233fcc08120fd2a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f84b6e91d0c688cd02e51838d7889d81", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8075a440b47bd351f445b65b900f9f5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "569fe7f667dce8a34d96fbf9095111a4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9320bcddda91b3e91deb24a837fbc9b2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b64efb6f829cc0b25ea0a76bda5f80f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4e57443cc209c139303565dde87be62", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59c0c8ba58d41a0e6743ba56b54f6674", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30e9029d2582b8591de3824f52daf8cb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e6d8886fe4c29ed6b49305d1f50eb17", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c75f54243086975684b1e0d2a28b173", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb97485477cbe8e2a2dc81c5993e7b1b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0ac553e84bc356202e9d4bf3df43ae8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "255f9f657e67687769cb18162f668ad8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e051f0be20d83bfebac4d5902940245", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f11e943dcae9fa2776cdb01db227817b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5c01c9904ad3fcb348a49ad6f437e2c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfd52e22fd88fbef17ff614ffee73e6d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3394aeda8759697becc84ce3b875eb9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de3a341cc3de18561d1518f9d7fc714f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7e545cb8915a0e7648c5dfbf884bcec", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13971b4a6336d7a88e8e2f4e997fbbdb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ce290fee4fcf4114d7b1f87d7284327", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fc1f4ceb093ecaa39406899a5ab2f5b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "719232f3edf835ca4795ae5fdbc401c6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6409a2a1df12c02283ed7e5f5667f22e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57b6e48f411cd6f901606302abc5615b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4087fcca01537d1f8704324ad9bd0e22", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "843290d06cfa707c54870b2858971190", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 241.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c536861ca4221c5939858b6533100baa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c137dd54f8ab5563530481cf36ab8ab", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1442dbecfadb911ef694b07dd71b05ff", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 241.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37c2c3c8142c038c7da39a2075bfad33", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 241.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cfe9871d6cde7c6ffe820658af7be8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c404eed2fcc353d360d76ebb341fe60c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fddea93446f99246f7742788680f987", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 241.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c42263dda1905fe79f76f18e8967d36", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 241.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad6f68e9704d5a178b336483d5d853a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "051194f754f5bf34c7e9acb4e4f55dc1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0111c0d9b01883a229b88dc436359297", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 241.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32671ba0d60af09bd7a02b5527975eb5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 241.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d92eedfb36eade9159be943f8e4c708c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4bd66956487e6d1c62ef4062701dac6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8de90e19541cc0be1dd296d34f42044", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 241.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eaa706502e97ec4776e586b3c0cb23e5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 241.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "842450dbfa3c58259e0ee10331f3e7d1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd2ed0a0db231e981f63e44852d8876a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db444e5fc727be0a678ee14ec6d06cf9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 241.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5f0fff8fc9ee458dcb33fe65bd810ff", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 241.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7dac105dbc8184be5620097513c233e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3379ddfacdff384f9f47fd6b21f59891", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09586e68693d7ce3cce7738a69b7a1be", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 241.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65bcca06dc6172d06875928e165c8707", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 241.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e2b93c8f9d5e9c871ccf59bcd2ada76", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30bedef4699c245cd2935ff4901f8151", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d014ad0623f5a3b24fe9b2b04c21816", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 241.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1ec00485c8f04c4328da4bc83ddf5e2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68d4add3c9162b3362a710e6625433b9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7107df9b31294be126ee7517525b9ab6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e04308551648f1144bfbecef0a1a918", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f6683a226c5c2e85e46e3767142f5ee", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b01b32a5903a65234e0d8349425e2d58", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f4c98c10ece6a4fd98a4b50b2c71ede", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d908086dcfcc1d0f6dadd60078a37ec", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c8260afc2a1a9b61a8f21c5084adcde", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "547eb48a76bd8c5296e93d881a879ab2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4259d1e58c26ec10f1e932ec661a877", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88c1dd5ad588247f78015769d8d89ab8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae99f4d7155c361a641690a418e18162", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca3147d453a107f45b28923b3fde8d85", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "041e238ddeb855f6668d9baf1b9c4c33", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6af7724220501961af5854dae8befe37", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3866538d0f5a3cbf72760aeb8865f8ec", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f6420425af09d2b80c49bd3c49f62bc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "860ca03211316b3f036ba1ac7b8af2b9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5e60cd7ee2b1705746c4452b51b226d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6eb5ccd43605b1dab1315132ca1de9ac", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a27923143867517204227dfadb58a08", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3b4f230c0ad40a0bafa6a767eea33e0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1afb929781ca01295e8bb4eee5d71692", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd75e359e6c222a5cba61250b6ba63ba", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0be3ef22aeb7b0505dcc82c0fdea3f29", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93638353fbf35db9edd0272c9fdc941c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76e67711826a798c364ddb1a87512a66", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bc3ef963fb7e8e956a4fe8ef76deec0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d828b9a542281d4db980b8e256cc4b07", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a7db256c02994d512cd18c03866d289", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b6b47dbe31489d019d6818deb28d149", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45837a9502d6f1037ab977fd724881eb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "038993b6c1d174b2d9c0ea13dbbb30cf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d7b962028d11fe09f361493f948455a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d11b3088d46bdff8b76261babdbdd939", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45447edff033d79e5fec5e6bdd668cdb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 259.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e4f4a9841c1060e5a5898798e9ea5fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc52a8ca3e0b599152a5d5dc26b1d679", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "499c4aadeb828d6aa2ec24bfe7a71700", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 259.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f57296301e1876e338e09024d4b23d0b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 259.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdb9056d4810feef258a30a9bb44e617", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed57b414d8990fa62337e69afffc8dc6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6769ee78ded7999b9441a92d8c5aec1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 259.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ceee111cf496c3977f2b663f26a19be", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 259.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "252a33411cf3ce4176f7b74bd1e1add0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3f18821eb5f8ebe5f6d1834efca0c49", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e26be1f09308eba5005f41bafc998ea5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 259.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b93f5038979fe89ec709497e2a16a9c7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 259.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c630b77982d3cb573672d6651af90171", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a54c63ae4d77b09288c3b6949cfec940", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1b8074ffeb8f4051129f32ff324410b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 259.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b68a4ff43ebf1cd05c2af78d9a10d6bc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 259.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75a4116f2cdfc1df30eec25f2f54a3ed", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0521674c9dfd76703e637bd0de43ff0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47bba3b5a6dab5b63e8d514206ac378b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 259.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfa16649bde1e5c6c48027699abcc0aa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 259.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45466753798ed3b79707864f928b9873", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "690fc76ef9d8ed157121e04b8e2f843f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdc88068a797327b85d1baa3e26f1d6e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 259.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06477a79d8aeef21c67be3f4541836e5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 259.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6f7e70612631989eb35141422558ae5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbf5b1cefd7396ff7d5bc4f4e099f50d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87e8ed39b93036b6cbd784015643b65b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 259.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee7284d240652c6391feaf25df5c4095", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "187618601b6d35ecde9397eddb02660d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b98d34323faf12046f9a04b2f13f1f0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a88bbe2434ee1c5a21bd25449832883", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2fe19e126949bf832983bedef41f7e2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 268.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e496175ac4fc852d8eb48c74bc04d869", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40d152547432f8333f596bc4174e7b34", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a54fad42b732387513c73bb1f9ce2e5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 268.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec66c765aad385a5a83dd694d01c88c1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 268.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14462c7f89b9adf1a0a783f1443cc340", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d31c26dd569b38193e1f2f5d99ec7edc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbef9d15d577435bf6189f48f508a4d0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 268.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45cb7249b5ebb2961d095f4fa819809f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 268.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1ee053208fe122d0fab8fef9333145e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d1e49e5c72bc46fcf76c20ed99202f2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59a2286a154c01edb3e9ef584b1ff28e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 268.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6631e54c8d11f91feb7542f908c930d0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 268.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d0f912006016f07e0a8151861c12056", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc46207b344e2e566fbe826fb80467ba", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18cf16063b9b4b38e31c82b80c06cb06", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 268.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "644848e3ce1cd8a1a9b24b0a6bf6aab6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 268.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c56b610ada749a8767efbe7ac3677dfc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e4668d41454bf6ba20f262f10e7f4b7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c261d2c8c44fa075797bba3f58adb0c5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 268.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b97f073f60c09615db6692d5dbfcebb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 268.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9754923d929cf461df24dd6121cbb13c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d652b6e9ea984e79e479d0d5c33c3cd1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c5a8243bdde994474c0461052898da2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 268.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30fa17297f1e5c6298120cd69b8c1f73", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 268.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ed651be7a17b023f3e2dafaa39d0e8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21ead50fed761fe2949226b69405e4ae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b663ef10432380de223f1ce4d83238d4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 268.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4d627a42ea521c5e613113417432699", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c2fadd94f889a19dd2cc69e0779eee9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc5c15caa84009d4981d60c901b9ef55", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 74.24, - "z": 15.899999999999999 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9069e9fd5fde582a767fc41ce7945cce", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46e7c12fe61a3f91fd72580562d90d35", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 277.38, - "y": 279.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "422a216b029deefa5c038e97c9a592db", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd1711207be4b3ed6aa3a985c63dd37b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 65.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61a49146e639384917501c7fcb802b5a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 277.38, - "y": 279.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0706f4bf662f68f75e33615c4b5a3d60", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 277.38, - "y": 270.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e2e4315069405f9be9fc2424cd2ef5d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71b6d7bcdff91cdf94a1e41aedd1f50f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 56.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1af4138a3adb9be0cdceed308a3b9e6b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 277.38, - "y": 270.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "835e609f3fccf2cf88dec188b44bea0b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 277.38, - "y": 261.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b43e6ea99c0f5e8c2fd742998673b2a0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19178def65247f95554c1125f7aa6149", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 47.24, - "z": 15.899999999999999 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10de11369e1e2fb4591f87511a13d4d5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 277.38, - "y": 261.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8929d43530d6dfec5818a9fcfa8ef9d3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 277.38, - "y": 252.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74621272d2893c177c19b8db09574740", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4b3ded74d64a0f0d77edb39419af48f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 38.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "492ea980ba14c468797059c6ffa94adf", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 277.38, - "y": 252.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a5721581e774b11e68ba8db8ec0f9c9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 277.38, - "y": 243.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09dff087fdc2cdd7495443a1a7e2d28f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7eb395706f84e00e3bf90b44bfca842", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 29.24, - "z": 15.899999999999999 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bb2c8e6df365e293926c4d8877d9ce0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 277.38, - "y": 243.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a323866c88def176f221a2a00a7b51e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 277.38, - "y": 234.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cef5e86c2c3a592d605157e3f54f97ec", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb804839a0c1c124e5f89859d86a4478", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 20.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "748258931340d167f1f05ac9ff1bd78e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 277.38, - "y": 234.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "774a97874826b7cb3ed38a3a172c1908", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 277.38, - "y": 225.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58a71210c1e55986d4c1cdbc26443087", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc7414d96f1ee2d17a8f21ad670f6bbb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 11.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6d02ca1e5dcb3ac85bd584f881313d9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 277.38, - "y": 225.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "301d60b8fa64db3ca6a5ff772ac48fa9", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92064ff22c597584cd99c69c7904277a", - "notes": [], - "params": { - "message": "Adding Dye Sample Plate 2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea1709aabb6a6bff49419adb999e4ca4", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8272dab26eb0aa291815a0348999c8df", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2162ac31e137f13847b6fa67f4a608d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95f3134314cdd4177c806aa25f9baab9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e85489508d2278b4696462c6e5404419", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f4b8748dafbfa1242fbbd6b2358bbfd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8010ae8421119ef652fe9b38cb051220", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bea04ee670899c6f41c05670934b9bdd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f23f65f64305b15de85dd33f631ef619", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7431d8192845ba5d710fa76b0e7547dc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4eb05ba1d588eb13a6a969dc09d98105", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35a0f25098836bcd22a9387757ece368", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e72f34185d1fa0903cd44b6d2922bd0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5edcbec6bb81a3a1dbe23f6f1b4a0c89", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0613e2e9f98e986cee0c0759f0aaf742", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89e98348349ce1404ce674fd8e046e1a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f687de34a73cb393de592015000dea9c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f876415fecfce471e2da0ebfe8f159f2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c08e2893bc0d4a775a746ddb75e9e82", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59bc6f95285e74e2068c142fd0cad8c2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64bc60b42ef6fd1ef3344bf2b5f2af83", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc3ff7d2f6b6dd2b22d0a1e906008554", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb85bafbd0841eaa688d1fcf669b458c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10b14842822d92d66ad8da2d892f0263", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e05cc6a903ada944dd9ef63a19ff663", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5531065ada959fdc4a7009219bf26b7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b386d05a9346f2903bebeed167ad4f53", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "055aab8c307fdc10387411054747a765", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa005fd475780f40b766a9eca60626ed", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5d0c4630bdd8914718dc5aea4c6e6a7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b1053b5025d0c1baf8e61273561b9a2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87b2103ccd19c51e37223bcb35e24a37", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89610abcf4b307d3b5976d42a5442f18", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84034cc4e91e666e86bac6a7804e22f3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5301bc2a605a34a2d9b44a82ee1e09ee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b51ed5ce261a64e530ce22f58f3987e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a53d4260d796f754a0efdf0016dbc24", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23a67be16ee9e78bb91f7254da036983", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f46ce4afe9d1bf29f294a863ddf90d81", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "022e51ee4d8d7be0ad0fdb173a2f628c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33ba79caa78687b9ddf60e332a7181d0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c4b5ca7637e3d96fa2ac3c93a0ebd9f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b28783825b1e36725eef0f0a205c3fe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "640080b2e3fed20b4c5a3e323a440bbe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c090bd9e4d831516e4c6fded7a94a8b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2661ba27efc147b3812b9a200dbe606", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b0303ac53320ca40b62cd69faceb62c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36d9e5e1601720d8aa93bb490d24caba", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85549016dc90e21109570973492b2d83", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db5dca37a049eeccf89f22c793413d28", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28577adcc9a86fd9eeadd8280c5a2881", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa281d4fba61a1d0acbfcf4060632f66", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3aad558d328dcf056dc505b8b643f217", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67490b9a91dcc6c48009f9c2284d70cd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f64b3ca146851b46f267be6bbedebc24", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6d682c148c678fbb640793e33709f39", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "331a699a2fc63cd8719af84f87482747", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bb0dea79e0de649c5d4eb597f3e93d4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "069f83dea44f6665889c987f50a3214d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa9d2e8cb322138bd27466c50593ec2a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c08643ae10cf1f8d9bab0f46f84943ca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b851cc2958d9bf2835ad85605f3290f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06b7eb54761969a8f4c59592734f9027", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b185dab391fa8d799ff5208b7e71b1bd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "484d7082c9ee44eecca03da765b55db5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20c4d192616ac6e8eeb705901835eb75", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee08641f868ebfe2fed4cde951051901", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea0687be1cd26d9c933a22760c160ba6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf28bbfdf65cfd33fe3dbd2d2775c8d5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9344d990864a63d277c6d575c41eaef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86bb39dc6cb7c5266a56850b67591739", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b02bda8cb65941469a2184b1d919579b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c55355e8968757304c68578a109683e7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b12894491a03e8605c72946eff1470bf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9989f77bd04cd97eb58dc80aa889eea7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a65a499b247eb66f98745018cb6781d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "013b90f344d2a820ae04953c39e65a5b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8049c17e9ea03a7524f6654b7b4c37ab", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0278f5938c786282cc1b361b82e524e7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c9c6d01d2980a7c0c1ca0c69ea5a195", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f82874cc28f38e98fbc1162b5309d30", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0873a30ab1f13f52f3056f943ad7771", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f65b31fb97ba470ea3d8ba3ec3a63650", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20622bbbbd7399a6198ff7a8da6ceac4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0ff11873f89e34dbed8f4b11823352f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6c630a9033ba082504b72b5cd55a214", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d2386e093e9067344c5197af3163541", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "913d823afa7d8679c772c7fbd9fb8cb7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfa8b0b7dea3ed2f74b0dd8f36fda217", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9eb07c28ea9a02c20c745c84a9a63c66", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4af74926e53ba8e6165c32bf77efdd11", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "988bf8d9673306a597a4ff4ca746e508", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60020c646feb4baa4ea094c549d710e9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9396e6b4b05bdb2831c546077c5e942", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b5e4fc4917c760211364a5778637b43", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e8d2f9d8d033163bff58bb37eb15422", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c5508c5fb16f3b63ff85f007a656cf5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cade72dcf30c2fbafd1d281da968611", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a16ffc78c5775a283259cfb376a420df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4df5474f1e846c9babb6a541ad198641", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e05648052c172b6e13770d792af60ef0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17eeb03463b2bb4b4cf4d2144c7cacf3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d676742e36fb8dc6d9d8c9c040669f64", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6274fc164b57d15de1393c89a032c06", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d770b1db5713d547af188f36b3bf596b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5686a1427113f5fa88fab4b072c124b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8113240356b0e093ed40b4ffe9bd63f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74e36d4d6fec12267c0943ce7340aefd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a921bb4fd047e51c1e550d0f4abd34b6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d802a7937d10a621e73580a3782d217a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6eec47ed7ed94044eefbdd893433379c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee915bea21e68e88f67e44b272143c2d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3df1c85a4750b9803a71e38a6ebbf000", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46524cbf69f8a4b91b4f06fedb4a8dea", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b65d2fbad06f01fdfdb972797bdc2bd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb75bbf38a3d9c12ec94471c7da2bfd2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85cc27da7d495601f018e41df3efe010", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0d7d3fc65cf522fb08def8ad34508f9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31a5ec58ee0c024c8caab1cc01d34d8f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "910a4d7332fc94c6b3c267a8189954eb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a8ec799c5c21213db38575388fe00c8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a61f9732c29744de4856ffed590d386d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34e1ef2c6652c26ce4ca8564c174e54f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e47b1a5a98d2d995dae824bb4f2ca5dc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de819146d4f862f0d36f9d841b5edbf2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "291bf67834a204d5f00272436c056fef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b365d7482ed830153eecbe976d9524c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82335b31386b46ba904bedbea084ae3f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3abec0d0cfe71f67d632b739e9536ad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9239eaadb1a8e9fe41ae30b329c4d61c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5ac0d76b3bd8ed79ea7c3a83ea7b432", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc69ea05f7accb33fb157aa8e3d3d88f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71372a6e899b9967a12997539fab4377", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46eb27f74e79b87be5cde7c759319b28", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11fe9388cc914c605d3678e3c625bc70", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcba660fc46b3da6d355290a5f2d8fdb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdfbfdb69349699bcbaea51bfafdcfe3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0510dbeb6127e1c37979cc6fb1300cc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "575c4eb1521435be1e0e199a8603eb4f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07a95e5f43e98a050d189bd5378c9628", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "628d2628dd94d7e87e3c417979f56b2d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4afb4284e495c13906404a365960222d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eba2e0657b74f2d0102fd3c1c484dcf7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d57c61fe9f1a8205435bde94160a13b1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10944bfc601f618faffaee86f84f527c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8611705259c3fb62a3745b6d2c4ca2f3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a70e3d4d3190d22375ba7771236f776", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "147a365e0d8219c764b9c108f27c6fe3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfa8754cc93fe84b7933db2d18249aa8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c786ec911bd08a208c0aed83597ef16a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77f1a6a7e7c964b6285c02c145a88ff1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7134fc717caa669121b6c9f2854f4b83", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01cbace3bbc46613973d922eda82164e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15db452de075d77903ea216b071e0451", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb0fafc63ae782ed8211aa0bbf5c9512", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f64afb6fe57c2a6ba7564b0d0eef59f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5cb3f82d893d35ec6adda5f8fc1bbe2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0ffb78b80d2b6a55146c64e91f6d955", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f87ab21678f966a61c3270149eeb9435", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6a0cce1aacc5eb1f1d28f9c2265ba0b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85a114167c4d21f8c29f764356fcb968", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ac61da1fecf2adcea51a38127325a9f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfe75e1042e2fa8d700b7c82eb2f6509", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94101ad612d604187c0891d1fafa83d0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a04e09f81468e42014290c4f721a74d2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afdc433908b71a90e15171ca2c72a7b8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8ddb2532273837898c98ca007911958", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a775fd45be0dfb9617ab7db99964f385", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f2cc58f9eebe3a836f10efc38f4a78c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5180958ecd117f36ca6e5178c4029755", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2949b3b541e95338fcbb73a7c70c5f7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1634ca4f6859533badcf785aa5adb9b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34356872bb2f5201b6203d80b494059f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28421a9716461595d72251a0c71aa9cd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3298f6296c1d9f1d29fc5a528a357edd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cf407bc3e90261b0f98aea9078a7d5a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb2310ef2c0009bfd5c079cde2e059fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f60036d154595f0cab491d1fb15c7dc1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.24, - "z": 16.7 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8746f34e642bc29ca62225d8ee2dd14b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bedca0903f3caa7e4e116c31985d68aa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 172.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "127cf0392f6d53a75f49c31c120d1d7a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59bfb79796339f3cc654df3d7db261ea", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 163.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef86f313c3f3c5a7926eba7b9062aa89", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03a0f84ed6db7959bc478be359476078", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 154.24, - "z": 16.7 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95ca1451d6e5316c28255622c839fe08", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbfe3fc79140ea16368670ef88700939", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 145.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10320e0a667f90603ab544d84d0acb96", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fe0813b2843c7aa7c63880916dd919c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 136.24, - "z": 16.7 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97cec283578e3214053f4902861626d0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adf3f724d364d9e0b9f0482968f881c5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 127.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39159284377a2481be23628f877a1d7f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5daa6a3153ab76acc291428848ef7040", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 118.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "915171b5ac3ed9f4ff5cd873658fb6e0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e83ca6c5c7457ec39565fe8a1a250ce", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "098311f4bffef377e0e619452f87f85b", - "notes": [], - "params": { - "message": "Adding Diluent Sample Plate 2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0892b1f37c13d73157de63ace1618e9", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60f358cdfdfe7d9bb2ba98b8b17bc4a4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 14.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffd0cbfb6f39368572847bd2e47593fd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bc80ddad853a0234d48d3ef9c1bbdb0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d7daa15a8037689963dcf28a0a53800", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 14.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ebe20bcb11b1ae23d4df0617f2d30aa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 14.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6bc39797450f33ce9da0ce7cf174eac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92b576e1203506a35827f6b41198c243", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6b8dfbe0bd98624e0dfdc639788673d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 14.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65e9a488d773199adb630892682a2712", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 14.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80e97d2f4b813fae16f18dc3355d41db", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "208c2404cde62f380066ed02dce1ca65", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8cdca38069ff3e62eaea5f72f4465e8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 14.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70a643fc35930a5a89e706e10547a869", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 14.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b8157c811019b06d337b285ae973387", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b7a4ed34d319ad0d294d21043062240", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ee5b460c552e2bc8baa48801ccbeb0c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 14.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec43dc66003fbcf03dcd969510414d7f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 14.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15177d1a2b7c430d3b22e74412c3f796", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7f438d99a345c9db3fdc9faacba5cab", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0851088e15cace3b1540bd37eb70f204", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 14.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16e9992a57b18561d2fdafc2ef142a1a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 14.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd0a506becd4478d3a2f10c39e49bb4d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6eaeab37949b9bbfd492014ef70d77e9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccf5d570bd68750e312770203004fbe7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 14.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11ea316bceac54439145dc615eae49ac", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 14.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b08602f4e68f4774594a11c83231a3d9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3abdbaaec3dabce1f4b3ea395695d29", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bd84dc89935aacd59b3302ea0d84ed7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 14.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc908f2e8ab1a5f536b90bbada5cf0cc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e244bcc8d1d711e5f940af87e154457", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "247136ee767c7389b39b444ce2c0c7a7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c247b2a2961c854a05b1bfd2b9b490eb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5ba10caddb6330bb9a62152b910a88a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 23.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e5ec14ab3b117799a94a543fe99920d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b723c633aa90a180ff5d2ec0efc5d9ae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a8c2113640bc3b082b5ed3b83b146fa", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 23.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ae9d14d64f1a70e418b55ac4b9a4982", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 23.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcea3479eb5729a098cdd70b9b3c8567", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0200c3b33983f8cdf68d843ac6a98219", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7647b927fbd660b4d93ef52d3d9a24a0", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 23.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08a4805c5df45b7b9aa21996152fd89e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 23.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71ec2f49485526a7d74386eb32821f9e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "355f41ad4612df033929598bfe93eca6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee7df711e8a48e116fb70faac12e1df6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 23.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d55632229f1bbde975845e2dc85f621a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 23.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "653d7a796d5fdc7cc0a023ac0bd993e7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "582422744fc333f89be8c2a50b11c7ae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1eb703cf87d6475854cc922309c24140", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 23.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b7e05e1cec0be33690722b40b38ea4b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 23.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "281abed66c79058add2167747366bf88", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec70dfe3466b51e8a9fcc8544360f59f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de8382d6aeb15e1cbcd846500d7d629f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 23.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41c4930513a2119c957b4ab280a801a9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 23.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cc92b012b5b6fba0b3c25443d825bf8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4945e799bda27f1b4d7ff26021c86d4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d694d4948d11276cf76081d658d9dfd5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 23.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "663f06ce187e155381b0646910295756", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 23.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "340bf27334bb6bf9d3804d20aefcccea", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6ca1501081ea0e654a08d26785e1c4b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91d691beec3da0eb5401928b785e2ab9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 23.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07113258e53a56751477670107e1f7d9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "498e932c95727e5c2d48a8f07c12721d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b27862b3d8aa527a86fd22dec3440f30", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b485322a02ce9492be4aa6914211127", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35b441137385a787ace7dbf46b21008c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 32.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07de10c8f9deee187941ace01b1a4716", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1684be8b678b8995934a419e6c88d121", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46060e73c9f153a5d9d7b36895a6aa9f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 32.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52f7cffd80a2e5a2c38a903e3f7ab7e3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 32.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a60d137b101048716a16346a7011684", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c56c093e29362467c16ac2758483f46", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96aaaa9557d3b1867bc77f93646caa54", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 32.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71abb1627ab6c409a76fe23224f06495", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 32.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c90023662a856c2fcb743eb32457460", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d2dece3c2ab738099a0e01fa8dcd0f8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07c7ad7a84b9d8389bc446b4ead43910", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 32.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "534140b60ac062070ea75aa86d6e124b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 32.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8f6781e85955f80bac49aa4951ec193", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da15ed1f13f214077252c7d6c8a6767f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04da87c93085802dd4fc819e6e715f84", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 32.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07855f1a9167589f555f881ca77eafb6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 32.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c340d77ef296c53d07f53576a6e46fa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c013ef6879d12a1fabd12deba1333a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80f38af90b4c666d4d2341b44d6613f6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 32.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d614ae7f4c935b0d17f8172f0d6edf7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 32.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c47699ffe82a37e70c01c69e97b28db4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38716e8e8ad4f77eafafd22bf67c144c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6b73a7d6c140431f03e04a9aefcad49", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 32.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb67b70cf6195f92871e9f613a360126", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 32.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "890082aa00d257f9269494d4e84518b8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e558d0f4d338098f3adf846fd67f786b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a20ed940111c9b216d3691dd43d4846e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 32.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0bd4944faa795fb27843d29f106ef812", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b04e7db5a18dbbd0e9b33d34ef208ee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e859d8d9a6df2b0d1d1d95047ace01e2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be6285f19d7eee9af0b5443a04072874", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e49fd589fd69b519f0841f57eac52b6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 41.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecdc57b50587c2f1c8e873d75912bc43", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3304b4cf294a3d249153dd3be000815a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d12602408a3554ad1c88c1e250cfe2d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 41.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c625f8b3d472189dc071f3d2b2d7be96", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 41.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9df7d4240364937ceeb6e65c0631147", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "497d1c9d655906b443f030f3734d7ac4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7aa3185fc642c61a40526d39927f62e2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 41.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0059fd4cbc3d178936444da767f15e45", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 41.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4913f22329d6785e63f7f72f808253ac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f690b1e6bd85afc2dece2a7bcfc0234", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fca4df778ed890b93e966baac3381e5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 41.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff4fc66e65730f7c1e7134b5e6045901", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 41.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c00c9129932fbdbb9a508a4865f812e5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82470aabe142bb6bc69b598dc4f4fa23", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7994cc300442880dffb057bbe3f65712", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 41.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46134cd8cf414b90b2dc0bdfe5fb986d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 41.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61ddaa6a207d9aca48127ee761873683", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d82397c876c3341d6486add004d3319a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48bc8457c0f0ea5cf08764a3ebe0c25f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 41.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a22bebc89b30aa764814e03131fd5c85", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 41.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6bdaa9ac3d57e8770e2d5fb825263e2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35a4341a5ed01f7e942993cef910f558", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "334fe32615b0c9f7a5286a371d959f84", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 41.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be513b08d50e00c354caa752a7adf871", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 41.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "464113524ea14f4169ca6eae42716192", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acde5c0b9a9d30e866b9804fd400df78", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "caab1d94be524a01e0cbe14551128c4c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 41.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6844e093cce0c612d7a4a0ab90fb21f0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d41f45c8e3f0601e431c45e35b46bef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd14c26d77bc785255c1f839b2569193", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0eb35ccf452a9e3a0543c2b2f68a5ddb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ead50d9601a7636ab5560b20ce57d1ab", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 50.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d937fa0824d8cb3bf3f16f18392d483", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15efc7fa5a045a140d85a59b0669ec6d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afdd1804cafafcdb98b3bb01b202fdf6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 50.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "592458256630b5af21ae628213b69709", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 50.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f8f5db2bb75fafea34eafeb0a909303", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7c916295ecf0c68b17179bf35257c2d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "479dffd861a6932f7bf2908b834e64c4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 50.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdc1a09d1c85600998c3662ce292bec2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 50.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61bfa27106692b310d3a9b15afde3559", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ce512f120d609b9186c213b34dbbe88", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42a6e1fe2886f20a82ee03005991bd49", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 50.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3155cb99b4e2d4c6cfe878b9d23a66e0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 50.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d91df4343e265733cc7dcb45a630280f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba61139731f204a001678aa1adfd8e75", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4689deb0e1d424d88883a45e30d408c8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 50.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5619aef200d1301f05f6a1a99fdef263", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 50.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d2975303e5fb9f5df4add413dc839d8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "738981074cd404c3d4783a36d919744a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b57296a6b421380960e48fce60cf2877", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 50.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c91282ea131ff82bd6e9cef057470448", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 50.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbf8901db9bcd3e7f0a9139928870a34", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d470e7a171d54c810c36a81d5da63b58", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "196fe007d513c8e76fc9aaa5f86b779c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 50.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbad5ca4b8f56f1bdd11e17d3df9fa3b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 50.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "deb2c59e0c02ee79167b29178ffb682b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7de992efd557d2252942fa89f026500a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51fdef73293e1aff321cd38d41bdb626", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 50.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf9131a9b92626c98c92caa0e9791248", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4799d09976d6e4094e348a0b188c0a0c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aead11565319e086594c1f6f28cc04f7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef83e7b098f1ddd122887ca860f0c26c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70dcbacacf2194f0c6f6726024072240", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 59.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2df75f19514ed4865ee02039cebda44d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3e0a918a65cc79cb9e3d27a8f34b514", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d07f38ad1baeb38534e59fea915a7028", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 59.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2ab88b41239a121fced7c8ac1f8f737", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 59.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e08e83d2bfa6b1d37b4c3ba8e4c99df4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "295bfc98221765bd7175bcbddcc1c25e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23301c30d63f3a6625c91a8bd318b15b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 59.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff92364ff8ac1c08abd39aee3a16c951", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 59.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd6d78a9ff5024977bd5025565ab2c5e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1953e4544338fe80c0ab39611b9eb8ce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5a0bf5f912c338832c565390bc0aff5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 59.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bd9912f9c40cb014b76bc92d055e509", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 59.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da61938f684895403f9f62e24cd86029", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dea20fe5193a3af876da6fc164b0b6ef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ab2de6d653849d538e1c5a9064cfa79", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 59.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a27834e0d53503d79f90b06a7a48f9ae", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 59.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fee76fabc010d0cdb5d98ecd753a21e2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f180c5082cedff430aa775f1f559103", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d16e5821f550b9f91163e437e754ab6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 59.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c7802e40f468d8d47c17a9bf1d720b7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 59.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43842ccde3d89679d1b25e99e85b075e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16cc8d7294f0fd4b93e2f8316ad37aad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "beb023c4d9ce275f7ecc95c6fdd3e7a3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 59.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dcbe0fa7b56e71134df59fcb2ad3101e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 59.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "230bdb69678d6bb86cd796af27f29f35", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9b81d6177687f7c691cead44b378973", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27875eff9b62d2573386acc130e72990", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 59.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c07df80e63dc203258d6e9009dcb25c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a7bcbc7a571c264c8487e4407ad3af7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adb2fb1456ab3bafda40aade3f306b1d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "413372f66e165621ecb2c37faec9091a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1c5fbcd9c7a6ecad392b456c3c511c6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 68.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b79b7ab4e52bc092a32250cdc8428fd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9792c1085724c6a50604bb1e49a212b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c95d8acce944d8d93cdea3314762568", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 68.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "934129048144696509abece0dcb1690d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 68.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a01ca9ae43d34a1f7ff6c56941a54c43", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82b05c22b41190e3fb5650013d69c634", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1118500d038e24c1cf466c1ecef392e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 68.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "131dc135664694f6a95cc5300fa79a6d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 68.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3f41d284b2f945d2158687c04675f6e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ded184c802c2fa1562ddbed22cd37693", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e598af19cad6c1721d5bd9789866cc24", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 68.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1eae2fe99b9478a66e1446cae4b7bd2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 68.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6ff83e381e7e437aa0c810c608871a0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbe8dc46af239675de193b0ba41d40f6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f68c84b3c46f7e2f290659377d464e10", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 68.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20f9270a8e65165f3bb5476011a722e8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 68.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15575a319f5927d0c9a1c87af3d54f53", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "764e1de09f038346fcc9d15f4049d81b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "415dd5f25dbe6dcedbb1d549b07bffc1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 68.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e499c529427cd9164f3b0d8c725bccfe", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 68.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "960bf4a21e0d034f0d547f3718b70e5e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92494ddf53d5a89c9feaff78876cefb4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00dd83ca334f1b8d32156b4e224a4dd8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 68.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af8d779b1cc2561d2362aceb35af0643", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 68.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17fade4d5424820a91999005deba4849", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cd243598412cbbd286779e0c1717816", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "354f22bbe6c15ddc417e821d25d3781c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 68.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60ac8f6ebf045f63731fa792ab4b9712", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d330c50d920bddd8b0293c5d19375849", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c685792e3393c7ff14f8e7945668614d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "376487d92a7d10712675cf6d078c4f4e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8386c7e8d096588c4106d2e4ad767489", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 77.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "726b646c58fb8bcc03f8b51701264169", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5db8ee7232e45dd178c1fa0cb831b5a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d09bc16a3fe0387a9f842f41c8cb65ca", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 77.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd78579d44edae01185097fe9fd8c737", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 77.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ed2ccbab659d8abd4bd7316e1623960", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37460390062822a5f8bc8868c7ca311a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e7893865517396bbac10c1332f9f8e2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 77.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c464ed95a81e031d4c215f1918bb1ced", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 77.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bc117e4a7a20742bac7a3adbea7b129", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1c5282af4da778c6856d7077074814a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e1c882690a15a228878ca13f6904327", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 77.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0859bbdab6248c2fdac349aa75e60491", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 77.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc2b1adb0f8ac609b82ded174dd2301e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac82cddc408e8e579a7e784eb1374e03", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14a553acbcd68cc53a002e6c38fdffa7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 77.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bbe6fe8aba0ebe2ec896b423118bbfb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 77.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a03d6ac259990f97e14ae9d0facadcdc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "262d38d70da6eb5548a8a8e7de8e42a0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a3858b63112c686153d3b1fcf22ae5f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 77.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a82b7dced99faf72ca8470d6ff13a6c1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 77.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce19006dc86ae23f37716ce37b59db8c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a2727788294d88846aefaee3ddede9a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "154328561050712196966573a4e1398c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 77.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1a66ab60d97fc776af46695967e4258", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 77.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3b850bef8ce31f477c052c47fb49036", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1818c1e6429d50a01d5c77e6b56bcd5b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd4bb347645b838df53a7e4eccfc4eb2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 77.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "297ab5cda9efda70ce9f0838475b3659", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab8198ad8ad3a1aa187ee259553d3d99", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e992fa9fb7fa8d316208ebbc78a5dce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "590c2f3b8aaffa8480c24692aa682943", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48f8351b4b7a5b3b671c7e8b39a76efe", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 86.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f023a410a5aec4795d00a40d633cb62", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98f9df960a2ad00299f5dc4c5f4dc5aa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24b45a451f1505c53755dafeaacfbda5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 86.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca897aa98f7d81bd77e82965019cab11", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 86.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71b1fbb9f5081922488f3317d94229aa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4819c6a8420b78c948f9eafadd6918a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "852abf8f345316b5dcdbc04ab278644f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 86.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "917a42b12a0bf638ebd366e959d6fd11", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 86.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e15f6c05d77dc709597cf4c5d91a539", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98a9a170dccf4658d51d8a838812f4b9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de7d698880f5989baff5292f5fcbce6d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 86.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d5c1f47ed8a3bb4d6f3aa903425b5df", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 86.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d46a2378fb55fb2386b7ab66ecfb5c30", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce5763d7e2109f8e2749bc94264967d4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55be78595300f921268bf25a82d36ea3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 86.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85a212379d007699e43f70696f86836b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 86.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1760fafb1a2e6a6b7d1fb7daa7c17ae6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "176eb1459f9182cb02869154ae3a335b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbc30b2b1a52463e0e79fa580564d3c9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 86.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b839f855005836dac53fa3140d3389ee", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 86.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "280b0ba0769448f7dd80507a7e7d15e6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae64f4c4eb1351a983f9deb73461ed47", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7cf8dabcd572a25091e6df6c68677f3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 86.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f5a7c85f7ee6879e7b0ffb018d4cf67", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 86.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a697bb55a724c1650d374425ae83bc9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f52c053e8d419b3bd4bacf416c7a8643", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b529e98a5254c30130bd7eb85f1d3438", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 86.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80eaff6273413c67c40b7a6613e7cf5f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98eaab38950e7fed421d74c2ea277d28", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "995f7bff51bbd26a2f07ddeb34b77abf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fa68be7093a4988208249a5248646cc", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e914117e9fef5e9e7cc9c4a4b8a24205", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 95.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f28238ae9c3d6c0a14efe190f91a30f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "293b61a7e9efb6357ff09a8b17f5d786", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "884b4e6c02353c17a1aa73cd660726a4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 95.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "046fde6f676e92db1f5121855388ac33", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 95.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ecca9be5fa92df0f25e7e75b68bad72", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14a19f284fc11b1bb217c38326a6b996", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdb496d22abdb1ff0a52d59f75e57d11", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 95.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "165fa470873f70936329a7140c34d516", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 95.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a31c0ee2f0154c2ed175ccb97d288b00", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "108be37043c800cf70e0527f5fcb5982", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cac3a06490244be6ae3bc7164a9b58a5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 95.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c9175330d1ee885788e3eb6a680b87a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 95.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dc374b33004e2d86c02037a6013bcf5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32f6ac2ecc5f555988556f56bc6c18e9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7a0a51c7a9d32a01f02cdaedfb29aad", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 95.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "369db58720148751961244061d1e0c57", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 95.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90f7892f75e38f70e56fd254731f153b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a72fb7ff8b09a9f652fd30c8d5ead25", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84e8c4302b72c43fde4a12022be6c203", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 95.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb84c10308ced9441eae0e0b29f007da", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 95.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef687dcb3ef99b6cc221aa56d3ae9223", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78a1faac6cbe658cae177304751c8097", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "533fbf74baa6e699686fa8da425b850b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 95.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d184863242c15c571c1ccf8e5d5af8e8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 95.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ca35b226fe1158b4c392c254951e9a8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "832d80f46d12d0d2cacf51cfc69c6a2a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3e5aa4f4ce90cf33400ffff1531e740", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 95.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "832095d97de5557bbfb75bb6ed383faf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "581f633a28a6e82a8bbdd0057c94737d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fda5cf0b4fad88b25c6daa362969b3ce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24507ebdb04c9ed60ce237bd72a0aaac", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42c51602d109df1b8d38b2400b39f690", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 104.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e73fcd87ef4d0033802e2d452bade0f0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd1bffbda5da56bd37c59b77b4ca10aa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ea27f0aa01185f274340da2db456137", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 104.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f617bbb377fdbc647e3ee7169f166297", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 104.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ce1ca6e29145e72b477c2769fcdecc3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7a32e87f0942d92c636a55d03d2f11d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d2359597a5fcc4febc1ea9b7761f808", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 104.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f80cb8028247fa3ef60c8a3270ed4c9a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 104.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82babcc7c5baf41bd6f341f982fa2b85", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3599c2332566536d8613d5d78584f434", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ad44c2b30f11fef2554b5e2abc0063c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 104.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "063126b65ae9382826e302dd6219a650", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 104.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "824fa79c04f1a5b0856ad0861464b351", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9472eaa0053f47988f3f6afb5bc36fd3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2661b662ce3d08ea1e62ec3ac1fbec05", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 104.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e460650d01c835943ec170fa574b151", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 104.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "455b26c27ca3f237ee0e78a13e659451", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43d4cf39eb7ea4c63176869bcb2a4ec3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38ee56edad2c68096818d3bab9abcfc2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 104.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b567ef61fd59675c7ba84c7e80ca3d5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 104.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7f38e680d762ca753c25b342d9afbcb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c0f17483bd68ba42f294120c4c6b18e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ebbfa7a483f296b8f37ab373a1b999b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 104.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d61faea5712cca8318c0ada57427ace9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 104.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f30f1c2ebcd44fd8ae13f381297977f5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "487eef249f8dc2185b4ffc25af6f018c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a69fdb446be6fa3f13541b7a319daa92", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 104.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a16a7a53d20b1649e3b0e60d86263225", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7da493336c4b2e3667236e6d07d6d20", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a34721a58fefb1d0ac958274b82ab8b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 181.24, - "z": 15.899999999999999 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72f854149d16f5ee6034e0ce17874e63", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7e4b2d87b3e80af7ff2b643a83dbbd7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 113.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "033a7590bb61aebf7f6fb02b3955b513", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26cdcda178ade46bc84efbf23966d94a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 172.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf6de2fc754409d922439d5c00826778", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 113.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4431107f3b060e151823d9b39f7ebaf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 113.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55a07f46a7b52edef0ab6c679000a4d4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbd75296bde269d19a2ab39370ce4dfa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 163.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "545972c8c13f461f7ccc63a62dd9a1ce", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 113.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "452e75262f675c60b2c8dd67c4e445e2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 113.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe41ee58aa1a1ef28ed3c904c74fc2b9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1cbe04d8383d0a1cf8a821c43d0734b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 154.24, - "z": 15.899999999999999 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef7fe9b013ed9c4efab57df31900364d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 113.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19e7c42253aa01c0ccdf22c85c9d5d6e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 113.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24cb5675f420609ecd18ad0cac7c8437", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12359f05a2c29109cae8ff3d9db468dc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 145.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa2f00e739a74141f167dee833aabcbf", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 113.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcbd966819e50fdf24299f04cc13eba0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 113.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35fef9292bd2e529707746bcb613802c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e6fd67bf297afe1dbb8347dd3a3a74f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 136.24, - "z": 15.899999999999999 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb58b03e11e296dfe98e145588b3e2d5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 113.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8849a9e1269fe70c2b82525e3df25d09", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 113.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f37e34d592cea434ada3014a6b99116e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42fb3efe0965f268c3a70e6d4d46d95b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 127.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a46d358730c0df02ecdd8dfbf309ee7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 113.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd6fccd32e8d5016a39f2479f4797386", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 113.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9932ddd4c045effaf37e60ce583462c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef0ee5644420d7f4c0238999a5cac341", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 118.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9de15e5ec2d743f49068d9efc15d8c1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 113.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34b5bf346d750a729cc8163f3bf911fb", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "008bae40aaf9265dbf6b34068ac4196f", - "notes": [], - "params": { - "message": "Adding Dye Sample Plate 3" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b43755c3ed286faacc5f04a53fa2bc93", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb97760ea310b77cbc8791f8fc70cab4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12c6b4f59a139baeaa54007fa98ce79c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5414a946e1cb5ef3791aa7d8aaed35cf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6543851e766103efd802a37085dac6a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22a6f53a5e17ec49cb4150a38ba692f9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10048f16b4d1b7332c50f44ce44be497", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcc9a08ee6ac78de6331a2e8201284ca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c0d10f8fcd0c9b5b7d2628265e8be2f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dad8795b0f64fde2a372d7a178693fd4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72c4a461e05f90cc8e1531d3ded2f0da", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb819b86f2a0ac6c412ccb4ee90c8bdf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f244f19928d664b72d97aebe8d437c20", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87a07e83ed5b62a5f9ca1f9744572de6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e7299dca5c07bfc9780c1e5bb89bae9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d205c1a9431836c40b5bf1d05f6b52fc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fd4ac612d6826f29f6adfc4973fe8ab", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4c1e69ee0cf68732a5f6c47a4be5c5a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "83a1f2e7df170573e4a4c871f79f4295", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fb2acd4fdced18c0dad4f2a94da25d4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74349ab2d975e635636c6161eb49116b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d8413b9056d37c17196374b8fa45f88", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5815c8e6c3143731cfdc879528223fa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "210c4400fad56e0407b8d2f335f9da25", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40ec66e06f9d20ef4571760338e5484e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd04cc92ed9106369601c3daebfad8a6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f2a0288311fb5f4de5f12f859ab11bf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42c79f505d29967a231f6bad16faefc1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b3cd5676e28e0d81496fe8c24a5cec8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5ba2785ad57cb1d619cf8599cca89d7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5daa8c7f38974a5d6f18cc973fea6a11", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f8ffbc57dbbe31105cc7bac086f4166", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bbbb8542d933c4e34e600cdd109b38d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "747ba4a290fed326516a177f561ad58e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86a5a4121ad6761c167ede7c87ff4bca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "512cdf5f4eb6f14877dbe6902204e258", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0046c3b75a21833f543096d1ac44a809", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d55b5f9766076d4f214a11a121858be8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31443a2874ebec40160dcb16340e8e75", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d2a1dbb3648bd22cff2422da7490ac5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dda104fdc7d0684adb5c50dbac41dd70", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f0547813a49c0e438b1edbfe6bb537f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3dc0a67cdeff29a84f085623461607bf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a82cb488bee1d881daf63754ae18ee2e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4079d6357b74d4762b37c771d4f7913", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e872a2a58a348408ef0d09e3987eec07", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "426bf7059b229b182f376cacef7ea6a0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "938a0776399ba8ae73d78a403343a07a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ab573cbaea62c34bddb34ebb3d57fa9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c81c95a28d53833627694657ea63d311", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b479d1628afd29408e43f17a707f9ad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "374a9754f73ac74130351e17925bbed6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e883df3831800a6e14c76eb8f9d30196", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ec062d9c213031dc833394f63aae612", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "024432718a19e7321083f47eb22ce936", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0075c1ed85af6b9391ba7c315d139090", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3edc1b2f02d8e1879962b1b935103422", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "837cf6c8fe793f063108f0bb3de3f185", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0da24e5b4ea7097611cbd7ceb3ee3e9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a768a0d09b4187637f553a54fecb669", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12af335e331a7898512cb32805e09c20", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b5c6e8cdd8a29ebfc760eeb033f51f9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c383c5688514e639353680502903be5d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fc18f6431fd23b9c876ed24ec98aba4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f1072f42593883a272e12034b617ed4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5dc2765689bc6a0e8821b96348226d30", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8037e440e625112a0e602c76d6afbc4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1490a5d9fed09be086aa0561d28dcab7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a7ef770d956dacd40bd0d44d42682be", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6e2deb792e279a006bd534499d65dd3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec26d6b2e824c3c37ac823fc907a7488", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b3bdf0599d57ad79a814a63e47406c8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "732b7c1977fffd54072f28e20ed0bbfd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6601df16059241ec445b98d0113f64bc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2372ee3bab11cf96085b09ea4b2436aa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c44831de84b8ac287742fd2defde329d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdbed0e808b689f2010dc83c3301cba2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "221f6663a05c55fdcb3b8b1f287ec8a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7604c311c66baddf36a59cf34e7aaf4b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c90f506acdc88fa110b89b2e3010381a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "950dbba78e81c8b5829ef869e0b76d53", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfd606ba9a3c7ae5a21d19e256bb6ade", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a16759225c580e5e8d901817ed912dc3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f0595d51f3cbe2d6e110c13421cb975", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8edf7cea4a9e21871e2f2f37b254a7b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5870ebca78d17b8eabc3d3952c7e122e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ba02c6a57806d9c50c64b642db1cb20", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68b226ebb0473f7136749b632d87be7e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f5d26587bc4342f61cbd5262abf0814", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9eb928c0510d18bdfd385cff70077d3b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dde947740ed0fb1f67966e30c9568d8d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8737be3fd5d36fe8a7359495aa7769dd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78acd0b0725cc8c895da3b076b81984e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0378098cea2391eb4eb770a911e51e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17319232b7a30b7b91beadfcad70dc64", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3cc82da4a762da8b7b7fadee2181b80d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3ae3588fe5aeff403ebc8d4f900a72c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13e7c01958b6fd3d1db7c67d856ca5e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef52de089ee6669b94c9e844a1cf787e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f28b1c261e528d06faa7cd0c2fa1ed0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b789caa6c0fe29d49fa30656721107c5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02aea70e5fb1f607f17efe2d5ed96f98", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8033eae23ccfd1af9ca486bcafb80b8d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54c43658bf9888abbd2aebb60bcfe577", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77bb8bb7073daac58d3fc7eb7fd924d6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f233ff2d9a68140799426c77f86876b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "621d62971dc63dbd7f2bb66a7c780686", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee4cefbe1624d6bf790cc0c870b12fe1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb9d70b764ec5842e092049a8ccc1f8b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a13da900b500eb97203160c5abb578ae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "788724693edad2923403bc365730f07e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46b9a87387bf9213bba0f63d7eeca2a9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e60cdaba5d4b499bbafa65bbeb28ad8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4de37766b859f7b42bc9a846f597a946", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3ed6bcdd2246f218c5b3255d7dad1dc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "942f4d2ad8447797ec7d02f76f54a087", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f8001414f679c142607bd4a3a997178", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5cbd045d0b46259e01572b51a468328", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7192e7c80e270591da3297c54a0f851e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51dd7ca1ecd8e60f51159fccaeb846ef", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82f7fb6494272673169a4796e7600155", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d88f00f72298104e3dbb058b2534865", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a67e12976b2ba158c32c91229f11a5e1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97d3820b708d61d1dd3620064fb46271", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff96e0904d085a7c5d08ed7f3edd2787", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dee189cab934ee1727006ea96b23c2ff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46b550327f520db6ff9d6cecb6b2b90a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47158c2f77a4b17416c6c8598c2a7071", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fadb10941cbef1804950765355e42ae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89eb1faa2c946eb06b8c51e291a95ffa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4d2f1c1fa3dcb8bce08c7bb45fe1cdd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bda6a23c7daae1e532048e389098d173", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b9f39fd2ea2487f0e476104d6355a86", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35757c5af798fe3935323e7133b67029", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc90f6eb707c0e7691fb4fbe7e02441c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42b33b9f2569c011f65f2d1516e9debf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "720b10f57d1e5c85eb628c37951f7820", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93b7841101624dcaba41f395cdf35c77", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c60953cf6cf6ad5c38c36b552d1e5762", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fd2fb78578ada801d8fc7e9af76f801", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59da13237452a54b1366b4264e74f2b9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "501198f2f2bd250f899976d2d4ffc952", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86d9444826952b0068c149fcf221dcc2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe7ba333e3872eedda577d1e24032062", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe112a7ae2938b38aa344e1d45631922", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f5be2484742aa46c74712b7c0d30056", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "450b3ab69ae7212e3627f37df3870596", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a305e76c5aff71aec6be376e50ab84b4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bd024c5f3aaf49469157b42dfdca073", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12249f779de225ea59a0003e8f5e33a2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee39fc28f786e8f90c0a0ddb3b08c200", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54549caa0ba69122346cd2c8ab741835", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adbf90b6de88082df9af3955c7e15a0f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3d4041c07c7e7f9115701fe8274837c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c857b3e921a108b303a9cf175ec04894", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80a46f42ed414a57d25728cecf868ad7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed559fa0461eca26f04e83117b5ecdfc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59c5ed7622ee9d129969b33a39c2364a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "729358c44340878ef5eef8835b8fa453", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ceb57d5b1beb060e314b0195789a246", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d04e1fc3e09dea69888fc5eec4fff2e6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "499d3d4a14f1acf70e8913c303ef9f6c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92b54123a418efa96267f228b1ab1ae0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "272d5d6f895a949d2c9d6400b5ff6b5f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbf1d65cd801da75e2a8f9ddf6de169d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc23183b24e00e9d8e1c03d3935d8ec8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2645141d6c3be9899988d6a135b196af", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "828f80e96aec2e38af80e237610ffe19", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bff13473caad08253e880eaaacd354e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bbeb23b308ecd34a031709a54926b8f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6141dc2201196a13be5e0e52cb4578b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24705a8c5ae42cc417a7de635a40b5d7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad78453d1ab7b580503a3f1533d9adf4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7d2ad4c3b75e72436ee67ad99bbb1d1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aae751f996db3210beb8d10d26720e59", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aae5423bfe5139a22fe11a52550e1cf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "889f68250336b515d8de1b110e205de9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91fd6cd3bef9eca296dbb4debe55c594", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 288.24, - "z": 16.7 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a299e57acc0103adb7968b702c2c065", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bb85d7b1c5b1ef2a42ea6141c2266c0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 279.24, - "z": 16.7 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8325e1af6a1e7aa2c13115634aac4983", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41058a3857bf4905a8476aba54138567", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 270.24, - "z": 16.7 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "053023a79fb590f59dca13bd0ccf038e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9ba5c7024361db6fb8009b683d92ad8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 261.24, - "z": 16.7 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce50ba817fd5865dcc937f97ec49ea0f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3cbaea638586732ac8b4222e0af137b3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 252.24, - "z": 16.7 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "853e4ba2d5d5649b67a0a8908df00d9f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84223590a08c49b5d944c39d1c5f207b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 243.24, - "z": 16.7 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b77ace237cb58f85b74f7a396ffde40", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac0be410f26457a2a545ddec92ce44fd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 234.24, - "z": 16.7 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01b0774a5aca0839dae0c33f939fe5d6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92ebe93a6120c5e67a549256058678b5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 225.24, - "z": 16.7 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f83791b933f0a90996f5e6a0bd16375", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9094b61b5f71695d7783c9085d0bc94", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7243bc2f603a46f4c5e4fed6213bcdd7", - "notes": [], - "params": { - "message": "Adding Diluent Sample Plate 3" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "406b86f7786cac1243845ab24239815d", - "notes": [], - "params": { - "message": "==============================================" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27782d851faf644b07ba3ff143af4822", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 178.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3be17c8d0a92b9f273b9f919065c62b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "588c65b2e2a87e6f4d89e463c8c4cf87", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 5.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 5.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fdbf8fbd776ef97b1ce1a9fbb200cca", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 178.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cd209a7f82ca034c13d6d7417c133f4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 178.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbd7caf1fa0a7a4619718da787661df1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97e62d729b8bac24e1853d21ff42f3d3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae6423c7f1e9bb7bece320c42f6b4083", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 178.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "583ae358aca1fa9197422c608ed7c675", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 178.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12c8b5ddfa53dd60423ca9eb55411973", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f2630ff2616522dfbb8723ebc3f11e5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ec00d70b2c7c3b9ea457a22cadaab77", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 178.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5540f48a4339b25353fbaa6e705499fa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 178.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25393ff6d6d0f38bdbef0d33fc84947d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58712650502724123e2c82176eab2a83", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "760dc00eafcbe4c68e040a3931644b6c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 178.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "401e8d833f2ef5767b68ab1b7b89eae3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 178.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d100d945cbe9ebae34da6ae3dcea420", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4930b1067e38c2ed09f4f438841924b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e79d98c2180a9f097d3b2148da62574d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 178.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f45c8bc0b895e5fe6757f082c18554d7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 178.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f280c27557c5fa4dde2471c3def5ea7d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d83d4c3bbeb2ea375dac456f3213b142", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7211354d7e005f3148afbc9da112c65a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 178.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa93c0d4b58cb7b9130ee41cba16485f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 178.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a80b4f1f754e05d245ab086a74ac37c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5936842a7cce8053d5ec7c17e6267c8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c86bae4e3e8dbeb0594c2056b791b4d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 178.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5646584ef0db11332bd1d03187273a7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c4f06f3bde0cf2c201b47a005f137dc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8bb9fadda2aae15fbc6e264fbc41e89", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3b9950cdcf4f312337b34911255ad81", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d10b6aac1f7ddde2d15d2e7e29ab513e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6595e9c3f457b5ac3ffca85e6de85cd6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75f9a2bf65e93660669c13f2e9f08131", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "482b380fff134e8637bc1f786025f3ca", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 187.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee4208701fbc953cc3c63eef383e0907", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85efd7de5f9ce12c10a04fea66147341", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12808bfa949cc3572df2a2a8ceae4424", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ce2ac72f7882644e5afe45e0b87622c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 187.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d0bcd4e9d637a8f30233768d4c4ce26", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c3054ec2960d7e068944dfc128d44f0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9a0725705f2db5cf62b48dd42a6c980", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 92.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 92.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3343cfe3f870c4680c88c4b8bbfecf1c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 187.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8af8d8f8f15d7e78353bbc729da32417", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55d893625df2058660dba75f8182d7bb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06a08db5094858aa992badf613e5ca7d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 88.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 88.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9112b86aae58e8955bb5f1e979f71887", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 187.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0c024ebcc31a71b6835bd066c96cdd6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c037d1c36c6d04042ac2e7c8ea29eae8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47fb05856267a2c8dd7b5c8eb37ca53e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d67906494dd783c78b8293e47d02f41", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 187.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "663f05e4fe8c54b2e778dd2cec8e2d37", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48080b561ad6f9da821967c782ed8076", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "123a98e0d45f2365c29972e8ee57f65d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 31.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 31.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3314331eac66c457e7b248d0bfedcba9", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 187.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "054f8de6f35065776bb26168fe820c58", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a963e1ac743745817697bd97e87209c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aba6de3d42d19fe81e964ba87bd46ad1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d277a2acfcb66d0c1b17e3030bc262f7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 187.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45c3312a2e2c4b1915853ac89aa5ba38", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7fcae66f0f2e88a623412581b7ad66c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "285e16d7b035926d3c2896242b2a3bad", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 87.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 87.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37ae239ce6f377334e9959710fd6306d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f13eb1da55cd8993090c9eb0ac1b425", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abbd5005d52ffc07c11f5aa4f02e686f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68326b016aa7b445f670e6e062cb863d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 82.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 82.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2afac801ce246123795e411bb9563a6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 196.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d89cf252869c5f747f9792f29c99290", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fb9f9c1afb8bb105ee2b1c823cd198c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97fbe12e5a0623bcfb9e77e9309f142f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 36.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 36.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ffc531c07bfb727f256ae272c368aba", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 196.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "271de1d407ed42b58590129685386ee5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d289e8c4763dc76edb103565f5d6aecc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2079865ecc4fbc85be401f88e861613a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 78.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 78.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d866a3a5fc42af96874365498977f1b3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 196.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5830591b203d93c6b8438de1a6cfe062", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf9f4d6d5e50a4bc77a58f5761778cf4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fae2391d99cfab20d83878a7c19a4b89", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52bb4df3bd2a3d9212c36c557a8a7787", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 196.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbf7d5f1cf4b04511724275f33a7b48e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a021595724ebf67d6314519ccbd6b7a6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7799418e489a22187572c94b7cf06674", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75fa5a4878d90caff9cc9df0ca2ae37d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 196.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb86ca7f6981855b48e81e5d90424773", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f253b7f380f47717b7a5e380cc956951", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c9785622429bf5a7a8abe5b5a705114", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 63.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 63.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16268d849012fcb0629e548811b71a46", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 196.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f02d57d8051b425428bad998f6582f98", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e72cd5b29d2c57d72e8c473a08d954a5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96aac98c85ee9203ed68cbdb39df021b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ceceb19d1de7d81d680e3844a9b9d86", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 196.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16afcc34be947b9d5cfb24e2e0e5ae8e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eeb048b324866c7a21a2f6a35e788ccd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d552744a7734bab5c4e42be0159d591", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50f4303eee078773eb8ec069f1089434", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6a0964f94cd2b724d28f38c6448c900", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0871d2ce2e558738c902058134702019", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06da62f6ee3bf4353e2ad0d1328d32e9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a027eb11de2c50a21d25c59de2c1e87", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 205.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb7c1ad008eac5ea19965e6093547ff1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59ab3baa27cc7ac844b304225cc71d0e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59a4afb93f1496ad290fab4da8161852", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d29d4750249e726646ee6e1bd00706b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 205.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d799f708348153c3e5f2b1ba3d267e0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e78b53710273310b192e8d22a02eede", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5bae768f60d7d9e2e2dd515e88f5c9d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d56dcd67055d737c6601b8c83f53d21", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 205.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2333df5fecc7afd96b70083c28b72fed", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ae63745d60fdb946dc4021073e069d3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7005b0a1410cb8ab0f74d9b0a3d3313e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1dce6da0a615a2de03afca5ca86ea5c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 205.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d4485a58facc208cf358cbc2be827f0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c12db7655a3c916a3aec41f3ffdeae79", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d468986d53ccce33546ba84e854d2d8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de4765905ff319f3b24c480e795d79e7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 205.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "231dd4c295b5f9f3fd33521f87930ea3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cae0bb320ee5edf112410acbd4b75ade", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f1e9962500efdf299f170bf0bfe658f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 52.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 52.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a6e3ad963c8e4c27c77c1e16bc640c3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 205.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "495004655d6a1f65f632c9913cf75816", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42f4a69ec1f8b1762d9f40473723cf31", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47b37555f5c43965b631e0d61124a1b7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "299e14d1bf936f0e58dcf72527aa400e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 205.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bd198b2316c15b0295c1c7dacebc0c1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16fcd1ec33991c58f73ef699ee0c4503", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b148268752a0e6cd7d28eca8c9cf8b4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60261e23cdc4e14547105a09f63ebc6b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3a3e06dbe44a5a2b7eb65bc041de998", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 214.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1385ba6c3d421c4b83698c11a36a25ae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aef69a05adaf03a7d527e7b4fd1cbb0f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 86.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 86.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e14c85c425a4d9aadc44b84370807428", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 214.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fe818591f0a570e129b758115f5e560", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 214.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "951edd3718a684f61b95bd62b5402053", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b45e5dbbd91de240f7b8bfad9eccc774", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f6498f91dbf74879ac8f6874129a62a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 214.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "692c3a8916a7c8070a7a2fd8efc49b38", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 214.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd17e65dc774622cd969186436205b94", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63952d6e395d7e53e0159ced1157f966", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86270ba5997d2ade7665e096a5f98e33", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 214.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c342680c097aa8403f7d35ed79a04586", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 214.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30beecc1ec15bc941e4aa1f4e5bf7f3d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13928604021f9f914b28e07d621edf8d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 96.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 96.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86b9ac20f164f44c84a0a4ae88675201", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 214.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "149aa909db560b99146fb4260871e862", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 214.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a72d234fde0f32bb47724d5543f65b81", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0641457293fc7e53fa8f818396ee2f3e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 72.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 72.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a0b26a37f312e0363616967b7d76350", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 214.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aaf68beeccbba2304e5d67cb696b0eca", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 214.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b9b9e58d1ef6650dec250477823d784", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d8f42709cc1e7a6693360137ec77194", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba62089023119e5361f17bc68d21fae1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 214.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39a4fe41fa62adae4a8a81c3debab561", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 214.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f981dd3673099418926eb54e68e8134d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9624979ee36be79d8634c9364618180d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 378.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99f70ebc92c72b26a1d12555fa6cadca", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H5" - }, - "result": { - "position": { - "x": 214.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c0b3bab7e4bdac5ec9af55ac867af4c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a3d9536a356287faf992be52a4d0b3a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9d2b8b3b95fa8c34320ee5d492ab8c6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 41.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 387.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 41.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "966e548c1fe8dbbc018b5ab3cdafb5f1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9797a4891a96b24d85bc1a40a17535b2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54b61412ebf8da5ad571df2bafc6f726", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19f97e3cb1fe7d079fb032e9f36f8fbb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 387.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a4ba8d50c10429ea35ac339d2735046", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 223.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86d9e957f21c34aa8c3aaa14a5c64edd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cdee5a054e32d2b3860b776fc8dbc74", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f34289129fe63ae12873f4dd20e29aa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 387.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff1dd4693385f33dfd014d588b884c4e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 223.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09860a5d91b4b037fb4af03cc7ea2d01", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9464231a350da9944ad67c4baa1f39d3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1a2bd743e960b103c6af1ecc1f0fb7e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 387.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "949ff6f99a6e5661a3aaa8a58d3571f4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 223.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4106002e9b4901862f283801d5613b82", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8727d712b7ce1c8b73dc709243b04783", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43bc90864d3d542e0527a0825e3c2a54", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 387.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "675842bf0d491bd924b18e6bcbcdd83a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 223.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0828bd30e04fa34ac836654115df6627", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a53d907b988387f482acbfe19467f91", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9478a4b6b010bf3ee500dec03b6bfae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 42.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 387.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 42.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2251fca5a95fe82e59fd65bb794d97c8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 223.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "517fb4694f3ac0e311b3c6f88c94ab57", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f74051ea8ee485da8d600acc94841e69", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c75e3622084126fd317374ba5036c80", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 387.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23377570741caaec00ccc3221547482e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 223.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e38e6d0e41c9c7d9d18bb009f51e50fa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1a6f65e27b1146fe0574c0aec69dfa7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0632dade29f921ff9a409cdcf8f06f08", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 48.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 387.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 48.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40688e5783b0368bed9a9695c9449e93", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 223.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8d64427f38150b331aab95d56e0495d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47a8dc0dc52eaba45e84bf90e928b28f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd3bd14cd926bdfafe8facb5eab6cd16", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 73.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 396.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 73.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "001d5cdd204614076967ce8b36f4b4ca", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a88334db2ff51e9b84993bca0523fcd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42a86322dbee887d493cf906cb9a4ac6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "564436c6a7d2b337f84b6fae4b66c7f3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 84.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 396.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 84.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0eed7bc87e7902413a0026c38af76a7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 232.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f1eb2dc8d894aec221cc0cb44672ff2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62c8b43d3b133b687fb8c9d8c3a9162c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a093e5839564366adf8447819d90d38", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 396.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3fd725a24abc1edd3924e5c167d437f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 232.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dbdb7215d4b532dac06fa4f6814d9a9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93906228f8fbe4c86b3cf64a52eb7aa9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fbb296d278111c62bb6bdbf174f148f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 74.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 396.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 74.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "216a512bf9aad52088f205cda81e3fd8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 232.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2836b2b7dd60ada511d19c9e409a362e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef5396c2702f7c5329fee95941614c07", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a92aace76952a9942cc5fe3f8838bc8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 80.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 396.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e07d623eab0aef41ac577a204952fc48", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 232.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52e8e725eed0865ee6e92182e87bceaa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "002747a21bb80abdf79f6f2afb1f68c7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c201697823fa05b980b0e087b7b982d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 396.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6541d8650d8ea1fcab327f02285be330", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 232.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e193fbc1105e4901afb143caf2a9415", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0af1339c9e662f1b13d55423adabad4c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3deb16bdd2deb9c62247ba66bc1074e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 396.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "932b5bf77e04bb53b3b3dcfbbc37b06c", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 232.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca34fd343bf701330577498723c4c658", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d0baeaa87b639ee96a75edb07bf032a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "430d135b17a23c9ea5e41f58ecb454ba", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 396.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61d2da11d2ec6ed47c60fb867a2aa828", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 232.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16161be9ded56178aca85362f5810abe", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b17343c6fc7263d8f12f9fbb33d3b75", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ab5bffc3b621c8c1c056c79f29b4bde", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 405.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46f457c0d569114c28648a9dce7de75e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c731d0ce370ee2756d453c06feb5bf4b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 241.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a016c9165549313042f38db87b66d08", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bb70445500ddb7ec358e3bb3fe78d79", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 98.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 405.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 98.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "307d5bba5e2af53eb264c3d14f8f8989", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 241.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca5a2b3f2d8c5922f7a09580a762f5b3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 241.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33dd41f52f4d4fae4e2e9d5a7b08fc6c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e884d5cc6fb63f405e778c4483008844", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 405.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19f8b0b2a5e1a44cd84b529d6d08094e", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 241.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e40db54b3af26f3db6de4fe832d2d2d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 241.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "511344e23bc8725342531bc2f00b4307", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0667f2773a25dc61b4371ba21e3dff9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 405.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d13ea07fe3339e92be6a91c02849964", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 241.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c74ac75627df29a85c712c7379af37cb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 241.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5479257b2209e14ed031fad8e497b318", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5e7242e3f85cf6d232b5c87f4bc649e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 405.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf9233d727ed6c09e7d8d5edde82b414", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 241.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25bb824b856fcbe8b8244477934ca522", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 241.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a99a64c15182f2bff858eb66d366d66f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "364aa240ef0b854b3e827e532903541b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 405.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bbed25ac9d7e6878d38e927387708cb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 241.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab51cfc0eb73a134ac5b8042017649d2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 241.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9766c74a1414ee340ae5e464cc36d3b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a392da031998c165164e1cfe86c43e72", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 405.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "920f2f2aaded3dcbfc6a4ebfe93103b2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 241.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbceee4b03b8a84ab0933517a207aa6c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 241.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2212678c89397fec04eb25a521a5d33b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8294f906c845762d7868f05b381e2b0a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 405.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4560060b5157b231265d5f5f39748f45", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 241.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3a15580a7711d36ad10b29a99b063fe", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a321f2b88761eac3ae39dd48c150f3e2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e12c21c58868b1ff8c543e19b41cb257", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 414.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af3d323d7894d252ab2d5b0dae4da667", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad36b3ec3e10b2e06ce1a0a6a7c66141", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ee91fa0307c7889b65249fb0f0e9cc8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccfc4145e63b1c6d2b0364f103d7ac9d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 89.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 414.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 89.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc9f567b8f33f1b24c7dd16b2e1b63f5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B9" - }, - "result": { - "position": { - "x": 250.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18c6669ce0ea1f5ae47e3c8817f658e8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3299ccde18105647e62a6412d849467e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2883861ebc2f255376aff7bcb00c3de", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 414.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ee9ac2ba6c14a491f2c602fb9904fe5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C9" - }, - "result": { - "position": { - "x": 250.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19a4e15a8dc251b1376ace7ee685a085", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f065e6feadb69be8f301d8f9667d451", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66f320e63d64ff900c05219790c44890", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 67.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 414.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 67.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4023493ba548bbbd45d412983c726f8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D9" - }, - "result": { - "position": { - "x": 250.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17fe519769e305735e8f7abd57a04f5d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3865bb502b9ef86d8de25c1c7c2d6a8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33ff8f3cec0a1bc3a02979b301dfa2c1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 414.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f90e1143c69b99ce932ce317e31cce2", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E9" - }, - "result": { - "position": { - "x": 250.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfdebdb1218edacf6ac30f1ad0e9f177", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f86f7c459144142823d9e02272be8633", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "089eb84616b65687fe9e6878a6239358", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 79.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 414.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 79.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abc848fb05758b46cea060a5de1fc972", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F9" - }, - "result": { - "position": { - "x": 250.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dba37753133ec93194183867900bd18", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ba30a626c5bf9e53e857a3be22918cc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa188493a48f4fb74c88d985bd832b47", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 414.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60948e39d49a8e425f31739248ec996a", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G9" - }, - "result": { - "position": { - "x": 250.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f838bb4502b6eae2870f3255e9250f0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "578d981e194e8d50d660b4b1ff082152", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65d91faca7dc9183e52cbaa5f6d3955d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 23.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 414.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 23.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "271c3ac479bbec3948f01f8abacb44e1", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H9" - }, - "result": { - "position": { - "x": 250.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fad37f59bea49aae18c2ecc6ef7e483", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bf46bb19017357e62568b6035d290a6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "943615dee6673d7de223d428e3995a7c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 26.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 423.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 26.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "890caa1dde35b9e6f5905db38e46cfa8", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09cc1a9ac6dfb488558462af28c750c7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 259.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7c878b0e2cbd38323cb9b31b4a7f11a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78f211b2e0eab3ae3d68944d6b5b54ab", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 423.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "061b5148f73f87b398aebc4de3c963d6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 259.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7745bb035f39378fafd0b5d0b38a87d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 259.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cd2686b16569adf3fdefd0e697beac9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c56d4fffb29394cdd56a4d51716a8291", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 423.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ddc135f6bf2679b43fe16b013829914", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 259.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "befde90f1bcf30d6d3fae9f45919f990", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 259.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b235d66e87014c15d885aea0acb64a7a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0bdbcc05bcdc6ca56502d0ead24c02e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 423.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6fd29653045ff33c3e86aa6172f8de5", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 259.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "328be2457e2d85f7b20952f0693d04b7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 259.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af24d5f5c1eb9c8cb4b76cb2ae41961d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22b3524ed1f41b23b9bbb73f832d5b7d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 99.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 423.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 99.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48516bb061d9e2a4ec209d2451fb891b", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 259.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc9c035f89a963b1c4c9662b3a34a03c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 259.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59b17879a89eb77587117f252b6bebb3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10ce5c4c9c9df9f430cd492dae9ad14f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 21.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 423.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 21.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12e14e1715c3082e13381bccf12ce5f7", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 259.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "758b81cfa063ed4e66b301addafbd246", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 259.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0779559fd9b44034b64209d734b1531", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "537b545374948f2e90caa7830a24da88", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 59.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 423.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 59.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "068a6c05486919840211339fe9f578b4", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 259.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29a30c489ffed00ee8874b4ec8d6ea82", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 259.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1459476b846d97aa06d75467a07a42e2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f864785a8d611496d79676980a73096d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 423.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "801e4216f46b5d4fd2ae2fd3f4f77a68", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 259.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c96379a39d1afc5805d74c66a06e4bc", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df423d716b10bf903b7400039d4d1914", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eea043ff337f7934055a1a9c45583693", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 45.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 432.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 45.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72ce5e06881f73d5ce80ecf318e55510", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bd054be2a5d11bdc536223b401f2c7d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 268.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cf02790d7f246b8142b5ee556b7a65d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f6163cafe4268d39cdf212a3f7c8000", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 28.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 432.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 28.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b131eae3cf372b41825247a51518d68d", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 268.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a0b50b1347341dc4b04b982585023dd", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 268.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b9a4444a434bbd24af9ba1ba859a8da", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f935624723290963c916f52c852e6c9f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 51.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 432.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 51.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cd58aae1b128c143ee47570d6410caf", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 268.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bda90b8cc7cc03446db2e343b2a83be", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 268.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "435dbce5eec7771287c9da74a6e14918", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97a073f859dc1ac86b58e4a541fa6108", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 34.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 432.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 34.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abaecba36dc0ac99dca4ca65604fbccb", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 268.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15d799352c83e4a0cdafc99f5478dc8c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 268.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3ca960df1e5e800843319bd7fc791d6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "474d87eb67576555d150602cd4a94e26", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 27.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 432.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 27.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8136e6fcbc993364d7d8e10a15391248", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E11" - }, - "result": { - "position": { - "x": 268.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "952c04b376d98e28fbc9fa6047dd9cc6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 268.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc42c59a45178fbfc9452bd0b268516e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07dbdf7616e8f17b3646692cf93d6c5d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 432.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a817f0b7baaba8c4e28586a44ecac0f", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F11" - }, - "result": { - "position": { - "x": 268.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be850d51d5843abee733e4d34936bbee", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 268.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0d20f8cb244d54b2efc4ac61646fd18", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5031e49c2b16edac4b20569a23f4e98c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 33.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 432.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 33.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc46d96b922880dcae77d04da8c32a05", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G11" - }, - "result": { - "position": { - "x": 268.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d0ccf682bb88a46305cd40d6b916563", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 268.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "115456151e1d02180899e165af274182", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e9b92b06d922b0788e75a4cfceff55b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 61.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 432.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 61.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a28075187a31d2fcf7f3958f6a33521", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H11" - }, - "result": { - "position": { - "x": 268.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb9a646af71867b949170e64541bf33f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32e249d5b9b3a794f2f35119e8b3a42d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba40e35fa710b8ba223a1952e668edd3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 69.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 441.38, - "y": 288.24, - "z": 15.899999999999999 - }, - "volume": 69.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bdccd83272c73f038b2dfc045a64399", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 395.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a810545edca87ec9380b2e3b205ca5a4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 277.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9087bdceae8422058d02300cf238501", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2419f30f1cc07613c8ddcba5b2fabae8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 47.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 441.38, - "y": 279.24, - "z": 15.899999999999999 - }, - "volume": 47.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43749b9cf47340cf9eb9e07e3afe25f3", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 277.38, - "y": 386.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da8e481f4ee6de890e9f570a2cc39d8a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 277.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c4010005b1bd4ca9f3906bc72d6340d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e42249af384ebbec5fe3e52a79a7fcdc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 46.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 441.38, - "y": 270.24, - "z": 15.899999999999999 - }, - "volume": 46.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3b82e72fe52c2b4cb630010b8a9fd99", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 277.38, - "y": 377.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7eb0679bd0753debc8a9fccbef62675b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 277.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5787167f930eba436d8e4008675393e6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4e273369c54d63c8ef6b33ac66498fb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 93.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 441.38, - "y": 261.24, - "z": 15.899999999999999 - }, - "volume": 93.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07c30d11fde9db0ff528fd01f0a48703", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 277.38, - "y": 368.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "446070dac1ee30d4e6244dfb482dc37f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 277.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94ab9d34ff75e87636a66cab9fed60b3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1792db5dfa5c83dbdc0c19cd2ee29ae9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 54.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 441.38, - "y": 252.24, - "z": 15.899999999999999 - }, - "volume": 54.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0e769642ec9fd866c08c72bdf6e18ce", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 277.38, - "y": 359.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c2c0431e6ffc9aa72dad9d3e56bfde0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 277.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f21647adbaba50abe64f32a8a9cf41c9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45bc761bf3396a4678071c03817a2dea", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 65.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 441.38, - "y": 243.24, - "z": 15.899999999999999 - }, - "volume": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e032e0c3402f9810f98b213e4cbb1a6", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 277.38, - "y": 350.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16db7d0435725f9ba10fb3346616dbd6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 277.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7126b6e43d28c5535c64388727138592", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17b2ba4f011cc49f55867c29912a67ec", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 58.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 441.38, - "y": 234.24, - "z": 15.899999999999999 - }, - "volume": 58.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "124d336a66447ac2d0a7b772416edf75", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 277.38, - "y": 341.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c754f4cd0edf2f948afbac4c6768596", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 277.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25b2062e6acfaa1a2f964a8bd75c6bfd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -24.85 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 42.78, - "z": 6.55 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "249def94de63905054950f5e77cd86e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 37.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.1999999999999993 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 441.38, - "y": 225.24, - "z": 15.899999999999999 - }, - "volume": 37.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5f71f910e0af0b6a38568b1b84718cd", - "notes": [], - "params": { - "alternateDropLocation": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "scrape_tips": true, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "default" - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 277.38, - "y": 332.38, - "z": 57.5715 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 15 - ], - "protocolType": "python" - }, - "createdAt": "TIMESTAMP", - "errors": [], - "files": [], - "labware": [ - { - "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", - "id": "UUID", - "loadName": "opentrons_1_trash_3200ml_fixed", - "location": { - "slotName": "A3" - } - }, - { - "definitionUri": "opentrons/nest_12_reservoir_15ml/1", - "id": "UUID", - "loadName": "nest_12_reservoir_15ml", - "location": { - "slotName": "D1" - } - }, - { - "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", - "id": "UUID", - "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", - "location": { - "slotName": "D3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "C1" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "C2" - } - }, - { - "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", - "id": "UUID", - "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", - "location": { - "slotName": "C3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "B1" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "B2" - } - }, - { - "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", - "id": "UUID", - "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", - "location": { - "slotName": "B3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "A1" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "A2" - } - } - ], - "liquidClasses": [], - "liquids": [], - "metadata": { - "author": "Opentrons Engineering ", - "description": "OT3 ABR Simple Normalize Long", - "protocolName": "OT3 ABR Simple Normalize Long", - "source": "Software Testing Team" - }, - "modules": [], - "pipettes": [ - { - "id": "UUID", - "mount": "right", - "pipetteName": "p1000_single_flex" - } - ], - "result": "ok", - "robotType": "OT-3 Standard", - "runTimeParameters": [] + "error": "Analysis timed out after 120 seconds" } diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c15790917f][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol1].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c15790917f][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol1].json index fd1542f3752..0b9d36937ed 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c15790917f][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol1].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c15790917f][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol1].json @@ -1,98321 +1,3 @@ { - "commandAnnotations": [], - "commands": [ - { - "commandType": "home", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50c7ae73a4e3f7129874f39dfb514803", - "notes": [], - "params": {}, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8511b05ba5565bf0e6dcccd800e2ee23", - "notes": [], - "params": { - "location": { - "slotName": "D1" - }, - "model": "temperatureModuleV2" - }, - "result": { - "model": "temperatureModuleV2", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9563ff54d4bfe61c469a7da06e79f42", - "notes": [], - "params": { - "loadName": "opentrons_96_well_aluminum_block", - "location": { - "moduleId": "UUID" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [ - "adapter" - ], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 18.16 - }, - "gripperOffsets": { - "default": { - "dropOffset": { - "x": 0, - "y": 0, - "z": 1.0 - }, - "pickUpOffset": { - "x": 0, - "y": 0, - "z": 0 - } - } - }, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "aluminumBlock", - "displayName": "Opentrons 96 Well Aluminum Block", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_96_well_aluminum_block", - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 74.24, - "z": 3.38 - }, - "A10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 74.24, - "z": 3.38 - }, - "A11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 74.24, - "z": 3.38 - }, - "A12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 74.24, - "z": 3.38 - }, - "A2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 74.24, - "z": 3.38 - }, - "A3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 74.24, - "z": 3.38 - }, - "A4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 74.24, - "z": 3.38 - }, - "A5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 74.24, - "z": 3.38 - }, - "A6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 74.24, - "z": 3.38 - }, - "A7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 74.24, - "z": 3.38 - }, - "A8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 74.24, - "z": 3.38 - }, - "A9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 74.24, - "z": 3.38 - }, - "B1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 65.24, - "z": 3.38 - }, - "B10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 65.24, - "z": 3.38 - }, - "B11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 65.24, - "z": 3.38 - }, - "B12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 65.24, - "z": 3.38 - }, - "B2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 65.24, - "z": 3.38 - }, - "B3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 65.24, - "z": 3.38 - }, - "B4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 65.24, - "z": 3.38 - }, - "B5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 65.24, - "z": 3.38 - }, - "B6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 65.24, - "z": 3.38 - }, - "B7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 65.24, - "z": 3.38 - }, - "B8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 65.24, - "z": 3.38 - }, - "B9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 65.24, - "z": 3.38 - }, - "C1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 56.24, - "z": 3.38 - }, - "C10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 56.24, - "z": 3.38 - }, - "C11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 56.24, - "z": 3.38 - }, - "C12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 56.24, - "z": 3.38 - }, - "C2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 56.24, - "z": 3.38 - }, - "C3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 56.24, - "z": 3.38 - }, - "C4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 56.24, - "z": 3.38 - }, - "C5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 56.24, - "z": 3.38 - }, - "C6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 56.24, - "z": 3.38 - }, - "C7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 56.24, - "z": 3.38 - }, - "C8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 56.24, - "z": 3.38 - }, - "C9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 56.24, - "z": 3.38 - }, - "D1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 47.24, - "z": 3.38 - }, - "D10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 47.24, - "z": 3.38 - }, - "D11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 47.24, - "z": 3.38 - }, - "D12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 47.24, - "z": 3.38 - }, - "D2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 47.24, - "z": 3.38 - }, - "D3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 47.24, - "z": 3.38 - }, - "D4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 47.24, - "z": 3.38 - }, - "D5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 47.24, - "z": 3.38 - }, - "D6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 47.24, - "z": 3.38 - }, - "D7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 47.24, - "z": 3.38 - }, - "D8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 47.24, - "z": 3.38 - }, - "D9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 47.24, - "z": 3.38 - }, - "E1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 38.24, - "z": 3.38 - }, - "E10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 38.24, - "z": 3.38 - }, - "E11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 38.24, - "z": 3.38 - }, - "E12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 38.24, - "z": 3.38 - }, - "E2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 38.24, - "z": 3.38 - }, - "E3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 38.24, - "z": 3.38 - }, - "E4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 38.24, - "z": 3.38 - }, - "E5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 38.24, - "z": 3.38 - }, - "E6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 38.24, - "z": 3.38 - }, - "E7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 38.24, - "z": 3.38 - }, - "E8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 38.24, - "z": 3.38 - }, - "E9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 38.24, - "z": 3.38 - }, - "F1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 29.24, - "z": 3.38 - }, - "F10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 29.24, - "z": 3.38 - }, - "F11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 29.24, - "z": 3.38 - }, - "F12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 29.24, - "z": 3.38 - }, - "F2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 29.24, - "z": 3.38 - }, - "F3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 29.24, - "z": 3.38 - }, - "F4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 29.24, - "z": 3.38 - }, - "F5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 29.24, - "z": 3.38 - }, - "F6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 29.24, - "z": 3.38 - }, - "F7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 29.24, - "z": 3.38 - }, - "F8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 29.24, - "z": 3.38 - }, - "F9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 29.24, - "z": 3.38 - }, - "G1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 20.24, - "z": 3.38 - }, - "G10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 20.24, - "z": 3.38 - }, - "G11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 20.24, - "z": 3.38 - }, - "G12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 20.24, - "z": 3.38 - }, - "G2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 20.24, - "z": 3.38 - }, - "G3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 20.24, - "z": 3.38 - }, - "G4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 20.24, - "z": 3.38 - }, - "G5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 20.24, - "z": 3.38 - }, - "G6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 20.24, - "z": 3.38 - }, - "G7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 20.24, - "z": 3.38 - }, - "G8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 20.24, - "z": 3.38 - }, - "G9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 20.24, - "z": 3.38 - }, - "H1": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 14.38, - "y": 11.24, - "z": 3.38 - }, - "H10": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 95.38, - "y": 11.24, - "z": 3.38 - }, - "H11": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 104.38, - "y": 11.24, - "z": 3.38 - }, - "H12": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 113.38, - "y": 11.24, - "z": 3.38 - }, - "H2": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 23.38, - "y": 11.24, - "z": 3.38 - }, - "H3": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 32.38, - "y": 11.24, - "z": 3.38 - }, - "H4": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 41.38, - "y": 11.24, - "z": 3.38 - }, - "H5": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 50.38, - "y": 11.24, - "z": 3.38 - }, - "H6": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 59.38, - "y": 11.24, - "z": 3.38 - }, - "H7": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 68.38, - "y": 11.24, - "z": 3.38 - }, - "H8": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 77.38, - "y": 11.24, - "z": 3.38 - }, - "H9": { - "depth": 14.78, - "diameter": 5.34, - "shape": "circular", - "totalLiquidVolume": 0, - "x": 86.38, - "y": 11.24, - "z": 3.38 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "temperatureModuleV2D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07af6536632377008ed92723cc8c5072", - "notes": [], - "params": { - "displayName": "sampleplate", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "labwareId": "UUID" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "temperatureModuleV2D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8eec906a29ce38c4567cc9831a24cd13", - "notes": [], - "params": { - "loadName": "opentrons_15_tuberack_falcon_15ml_conical", - "location": { - "slotName": "D2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [], - "links": [ - "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 124.35 - }, - "gripperOffsets": {}, - "groups": [ - { - "brand": { - "brand": "Falcon", - "brandId": [ - "352095", - "352096", - "352097", - "352099", - "352196" - ], - "links": [ - "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" - ] - }, - "metadata": { - "displayCategory": "tubeRack", - "displayName": "Falcon 6x15 mL Conical", - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A2", - "A3", - "A4", - "A5", - "B1", - "B2", - "B3", - "B4", - "B5", - "C1", - "C2", - "C3", - "C4", - "C5" - ] - } - ], - "metadata": { - "displayCategory": "tubeRack", - "displayName": "Opentrons 15 Tube Rack with Falcon 15 mL Conical", - "displayVolumeUnits": "mL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1" - ], - [ - "A2", - "B2", - "C2" - ], - [ - "A3", - "B3", - "C3" - ], - [ - "A4", - "B4", - "C4" - ], - [ - "A5", - "B5", - "C5" - ] - ], - "parameters": { - "format": "irregular", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_15_tuberack_falcon_15ml_conical" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 13.88, - "y": 67.74, - "z": 6.85 - }, - "A2": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 38.88, - "y": 67.74, - "z": 6.85 - }, - "A3": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 63.88, - "y": 67.74, - "z": 6.85 - }, - "A4": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 88.88, - "y": 67.74, - "z": 6.85 - }, - "A5": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 113.88, - "y": 67.74, - "z": 6.85 - }, - "B1": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 13.88, - "y": 42.74, - "z": 6.85 - }, - "B2": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 38.88, - "y": 42.74, - "z": 6.85 - }, - "B3": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 63.88, - "y": 42.74, - "z": 6.85 - }, - "B4": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 88.88, - "y": 42.74, - "z": 6.85 - }, - "B5": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 113.88, - "y": 42.74, - "z": 6.85 - }, - "C1": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 13.88, - "y": 17.74, - "z": 6.85 - }, - "C2": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 38.88, - "y": 17.74, - "z": 6.85 - }, - "C3": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 63.88, - "y": 17.74, - "z": 6.85 - }, - "C4": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 88.88, - "y": 17.74, - "z": 6.85 - }, - "C5": { - "depth": 117.5, - "diameter": 14.9, - "shape": "circular", - "totalLiquidVolume": 15000, - "x": 113.88, - "y": 17.74, - "z": 6.85 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "D2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de08bc562d1665a25b761a98e1be0005", - "notes": [], - "params": { - "location": { - "slotName": "C1" - }, - "model": "temperatureModuleV2" - }, - "result": { - "model": "temperatureModuleV2", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35b7de451eecf2282cdfcff3386ac6ea", - "notes": [], - "params": { - "displayName": "Tubes", - "loadName": "opentrons_24_aluminumblock_eppendorf_1.5ml_snapcap", - "location": { - "moduleId": "UUID" - }, - "namespace": "custom_beta", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Eppendorf", - "brandId": [ - "022431021" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.5, - "zDimension": 43.7 - }, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "displayCategory": "tubeRack", - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A2", - "A3", - "A4", - "A5", - "A6", - "B1", - "B2", - "B3", - "B4", - "B5", - "B6", - "C1", - "C2", - "C3", - "C4", - "C5", - "C6", - "D1", - "D2", - "D3", - "D4", - "D5", - "D6" - ] - } - ], - "metadata": { - "displayCategory": "aluminumBlock", - "displayName": "Opentrons 24 Well Aluminum Block with eppendorf 1.5 mL Snapcap", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "custom_beta", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1" - ], - [ - "A2", - "B2", - "C2", - "D2" - ], - [ - "A3", - "B3", - "C3", - "D3" - ], - [ - "A4", - "B4", - "C4", - "D4" - ], - [ - "A5", - "B5", - "C5", - "D5" - ], - [ - "A6", - "B6", - "C6", - "D6" - ] - ], - "parameters": { - "format": "irregular", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "opentrons_24_aluminumblock_eppendorf_1.5ml_snapcap", - "quirks": [] - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": {}, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 68.63, - "z": 5.8 - }, - "A2": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38, - "y": 68.63, - "z": 5.8 - }, - "A3": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 68.63, - "z": 5.8 - }, - "A4": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 68.63, - "z": 5.8 - }, - "A5": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 68.63, - "z": 5.8 - }, - "A6": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 107, - "y": 68.63, - "z": 5.8 - }, - "B1": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 51.38, - "z": 5.8 - }, - "B2": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38, - "y": 51.38, - "z": 5.8 - }, - "B3": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 51.38, - "z": 5.8 - }, - "B4": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 51.38, - "z": 5.8 - }, - "B5": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 51.38, - "z": 5.8 - }, - "B6": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 107, - "y": 51.38, - "z": 5.8 - }, - "C1": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 34.13, - "z": 5.8 - }, - "C2": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38, - "y": 34.13, - "z": 5.8 - }, - "C3": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 34.13, - "z": 5.8 - }, - "C4": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 34.13, - "z": 5.8 - }, - "C5": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 34.13, - "z": 5.8 - }, - "C6": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 107, - "y": 34.13, - "z": 5.8 - }, - "D1": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 20.75, - "y": 16.88, - "z": 5.8 - }, - "D2": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 38, - "y": 16.88, - "z": 5.8 - }, - "D3": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 55.25, - "y": 16.88, - "z": 5.8 - }, - "D4": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 72.5, - "y": 16.88, - "z": 5.8 - }, - "D5": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 89.75, - "y": 16.88, - "z": 5.8 - }, - "D6": { - "depth": 37.9, - "diameter": 10.2, - "shape": "circular", - "totalLiquidVolume": 1500, - "x": 107, - "y": 16.88, - "z": 5.8 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "temperatureModuleV2C1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutC1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29332b0e6840bbdf93724f65381fcc74", - "notes": [], - "params": { - "displayName": "Reservoir", - "loadName": "eppendorf_96_wellplate_semiskirted_250ul", - "location": { - "slotName": "C2" - }, - "namespace": "custom_beta", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Eppendorf", - "brandId": [ - "0030129326" - ], - "links": [ - "https://www.eppendorf.com/us-en/Products/Laboratory-Consumables/Plates/Eppendorf-twintec-PCR-Plates-p-0030129326" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 123.7, - "yDimension": 82.2, - "zDimension": 20.3 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Eppendorf twin.tec PCR PLate 96 semiskirted 250uL ", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "custom_beta", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "eppendorf_96_wellplate_semiskirted_250ul" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 12.56 - } - }, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 18.8 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 72.6, - "z": 0.8 - }, - "A10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 72.6, - "z": 0.8 - }, - "A11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 72.6, - "z": 0.8 - }, - "A12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 72.6, - "z": 0.8 - }, - "A2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 72.6, - "z": 0.8 - }, - "A3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 72.6, - "z": 0.8 - }, - "A4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 72.6, - "z": 0.8 - }, - "A5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 72.6, - "z": 0.8 - }, - "A6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 72.6, - "z": 0.8 - }, - "A7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 72.6, - "z": 0.8 - }, - "A8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 72.6, - "z": 0.8 - }, - "A9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 72.6, - "z": 0.8 - }, - "B1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 63.6, - "z": 0.8 - }, - "B10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 63.6, - "z": 0.8 - }, - "B11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 63.6, - "z": 0.8 - }, - "B12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 63.6, - "z": 0.8 - }, - "B2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 63.6, - "z": 0.8 - }, - "B3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 63.6, - "z": 0.8 - }, - "B4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 63.6, - "z": 0.8 - }, - "B5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 63.6, - "z": 0.8 - }, - "B6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 63.6, - "z": 0.8 - }, - "B7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 63.6, - "z": 0.8 - }, - "B8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 63.6, - "z": 0.8 - }, - "B9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 63.6, - "z": 0.8 - }, - "C1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 54.6, - "z": 0.8 - }, - "C10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 54.6, - "z": 0.8 - }, - "C11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 54.6, - "z": 0.8 - }, - "C12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 54.6, - "z": 0.8 - }, - "C2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 54.6, - "z": 0.8 - }, - "C3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 54.6, - "z": 0.8 - }, - "C4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 54.6, - "z": 0.8 - }, - "C5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 54.6, - "z": 0.8 - }, - "C6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 54.6, - "z": 0.8 - }, - "C7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 54.6, - "z": 0.8 - }, - "C8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 54.6, - "z": 0.8 - }, - "C9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 54.6, - "z": 0.8 - }, - "D1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 45.6, - "z": 0.8 - }, - "D10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 45.6, - "z": 0.8 - }, - "D11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 45.6, - "z": 0.8 - }, - "D12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 45.6, - "z": 0.8 - }, - "D2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 45.6, - "z": 0.8 - }, - "D3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 45.6, - "z": 0.8 - }, - "D4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 45.6, - "z": 0.8 - }, - "D5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 45.6, - "z": 0.8 - }, - "D6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 45.6, - "z": 0.8 - }, - "D7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 45.6, - "z": 0.8 - }, - "D8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 45.6, - "z": 0.8 - }, - "D9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 45.6, - "z": 0.8 - }, - "E1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 36.6, - "z": 0.8 - }, - "E10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 36.6, - "z": 0.8 - }, - "E11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 36.6, - "z": 0.8 - }, - "E12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 36.6, - "z": 0.8 - }, - "E2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 36.6, - "z": 0.8 - }, - "E3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 36.6, - "z": 0.8 - }, - "E4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 36.6, - "z": 0.8 - }, - "E5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 36.6, - "z": 0.8 - }, - "E6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 36.6, - "z": 0.8 - }, - "E7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 36.6, - "z": 0.8 - }, - "E8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 36.6, - "z": 0.8 - }, - "E9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 36.6, - "z": 0.8 - }, - "F1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 27.6, - "z": 0.8 - }, - "F10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 27.6, - "z": 0.8 - }, - "F11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 27.6, - "z": 0.8 - }, - "F12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 27.6, - "z": 0.8 - }, - "F2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 27.6, - "z": 0.8 - }, - "F3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 27.6, - "z": 0.8 - }, - "F4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 27.6, - "z": 0.8 - }, - "F5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 27.6, - "z": 0.8 - }, - "F6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 27.6, - "z": 0.8 - }, - "F7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 27.6, - "z": 0.8 - }, - "F8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 27.6, - "z": 0.8 - }, - "F9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 27.6, - "z": 0.8 - }, - "G1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 18.6, - "z": 0.8 - }, - "G10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 18.6, - "z": 0.8 - }, - "G11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 18.6, - "z": 0.8 - }, - "G12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 18.6, - "z": 0.8 - }, - "G2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 18.6, - "z": 0.8 - }, - "G3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 18.6, - "z": 0.8 - }, - "G4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 18.6, - "z": 0.8 - }, - "G5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 18.6, - "z": 0.8 - }, - "G6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 18.6, - "z": 0.8 - }, - "G7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 18.6, - "z": 0.8 - }, - "G8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 18.6, - "z": 0.8 - }, - "G9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 18.6, - "z": 0.8 - }, - "H1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 9.6, - "z": 0.8 - }, - "H10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 9.6, - "z": 0.8 - }, - "H11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 9.6, - "z": 0.8 - }, - "H12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 9.6, - "z": 0.8 - }, - "H2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.44, - "y": 9.6, - "z": 0.8 - }, - "H3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 9.6, - "z": 0.8 - }, - "H4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 9.6, - "z": 0.8 - }, - "H5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 9.6, - "z": 0.8 - }, - "H6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 9.6, - "z": 0.8 - }, - "H7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 9.6, - "z": 0.8 - }, - "H8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 9.6, - "z": 0.8 - }, - "H9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 9.6, - "z": 0.8 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dacbd6268a87b2e93fd3d28fa4c9d6be", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_1000ul", - "location": { - "slotName": "C3" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_1000ul", - "quirks": [], - "tipLength": 95.6, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.47, - "shape": "circular", - "totalLiquidVolume": 1000, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadModule", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e87102431e9ff2fc3d0555c7aba17bed", - "notes": [], - "params": { - "location": { - "slotName": "B1" - }, - "model": "thermocyclerModuleV2" - }, - "result": { - "model": "thermocyclerModuleV2", - "moduleId": "UUID", - "serialNumber": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "259b27d8b8a38da05c2a32396fe299de", - "notes": [], - "params": { - "displayName": "Plate", - "loadName": "eppendorf_96_wellplate_semiskirted_250ul", - "location": { - "moduleId": "UUID" - }, - "namespace": "custom_beta", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Eppendorf", - "brandId": [ - "0030129326" - ], - "links": [ - "https://www.eppendorf.com/us-en/Products/Laboratory-Consumables/Plates/Eppendorf-twintec-PCR-Plates-p-0030129326" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 123.7, - "yDimension": 82.2, - "zDimension": 20.3 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Eppendorf twin.tec PCR PLate 96 semiskirted 250uL ", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "custom_beta", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "eppendorf_96_wellplate_semiskirted_250ul" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 12.56 - } - }, - "stackingOffsetWithModule": { - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 18.8 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 72.6, - "z": 0.8 - }, - "A10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 72.6, - "z": 0.8 - }, - "A11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 72.6, - "z": 0.8 - }, - "A12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 72.6, - "z": 0.8 - }, - "A2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 72.6, - "z": 0.8 - }, - "A3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 72.6, - "z": 0.8 - }, - "A4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 72.6, - "z": 0.8 - }, - "A5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 72.6, - "z": 0.8 - }, - "A6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 72.6, - "z": 0.8 - }, - "A7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 72.6, - "z": 0.8 - }, - "A8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 72.6, - "z": 0.8 - }, - "A9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 72.6, - "z": 0.8 - }, - "B1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 63.6, - "z": 0.8 - }, - "B10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 63.6, - "z": 0.8 - }, - "B11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 63.6, - "z": 0.8 - }, - "B12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 63.6, - "z": 0.8 - }, - "B2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 63.6, - "z": 0.8 - }, - "B3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 63.6, - "z": 0.8 - }, - "B4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 63.6, - "z": 0.8 - }, - "B5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 63.6, - "z": 0.8 - }, - "B6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 63.6, - "z": 0.8 - }, - "B7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 63.6, - "z": 0.8 - }, - "B8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 63.6, - "z": 0.8 - }, - "B9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 63.6, - "z": 0.8 - }, - "C1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 54.6, - "z": 0.8 - }, - "C10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 54.6, - "z": 0.8 - }, - "C11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 54.6, - "z": 0.8 - }, - "C12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 54.6, - "z": 0.8 - }, - "C2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 54.6, - "z": 0.8 - }, - "C3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 54.6, - "z": 0.8 - }, - "C4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 54.6, - "z": 0.8 - }, - "C5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 54.6, - "z": 0.8 - }, - "C6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 54.6, - "z": 0.8 - }, - "C7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 54.6, - "z": 0.8 - }, - "C8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 54.6, - "z": 0.8 - }, - "C9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 54.6, - "z": 0.8 - }, - "D1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 45.6, - "z": 0.8 - }, - "D10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 45.6, - "z": 0.8 - }, - "D11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 45.6, - "z": 0.8 - }, - "D12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 45.6, - "z": 0.8 - }, - "D2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 45.6, - "z": 0.8 - }, - "D3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 45.6, - "z": 0.8 - }, - "D4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 45.6, - "z": 0.8 - }, - "D5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 45.6, - "z": 0.8 - }, - "D6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 45.6, - "z": 0.8 - }, - "D7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 45.6, - "z": 0.8 - }, - "D8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 45.6, - "z": 0.8 - }, - "D9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 45.6, - "z": 0.8 - }, - "E1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 36.6, - "z": 0.8 - }, - "E10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 36.6, - "z": 0.8 - }, - "E11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 36.6, - "z": 0.8 - }, - "E12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 36.6, - "z": 0.8 - }, - "E2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 36.6, - "z": 0.8 - }, - "E3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 36.6, - "z": 0.8 - }, - "E4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 36.6, - "z": 0.8 - }, - "E5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 36.6, - "z": 0.8 - }, - "E6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 36.6, - "z": 0.8 - }, - "E7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 36.6, - "z": 0.8 - }, - "E8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 36.6, - "z": 0.8 - }, - "E9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 36.6, - "z": 0.8 - }, - "F1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 27.6, - "z": 0.8 - }, - "F10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 27.6, - "z": 0.8 - }, - "F11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 27.6, - "z": 0.8 - }, - "F12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 27.6, - "z": 0.8 - }, - "F2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 27.6, - "z": 0.8 - }, - "F3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 27.6, - "z": 0.8 - }, - "F4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 27.6, - "z": 0.8 - }, - "F5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 27.6, - "z": 0.8 - }, - "F6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 27.6, - "z": 0.8 - }, - "F7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 27.6, - "z": 0.8 - }, - "F8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 27.6, - "z": 0.8 - }, - "F9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 27.6, - "z": 0.8 - }, - "G1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 18.6, - "z": 0.8 - }, - "G10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 18.6, - "z": 0.8 - }, - "G11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 18.6, - "z": 0.8 - }, - "G12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 18.6, - "z": 0.8 - }, - "G2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.4, - "y": 18.6, - "z": 0.8 - }, - "G3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 18.6, - "z": 0.8 - }, - "G4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 18.6, - "z": 0.8 - }, - "G5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 18.6, - "z": 0.8 - }, - "G6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 18.6, - "z": 0.8 - }, - "G7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 18.6, - "z": 0.8 - }, - "G8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 18.6, - "z": 0.8 - }, - "G9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 18.6, - "z": 0.8 - }, - "H1": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 12.4, - "y": 9.6, - "z": 0.8 - }, - "H10": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 93.4, - "y": 9.6, - "z": 0.8 - }, - "H11": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 102.4, - "y": 9.6, - "z": 0.8 - }, - "H12": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 111.4, - "y": 9.6, - "z": 0.8 - }, - "H2": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 21.44, - "y": 9.6, - "z": 0.8 - }, - "H3": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 30.4, - "y": 9.6, - "z": 0.8 - }, - "H4": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 39.4, - "y": 9.6, - "z": 0.8 - }, - "H5": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 48.4, - "y": 9.6, - "z": 0.8 - }, - "H6": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 57.4, - "y": 9.6, - "z": 0.8 - }, - "H7": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 66.4, - "y": 9.6, - "z": 0.8 - }, - "H8": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 75.4, - "y": 9.6, - "z": 0.8 - }, - "H9": { - "depth": 19.5, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 250, - "x": 84.4, - "y": 9.6, - "z": 0.8 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "thermocyclerModuleV2", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutB1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "thermocyclerModuleV2Front" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2150c88525b8f6fc03fe2e091f5d31f8", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "B2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cebfc8e3e1a8f6268df9642d656f6037", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "B3" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa440f9fde0ee999ce2087c7fa5286f3", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "A2" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d5737be77a0346d99423e7ad387f09d", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "A3" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 200 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_200ul", - "quirks": [], - "tipLength": 58.35, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.59, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A3", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1", - "singleRightSlot", - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35eaa8dfffc6f997679ea040467b4583", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "addressableAreaName": "A4" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "A4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "833a30e00341c3cb775aea8931a10e8b", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "addressableAreaName": "B4" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "B4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7717cf065546e375a996110a6d43ff9a", - "notes": [], - "params": { - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "addressableAreaName": "C4" - }, - "namespace": "opentrons", - "version": 1 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.75, - "yDimension": 85.75, - "zDimension": 99 - }, - "gripForce": 16.0, - "gripHeightFromLabwareBottom": 23.9, - "gripperOffsets": {}, - "groups": [ - { - "metadata": {}, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "tipRack", - "displayName": "Opentrons Flex 96 Tip Rack 50 µL", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": true, - "loadName": "opentrons_flex_96_tiprack_50ul", - "quirks": [], - "tipLength": 57.9, - "tipOverlap": 10.5 - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_flex_96_tiprack_adapter": { - "x": 0, - "y": 0, - "z": 121 - }, - "opentrons_flex_tiprack_lid": { - "x": 0, - "y": 0, - "z": 0.25 - } - }, - "stackingOffsetWithModule": {}, - "version": 1, - "wells": { - "A1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 74.38, - "z": 1.5 - }, - "A10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 74.38, - "z": 1.5 - }, - "A11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 74.38, - "z": 1.5 - }, - "A12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 74.38, - "z": 1.5 - }, - "A2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 74.38, - "z": 1.5 - }, - "A3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 74.38, - "z": 1.5 - }, - "A4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 74.38, - "z": 1.5 - }, - "A5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 74.38, - "z": 1.5 - }, - "A6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 74.38, - "z": 1.5 - }, - "A7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 74.38, - "z": 1.5 - }, - "A8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 74.38, - "z": 1.5 - }, - "A9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 74.38, - "z": 1.5 - }, - "B1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 65.38, - "z": 1.5 - }, - "B10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 65.38, - "z": 1.5 - }, - "B11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 65.38, - "z": 1.5 - }, - "B12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 65.38, - "z": 1.5 - }, - "B2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 65.38, - "z": 1.5 - }, - "B3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 65.38, - "z": 1.5 - }, - "B4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 65.38, - "z": 1.5 - }, - "B5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 65.38, - "z": 1.5 - }, - "B6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 65.38, - "z": 1.5 - }, - "B7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 65.38, - "z": 1.5 - }, - "B8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 65.38, - "z": 1.5 - }, - "B9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 65.38, - "z": 1.5 - }, - "C1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 56.38, - "z": 1.5 - }, - "C10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 56.38, - "z": 1.5 - }, - "C11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 56.38, - "z": 1.5 - }, - "C12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 56.38, - "z": 1.5 - }, - "C2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 56.38, - "z": 1.5 - }, - "C3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 56.38, - "z": 1.5 - }, - "C4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 56.38, - "z": 1.5 - }, - "C5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 56.38, - "z": 1.5 - }, - "C6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 56.38, - "z": 1.5 - }, - "C7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 56.38, - "z": 1.5 - }, - "C8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 56.38, - "z": 1.5 - }, - "C9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 56.38, - "z": 1.5 - }, - "D1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 47.38, - "z": 1.5 - }, - "D10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 47.38, - "z": 1.5 - }, - "D11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 47.38, - "z": 1.5 - }, - "D12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 47.38, - "z": 1.5 - }, - "D2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 47.38, - "z": 1.5 - }, - "D3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 47.38, - "z": 1.5 - }, - "D4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 47.38, - "z": 1.5 - }, - "D5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 47.38, - "z": 1.5 - }, - "D6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 47.38, - "z": 1.5 - }, - "D7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 47.38, - "z": 1.5 - }, - "D8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 47.38, - "z": 1.5 - }, - "D9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 47.38, - "z": 1.5 - }, - "E1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 38.38, - "z": 1.5 - }, - "E10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 38.38, - "z": 1.5 - }, - "E11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 38.38, - "z": 1.5 - }, - "E12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 38.38, - "z": 1.5 - }, - "E2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 38.38, - "z": 1.5 - }, - "E3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 38.38, - "z": 1.5 - }, - "E4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 38.38, - "z": 1.5 - }, - "E5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 38.38, - "z": 1.5 - }, - "E6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 38.38, - "z": 1.5 - }, - "E7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 38.38, - "z": 1.5 - }, - "E8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 38.38, - "z": 1.5 - }, - "E9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 38.38, - "z": 1.5 - }, - "F1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 29.38, - "z": 1.5 - }, - "F10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 29.38, - "z": 1.5 - }, - "F11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 29.38, - "z": 1.5 - }, - "F12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 29.38, - "z": 1.5 - }, - "F2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 29.38, - "z": 1.5 - }, - "F3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 29.38, - "z": 1.5 - }, - "F4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 29.38, - "z": 1.5 - }, - "F5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 29.38, - "z": 1.5 - }, - "F6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 29.38, - "z": 1.5 - }, - "F7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 29.38, - "z": 1.5 - }, - "F8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 29.38, - "z": 1.5 - }, - "F9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 29.38, - "z": 1.5 - }, - "G1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 20.38, - "z": 1.5 - }, - "G10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 20.38, - "z": 1.5 - }, - "G11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 20.38, - "z": 1.5 - }, - "G12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 20.38, - "z": 1.5 - }, - "G2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 20.38, - "z": 1.5 - }, - "G3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 20.38, - "z": 1.5 - }, - "G4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 20.38, - "z": 1.5 - }, - "G5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 20.38, - "z": 1.5 - }, - "G6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 20.38, - "z": 1.5 - }, - "G7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 20.38, - "z": 1.5 - }, - "G8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 20.38, - "z": 1.5 - }, - "G9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 20.38, - "z": 1.5 - }, - "H1": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 14.38, - "y": 11.38, - "z": 1.5 - }, - "H10": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 95.38, - "y": 11.38, - "z": 1.5 - }, - "H11": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 104.38, - "y": 11.38, - "z": 1.5 - }, - "H12": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 113.38, - "y": 11.38, - "z": 1.5 - }, - "H2": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 23.38, - "y": 11.38, - "z": 1.5 - }, - "H3": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 32.38, - "y": 11.38, - "z": 1.5 - }, - "H4": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 41.38, - "y": 11.38, - "z": 1.5 - }, - "H5": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 50.38, - "y": 11.38, - "z": 1.5 - }, - "H6": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 59.38, - "y": 11.38, - "z": 1.5 - }, - "H7": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 68.38, - "y": 11.38, - "z": 1.5 - }, - "H8": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 77.38, - "y": 11.38, - "z": 1.5 - }, - "H9": { - "depth": 97.5, - "diameter": 5.58, - "shape": "circular", - "totalLiquidVolume": 50, - "x": 86.38, - "y": 11.38, - "z": 1.5 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "C4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadPipette", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3d4116cb785f3476f5eb64127aacbc6", - "notes": [], - "params": { - "liquidPresenceDetection": false, - "mount": "right", - "pipetteName": "p50_multi_flex", - "tipOverlapNotAfterVersion": "v3" - }, - "result": { - "pipetteId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadPipette", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d105a4c426c621c62880855fd04a9c3", - "notes": [], - "params": { - "liquidPresenceDetection": false, - "mount": "left", - "pipetteName": "p1000_single_flex", - "tipOverlapNotAfterVersion": "v3" - }, - "result": { - "pipetteId": "UUID" - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63f43dcd4c1c167cb17f7e95c7cd3404", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A1": 85.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bd3255f9c6c7f85ef0b4a261d5c699c", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A2": 1000.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78c7664f53dac6b7e735be084798334c", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A3": 1000.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d8e7316e0d473209f5de06a7e91de9c", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A4": 1000.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d9c85dff23160df80d2e5112dec9d00", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A5": 1000.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "193a07c3b2e5fc14c20e1851a90e3883", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A6": 20.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9333830ee2f61283d9d6c62abe0e65c3", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B1": 960.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e77664417fc33fcbe4dd17077688882", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B2": 200.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "545eb2fe67a548186bf83d4d20948c83", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B3": 20.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1d7cb9dc241db4ea49622f989328151", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B4": 50.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02f41e154ef9d8e8f28434d121b98b1f", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A1": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e0be8be9520cf00730e052329b20a6f", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A2": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4eae4abfa42e7dfd35f041961ed7d295", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A3": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00724ea81168c49136f49e414e766dce", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A4": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "481a251d7e36cdde0e5ce9e9d073c9a0", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A5": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7728cd5e12d620f100a50f9f92f59355", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A6": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "439c4db087dcc7761df44fa529144e3f", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A7": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c02a7c094112293c00aad3a2f9570fdf", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A8": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccdf5b9bc22fddae98f975079eed2a49", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A9": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1f1579fcb957c1489281ddf2a6c680a", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A10": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "accf46b47c958cadf603e8f4ad0b843b", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A11": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "619fb1978e37f649d6f907b4e360d62a", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "A12": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23eebe1de15786f03513d4c444a06464", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B1": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "625df7b9306fc288743e7d8695f6fb0f", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B2": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c99d22059e3fcf09300c39008a7a2a78", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B3": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4de739ec5cecb5441bd91aad8cbe8bc", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B4": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5d42d65364927adc402718c458e93de", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B5": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fc6b5eed6ee549c1ed459905a75ba28", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B6": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20cb5f66fe84fac045206282f5bdaf38", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B7": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cfaa80882ad39922f2d3b6420dabcd4", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B8": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dcbab08b277ed83b51c1c4b14728d36", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B9": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e194547fabf0490473b9e4826cde38d", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B10": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b414d260dbb67c5a589d1dbdbbb3fe6", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B11": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ec93cc9d5e94c6c0572cae1079a0895", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "B12": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f5e2eff0e971145c35276d7bb529479", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C1": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "623859e3bce52e0623fb05e529d6076a", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C2": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0034dd38f961b3c7cf8429c3efd23fb4", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C3": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bbba4d07dd3b8f470fad4d617dc9cec", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C4": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e8dfa7d6f82cd9cf4698e4e34a1a40d", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C5": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aba451af7de91bb7a87dce5ce8345a33", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C6": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eadeb9b935a1db7c8d8816847d981817", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C7": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27ffaa4ae1023299f45e337d9620843e", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C8": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82ab742f6fecffdf03033be7287b3ac8", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C9": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37f1dbc222d1fbceaa22056e9d8faab0", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C10": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "736969380c116a0d5eebe3de52427e8d", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C11": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a2ce94a1734d72a6a34b4ff86a0733e", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "C12": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c5a2b13f75d3ca23014a6a587d80b8f", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D1": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36ca0bf699f7e032133ae396c5e37f5b", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D2": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44e00cfd8e0bb7aa5935f96866227d79", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D3": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b71e43263eb54874da18e512f0676759", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D4": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a5ed73b1c6409082fd5b49c580a7856", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D5": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccdf7c3138983066aed124da00a2b32e", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D6": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7a58bda962ab4fed12c24761e409285", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D7": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8040cae0d30b9bb4deae23e999bc5241", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D8": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf8cdaa5881e7830e84787a3a7e6b4eb", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D9": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28f7e9f211594f4c265aea09e448cdcd", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D10": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "850a7717f27c58b029c2a29c15573a5d", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D11": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLiquid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0fa9863d6c9216c101e1ed2d1c988500", - "notes": [], - "params": { - "labwareId": "UUID", - "liquidId": "UUID", - "volumeByWell": { - "D12": 182.0 - } - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "233ec787807b701fffaaa6d0c245bc3c", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78b737b870e87581bd381925793ccd14", - "notes": [], - "params": { - "celsius": 4.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "646b45e4907e0c299350033f9d1ef720", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82a4c24c87c4ff0462b8a3745f0b5b96", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84380bc0db9496613135c167a66ac774", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b51ba261953dcbe5c02c76a8f17545c8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74edb651ef4e5470b28f959beeb58ff5", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "658390783d2e6222f96420596c64e6eb", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "916cc0af26bb27e2de7650ffc51cdf45", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 14.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f04dcd4c09814f92695ffba08e36813", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36cc272d9c977b45faf7584e81739ce1", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f351258524c471685d0e33be097f1d22", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2356a5f3ee5a892352485b0f568050c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4621e80643e3427d4eb0e550c7f081d3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3018b842d8ad69cc359e1c2f1b514749", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54afbe480a1e0212e3751007f3a1c28d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2cf28376f9c66f24dd5874bb25eb27ef", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6418a13b46103419f3f9fa6eae3765f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37aec79e7251d6db3cca0e4a14b519ef", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87aabd08e6e430ae7eac82f781c6327a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de8b1b87f2701474da3de6292b781d21", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42fef1a740353d91be4be5098f6de069", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1921e890fb19f99a70ff26d416567405", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdede2b0c9e5475849e6ca26918f9cd0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 23.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cee72dda2176fe90872b213abf11f0d1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7aa6a67e734f451d3b56343e49aa9449", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cc041bd07a43aa072d0b748ebf12b39", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e1bcb4c3266d95e1659a1a8c05933f0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f134aa85d20e849b29c27c11d422971c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe92913084474bf77b25c56d353c9680", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c93f9cbe34e37600cb76470b316e685", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3b5f26a4784a52cd902ea6e6c645faf", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecf5cd3a8ceeb97ea2ff13992dbad8f0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2e9068af13fe5c04ec408b55ba0b862", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ba33635a2a5e5961c9018dcf8e6e3cf", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d757df0cdaca30ca83d7b8c47625d163", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a42b1f75cf0b00ede8726b5f5ebf62c5", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e40c9061db554b75994f49e371cc1783", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09b683a11069f0d89eec16472b96021f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 32.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ebce39047a48d88e72300f2531231a23", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67f4a08b10a2bfbeb42c5e28f5057384", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de9acfc1b5fad6157e7d1161b2e64243", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9fc890c99904d2a1abc919092f0e085", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b30cf3b1329ba4295ad0e4e41513abb1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cc638f8a892ff90dbf95947c736351e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8fd63ed6fbce40a086899c3fca031d7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "574658f5144dc9061048a66f51571b82", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0acdaf08b49380e6030c6566320c97f3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee5acdcea09ed3f4171c5f38fe82e3d6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfc9b30b59f788746070ee21d7368234", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43ef40fcd889a0a091928e699b54cfdd", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a841f637abb9a6d8da7752732b3e8df", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a89f05888936f10af0f7713f180493fa", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "366d8ef5dd1ef3e16e758d199f92fe84", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 41.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f5d62c4c40d7f507ac715fc39f1776a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7225b92ae83f7f5742a41edf805c56e7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85bf7a7ce1de9b925f54537d989ca46f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57ce0b2f46b6ccabd266601c6646d148", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6754a7e2345750a2c46919ae5963bf3c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3632092863913c34c670f03ddabc9792", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cee141bd004db54244eeabe77fd2127c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3277f18eed13b63833af6606c322af2e", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a776fcb80dc3a6266d57140b0a402092", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac647adf47d13cfb559e8ab2a91b2564", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c84e3923a8a56251703847464193bcf2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db1db1eec9f514076da35cc70936a187", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77e13f29225f1451617f60b8f9525751", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3f70d0d8a66b6e1b9316044abde2645", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5a4f186fd1b44a727e0a52e61084396", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 50.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97ddc69dc98af66be9a555eb2640200f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3690dff0f715cfdf478e5ca3d2981b6e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d6916f67542185a36fefffe8e732b23", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ace5007c623b8e9d023e1857d9e341a1", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3e20d7fe151074163f49105cff9c030", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c1144e3b56626535fb5b43d590b8c50", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "383f57a5aa833aaaed345a29863bffba", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec719888d8512cfeceb12c2be42b9075", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3338e7f65cd4d70e69d536faf23b275e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea31a2a6cadea4f9309ef40556c9b482", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f63f1b0d14bcf270653b04ed509a1d80", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd52f1ccba368e9e01bd62e6246744bc", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29a4c1f980c7be3445bee726f5fa5c21", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae1caab5d27e095d178dd8f186f72f09", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f5469eb965d2b1a5347369fae364150", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 59.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "769f84aaedfb4558f5b7a09f616d94b8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c66cbba86431ca484592108a9ce8dd8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de72d140f64dd48a915b6aed66add9c1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de8778dfea4a9bd156076a6cb4e3a1ac", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2943eaa4509fc161ed4c4a87659256d8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39a7a0e2ac039707e94b7bf94bc25cb0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f877451848b13a615985023f49ff6762", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ba6742966fa1d0e7d2067121be8f9a2", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df3c716b09312a2c67ad05850edce724", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bacfb8bb01df395598679e66eda3e5ab", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c416ee33e087033d200d46456038c79b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b1ceb08de3166567249756c69ceb44d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4c7691025bb619dfe142472edd18037", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6395e9ef5922123e5ac3c6aea7ee4f9a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0969052f318519efc671710b1425c487", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 68.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7c54f4245bb87ac8209e0d76fee6773", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2f50067bda9d2c6ba481e34e78c199c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c991c27345512e40af4e5002896a09d9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4893bd301c57765fd3ca2f6e62cb2885", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d92817f0b4e9fc1c827d42b6d8e669c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adbb0b7e7b9d36064e92b279142aa8b7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07bfc19c429143e2a271416659b9eda8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c01d214018edc492f0da7e79a42f95f", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bb75c2b55927a958ab30b7fc0ef3901", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "338c8bb2599c9e845808187e179c4cc1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff7f4047e85d7a90a002f0b7ad4cd41c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab5ef0ffeba9f4d7bfe89335e45859be", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6279e5d59faf93d322e98a0ab7774aac", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a76a8c10816f10057126dfc48cdc424", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b935407c54d12f0a21e439fee683a58d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 77.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bfc3202f2b86a1b239adf80739bf2b6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e1f1c1c6daf765e86e782288089f863", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc90ab435d6ff7de5f6b3badbd33ed7e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "319ab76cb34e145cf6e564c17469e10e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbb51791930809fc99841a243b090722", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a45b35aa1560d579a1c6c20215e59f21", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76af19b39ea7fb7dc060bb088f0a3efd", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae9cd03472cfa75db16639c952822928", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f08b15d4810a9e4971a258832065a57a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ffa37f2348d21884754b6e4a9897dd4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fb0f56aca18129fa9bc64092f1e5274", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3100de7f47baec7299c50d8a42df2e4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d24bcd0ccb8202ee62fbbe1062db25fd", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78a41ad531085e6db4952b9b75f11d26", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5544dac290dab400af57cceebec3fd0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 86.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd4aa094376c2123c25e29de82a2db94", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fd6aa00a1fe4a05e508002ffd6077ec", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81b8a822e19f0feb73a4c2186781bae2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ed265630039ed3c95aa6e8709ed8de6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2629dbba3c15215d4ab86dd32f0851d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3cc90e1f83150ce5ca678254bddbf8b9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49a5b03fd2b8f181ba407e2a7c1d072a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4037440dde910dca45e004a4d217f3a8", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb8c0a4d44b704c82b0d3bf9c8d3e5eb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa0f7fe8b4f9290079b7760703a4b211", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d21f7948223b05a515d9fe235db569a0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d695a5bced56a4a766deafa724cf6340", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51eb499230d6225a19782ceb90ab8fc6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bffa919f50b952a12d995d8e954b0428", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49c6baa6b3a7ac299250cc3aa5402eef", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 95.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3b2cf3aa93f03bb46536aa0aa928394", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fa970f9930cc60d450d02b60c19a10a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19924f0e8cc8fa8a39f11aca1bf70e06", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0b0b7f7ade6ea89992ca53fe6a295e3", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3c893de9b6b9972339f7f4308dd04e4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03011036f0090f58a87e743b459aa1dd", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3a72428a7cec0c78a248e1ead307a79", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f003f6c09ca3f3a462c315ec9e0543c5", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "940a57dc284cfb7459dcb67f2facff45", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81073f17c71f18d289b1d3169757a0d6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fe69e64636565bfe6d1019037940e63", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfb6efac445684f8c20778c17591e2dc", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "972e1ea02d0a8976b2d694d1588f81cd", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a201befa32e19f066aa6e787fdba08e7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da01fb5abef8bcefcd0657c59b02929c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 104.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d84f5c6351bd5ebb62e3c3f9150c084b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98d946c335013ecc9d34ed5209423f44", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79805cd244275e8f0463281419a3b9b1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33a011cf5f0f9e275b55aa8f719f2a10", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "536e91eec33ba51afd559beacb8344ab", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "770aa9516dcbd9bf049c227ee7a0a2ab", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca7295d49f0bc16df9e7045c3e27f5b7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60715a6ca33afba4249737851ec057b9", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "153a27c3dab2e7f24b7b52edff37efb6", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ec027116b9c4c0d8d03e24cc4ceff7a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94180410f83f92d7475db6823777cf5f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c89d3415afe3809b2e9a12cae2468855", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5b582c942df9478bf4f1c1042790aad", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "822ab01e296a067c97f78cc7ffce4ad1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce8cf8e3949dc88afb49c59b15675190", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 113.38, - "y": 74.24, - "z": 17.3 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81a029c1fb3ff61b379faced5d878b24", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 14.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 14.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0953a5f8a45bb485e9996344b957ced6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "720ab98210b893c90fed2d7c75eeb089", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "579dd3d4d4e2b1d92abf0d188c29ad20", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92bd2970e0c1f337152d26fa22c7e7a8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bf1929442745c55131c7585fe3c98ab", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fc2c6d9d339fd3e7d2ffb276307f381", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f961ba46dc04bb4956c3a10e8ff0ba81", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91476cffb9420dbc7abae30595f97b35", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62228b3a4fa93c20fdadb379596c2548", - "notes": [], - "params": { - "message": "Moving sampleplate to trash" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ece081772e44a7ec3505ffea9cb424b4", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover", - "stagingAreaSlotWithWasteChuteRightAdapterNoCover", - "wasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "temperatureModuleV2D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11413bd1c8888a869645d0318a8ccb5a", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e340fb1f18c0b4f6bd4f1431b5869263", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f752e4e77ac1803d05a076a0bfdb1039", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfff4aab8e691ab600b66452a1562450", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e763b942577112b6c4b249b441dcde8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ebe4e9046e9cc8dc6ae0d64c44856f9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04ab135d48d2dbf5866cae102696ca13", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c08b6f053a946ad478b9d556be57c0d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "398f7fff440f7f20a4e374dba7535de2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44f6c1d5b750ba5bb41f73c3748f55b8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9083d99ad48df79c15273fdaec21bd9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89528d8d32bcfd58960943c06ceb4042", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5a149edb67f848cd6f73ab8d1b29850", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b885aba6919bcdcc243b43711bdfd57", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93a5f6bd8c86830382585ffa4920c6e3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3dfa778be9259fe4777ae0256cecac0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "37b2d98f08e26f73ce7d0eeb91706f32", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f4f9cc85ed84c791638b73dd95c01c7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.3 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.840000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63de611d1a63faf31689d89fb83db84d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61837ffcafec3cdf863dd6a4e7737bb5", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "823ba9a552434ffd031af9e10e635348", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "308a2b34d30cf83bdf061f83180bd00e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2de0d24de6d86bb655aa481f552ff432", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ea4bc9c234bc82bbb024436bd5b8e60", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf0f6e78176ebf5142cde10f0b4bdf0f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "131ebd8eab0d5b3a12b8ba4833d979ac", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b49ccc47ec3db04d413631c080c5f59c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e3fa76cee6f70fb8bda6ef0760329852", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2b2c834653e9ae486096dcc037603aa", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b32d9dd770d7fb93c6c80b8bb9d63aa8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9287db7d66f9ede93bb8d6037e0f39b4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a219789d6acc88850b573cc9908bd6a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35e6a9d002e02495cfde77672154b43d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b25544d0551be4f08f2614692e8bc7a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.3 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.840000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b762d14f1b4a274ff573c9434437402a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9700aa8a39abb86b758753f005c78890", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9931cbc33b203235227daef77be168f9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7ffb15cb185d157866ac66ba6bc2ae6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00d76143ede1abc4eb4de124867f5fb0", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b89cbd5d819a2be6414efefa854286c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79ff98f75a83d162c5b41d5af6094126", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f1b88d607ec33b1fb21683025773c0b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32f0c122c20ed7fefdd7560cfb9e73fc", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eae126d00e0e2d7a43f5aa85552c92b8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63de87336a44e894cf81b003a4c18b53", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d9d836e9091f9464a99700a7b88fe4e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad5978a8dd61e4a4f560fa679172f07b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a1711ed9f12d6a4c5b9da24e44700c3", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6c18b107df8fd4f61bf4f8ea98c4f080", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8ea1e1f5dcd1a78bce6139de7091705", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.3 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.840000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f0d2265096f10ad6a47666ebfdbfaaa", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f65f7c5d4fcda28378bae214cea9f7a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7dadf7b098305db7b590515a4abddb6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "715e8fb690929abb4cd2a83030b526b8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44af5abf68a42214ddca76d9785ca325", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2db7647433c1bc739b310061bb5e5eca", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bd8ba53bb64e65f8eb4e707d2ffdfd0", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48732d5950ef3dd7b0e3ec2fa8281257", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d72717bde23e328142ea841d2a45e82c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81866742d34675652e9429374f42ed1d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "274127d1a40db7d5991d655defd95509", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a02409915cfad6223bd706acc8679b29", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cb1e9e98180a7f95c2183ad6b723edf", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "679be3f3c1c0858325e619faacf15f48", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00e4dabd8a941c6b6608f30f9a41505f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "260e9906ee117f4b39a1ef01e5afb2fc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.3 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.840000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60ce9d16d67f66d6b1012a49348dca89", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2beaa623b54ce23e6145b70f4b18b88", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cd41d2d98ad3ac2fd0a5a3464ef0c00", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "964fa34d995b9ee67318d2bb8c5e68c1", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7321da1a0b0654bcea075a61fa7a61e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcce36390ac57ee73fdb214d43067afd", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf0b825199cf8c5befd676f679d4840f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9026c3cf5e4106e18cdf32f9bcdcd198", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e163099639a635c314c3eab53bb50454", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e014841395fa0312961d339686aac9a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78bba6b2d091106124262a612c711b78", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5264c0c1735329f536f6ca1ea8b06be1", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68ff17f385ed5ed3a10251363dd0a424", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdee64ef16771cfd6999adae153a34d1", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7ad2395dc53028fe58164493bb96953", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b37385afa1b874aa5815168460ff3298", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.3 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.840000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3256b50ddf7529622ef4d804f3c15e78", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba39ed29ff3915aef0ea2c7b1026be07", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df3359cb2c3cf1b75d754baea6a43274", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61942fd99c3ab3e272c9327e983137bc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a142c7e0ce9e790b7666e79a60816d9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af819d34e526cb9f5f88efe00b477888", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56c47ec51dfcc9243e05d3ea968ee4c8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e458b53bcf29da1fdc989262dd7af874", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61e30fb005a5d4b21461ce6e8a2d646c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f394a4c77a5db538185c34651f29d117", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c01f1393c1d6b56ce5a1bc633629481", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88555bd730a66a01da26f353515a2a57", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e51b88810f7e7600ebf6c0b4b072088a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41b5ca9ac88471ba75a43af949ae6c85", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a45d2020da468f6af3158a01e4c9ff0", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b27adf3393a372f6eb22f9bf42a95504", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.3 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.840000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e7c4ae46e1368bfa90c670b3fbe8e0f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c215b603b1c396c26e050d5f2212933", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbe58ee9b6bcbaee25a6de813ab933e3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a1a080cbb747478586a0c3c6992b01c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26ce9f7d99346511144f10d6acf29fa8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d100476b42fd7afce7897082f8c93a1e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa44846a79cb18f573fa6a233687e9f4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3fb70d4dd029bc294dca54ae359de667", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e03a8bb77437cc0ba22d527d8534e7f6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67aef318d58cb3be9a5de985b1feb033", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d07d1c93af3ae3ccbac0079c86d67d9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c278f7fd8c21596fc72ef38294f1b14", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9f66e9c1ebbca202f0b12758ba83a0b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1ac8c48fd6e956874bafd78d05007d4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b383dbb40da5b4e8ff195e9e215a3855", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a791434717aef6b543f62fa721882f3", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.3 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.840000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bc54c73ca82f87a0dadc18f886ca856", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c061e4b9756ff1984d97c70354f71bc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4bbb474ea00fcadcdfae055aafd4037", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7a5fbdb755af32d7d68847ca3a98906", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4acd101c0d7dd0f7298dca20a4185e53", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8eaf11ff47ef1971d227f7de1f898577", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aabcfad5b5f04361e7ffd4a76365071f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2f8d2333d75c210c8b5d13539371068", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33f60455d76d051ef290a48399138b96", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74963c5a580b355fcffe916fd9bfa1ca", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ba3ca1c051b7fe215412709d27b71db", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "addfb9acd18c2a4312fc8a96535a321a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f42e4ace994c23bbfa0867f6cef51eb", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e30e091fa61f5ff1f43f0e77a777ba9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d49ee2a8a873785622060387b96f9593", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e5bb21bedbb58b5c380634b3c2a2ee8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.3 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.840000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1aa8565fc0daa4716dff1b39dd2ab6e3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d7961a49eb95f69d3d7db5b54a57343", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "012dde8549758c3874a69b8b01568eed", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48644ccc026dc972ceea0bc17f61c5ec", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69f2dcfba6d4efc2ab25d8f285234274", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1ab8044eb840375badd33efb2c08b57", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "522f99bfc670e689d25554634b8bcdfe", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3bbba175be59c7d9358063d7d316590", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "044aa3af3a807e047d7b325f59030734", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 25.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d02e5973faa80378b73c48f871c1329", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc8b78cb59db73995f5b0215fdc1bd17", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a7cdfd7fc5c90856b4e26596d5eda56", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b55bb83340e91acb9931b93976133fbe", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13596a2fb42e75b06dd917b26b2c4d58", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d17a4cf9975ffa58e5736843dad0097", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcdd15e63f710c29ed81db3ba9f5ebff", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.3 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.840000000000001 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "833222c3bf82130f39995217579f41bb", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "097ef5756cee08d50a6ef429fdc06209", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95d4cc95ef3f301622b866bee0ecad6b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02ad181a14a32b3c43a95e78b0ef7e37", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b03175c8ccb3a32ced2b419f21d9e6c8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c21e7d749e0764be710c75b8ac3b7318", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba52afed0f40e4f8646d8b9c581ce427", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49e82aaf3d677af400e8a5e74c56f272", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "242d983a23f675063e43729fb4a1a1af", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5124e0487b51f7f228effee6c5a1b43e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d640e0a91b23bb2c3918af88a6fb361", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a14bf8b029509bb464cc71ed238702ae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -117.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 6.85 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a34f5a118173c58158881bb25809e9e2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ae94c070f7a4402d3ef79bbd48122b0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "240a52705cdc43c33eeff869d5176dbe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e18da47617c5815c789fd166cc4e037d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8ac3e4703f12bfec7f4d52a82fec397", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8062224e293a78472b7743f1934421e5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11a53cb38e1db964b0212faa05fe4c8b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bbdac01bb2640a5eb0108df1f725b385", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -115.69999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 8.650000000000011 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00dbc719fcf97c6fce57ee0022e1fcdf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8cbb064ff2efaf56be376428fbd1eff", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4b2242fb9ee4b228339555368cab913", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b6c37fe89a956c62c0c8828f3ee6477", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4840e23d2b3c858f4f440f9bfdb1149", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a48958f1b874aea962f94f52041a009", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b3f1ef993fcbe6441382a3e76e9d4a5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5181bad1f6b72176ce0ffe7085059979", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -113.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 10.450000000000008 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd5c81cddce796b7e09fecbf26e25238", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e80bf6425558bd31b231caa29248c310", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02a560103365c60bc0844d69db34f03d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe29b9ca9ed3f51fe3491eb7577cdf3e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d8d700717f5ebe44329be137ff515a0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42aee47fcb87434afe4ec39edadb2dd5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77d1f57a4b5aa52e6db75198477dd39b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc212a625cf39bf5c78aa8e217f88e21", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -112.1 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 12.250000000000005 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb4c796e0207145dd57bb25fb06ae537", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6871455e9687a284ab45fc844451993d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9680efce5ac652c1b9085e93c5accc13", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13dccba3b72a40f283ff206e5cce7426", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20bd8b9b0988ba41b44802a88191bdd1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "202e89565f72fa5693fd8f08dbf40196", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0ee8765fdbf3f34932a7c4445f9c8d2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c11d85292f7b1a5545e8006876d461ea", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -110.3 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 14.050000000000002 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5cdc5918b7191b169732199d31d2249", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d31e4b8e260fb212e03210cf7c789464", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45fd2091e748e16d1c37f81802881865", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d9019fb994d6c92802d0e85ef062a3f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "033f58aff5fbd8bd48fe6b129e7aaa47", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "192e3fc722be154fa9902c63e853fc69", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d6e61b43c765239ab690aa36dd15e4a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a923656d58ffb063ec339caee55d5d9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -108.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 15.85 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d80f0353aad42898d2dd2864b64de7a4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48d7393254872fde828adf3e45e47b8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "605b23218fc27faf2909135ffa6c5a2b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "456f38573b7b39d9548b43134e3949d3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64a64f08cdfa5c73224a2ac09fec52cf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d04b3c8dd2899f9dd2c494c0a023c82", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89936ea86dce78d4eab7eefcc1021ea2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b98dc8bf57a92932ae06b499b3b7980c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -106.69999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 17.650000000000013 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4011e97acc4eda259535efe6c63449dd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7257369419112a86c2ec7bee314d4e9a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e6a712f160c6453f6f586b65bbd193c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64614f08454eb19493cee031d6edb05d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a47547a258bc6ed0ab844f046c21f51", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4568f28ab3c37937e774e03e34c895c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1445bdf55efe345fea3443ec32126d8e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89f61db9dc3d722eb9ea60ac9f0f29a7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -104.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 19.45000000000001 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e481086fd8940627d8195a9bb4176342", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a659b76232a1af190323ed6a00f0ab19", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "466d297a8ac6de6aae0df903b09b01d7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "252fc709d10ea303d71244b4fe3b322b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0bc8f1b6f1b9e9306547029de6fbe65", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d227c6eb8ead2eafa9640114596c050c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c39ecc409453ac690b3b8e22db1e96e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec00ec7498a46806ccef7de030263e02", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -103.1 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 21.250000000000007 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a7c87528512276699e103dfaa4e6f60", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "426a3ebcf08b01f359fa59053a1f7572", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee0dc6571abc3a0bd24b258dfa8e0ee8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "296330b9247f13b84a6282756e3b797e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d86cf7b9a969b2c6b598dfc404c62e5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "286df88f516fc3fad2b62c54180846e3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30ca64a8a195d7d2ef0b4ee34a06d4da", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df1af286f5c9ff1f490dcf7d66d2f8ac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -101.29999999999998 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 23.05000000000002 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1494ba826df7ca527aee2d45b8803c00", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49066649405307cfc421f1143055530d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e174207d9f6b32a8014ad601a13d794", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a1fd9c7a3f8702b64947013aecad861", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19572f6d41bf939dd4e1391f7a7ef50f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e40bb7721bd4a00504245507c99d917c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efb2535ed4c100a74dc6dbd27cff242d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47ae2b1de8b3b865405d050dbdd14227", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -99.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 24.85 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "017c0cf91d07aabaaf8c4300c66cf720", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1815ffdf039ef3550b7b521cfa2cc3d1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d25ba57657acd24d633023318d77d67", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e66cef57e0ad97459c24bf909474ee41", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76db843a36ccdf679f19ac76e0e5d97d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd796e4c8266e905314c33e660e03eba", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 150.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 150.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a95b9de7ba6ba4c0717707410ed57599", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff757dadeef83314a2fd5756ee951a5f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 180.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.69999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 26.650000000000013 - }, - "volume": 180.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86f21504f27c592c96d8a36db9026b0b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc06bacf7a9f705f622cbbe034675d76", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b90a28f90f8243c0e992b26c8e177a92", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3bf75380a9eab30d25efeb9032cf00d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de1c64a808518c6bf5aebd50749a7a5c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b15e7c08e84d5df66a9f588e020dfa3", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 345.56, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e02bd147edec26563561d7c3acad4ed", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 336.56, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61b5d194327bd00258fd504ba9cebc09", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 327.56, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc198f3f3b5886d6404075492d15a928", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8f66fe28c4e703b066425427176815f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c97a69c37054a14656fe4271f892e10f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53a9fae169295f1afe6b1ed9f0ece3e8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 16.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.200000000000003 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.740000000000003 - }, - "volume": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47a3d37c57ec6fbdf1226377637f3038", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 26.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ebb910effb511ca0c09da4f1a66d33e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 26.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a9cdc5a6cb1c78ebcaa6e56fecd3388", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3c1677af109ee58fccaa5f31cd100f5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5cf2fcb112d3924009d0b49d2d4f50b7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b387eda6f54df3a0f4a95f802b4c5210", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 9.6, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.63, - "z": 15.800000000000008 - }, - "volume": 9.6 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8889a698afaa1cdeb977b5683ba4b74", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 9.6, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 26.85 - }, - "volume": 9.6 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7b98c419e614dde9d2fe4e61418074b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95f3302e6bde9fe521a8963f14a6954e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c40b5742f2a2df7c435d7a2e3c839bc6", - "notes": [], - "params": { - "celsius": 25.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09c20a8acb3f736ac48301abee8e0b33", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15faae5395e1d899a985eab840f6cb87", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "749c6fb14c64f0ed684cbdd4220e0ffc", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da5f9c7fccc95d171d0d68713c29a66d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 342.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a684b707a2e61d36f119d9a9d631bc52", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -105.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 19.1 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58f3513c339e1a3c8ddd646609adf695", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 177.88, - "y": 42.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "311e54bde8b021b9294cb7b70477d99e", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31cffe2f4523c7145c26bc04e4a6f4af", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59479ef9da2f3676e778a553da8e9016", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 342.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0540839a2e4f6dd1b691b0bbead6f6c4", - "notes": [], - "params": { - "flowRate": 75.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -110.375 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 13.975 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bc990f688af11dc3d2945ad34c55ede", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 177.88, - "y": 42.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1c676a07c9f848b6fba61a4e56acb6d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "623cb74145b1a57d80e828b81108b1f6", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efac68e6216ba2be6efd936d9e1eee49", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcf87a63247cb4a91c40a7b318ec6d06", - "notes": [], - "params": { - "flowRate": 20.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -115.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 9.35 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecea4f71d56f06c56a7e9275e43fa086", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 200.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 177.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c84b60392de3db29a3f1288085359a5", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ded84482fa25581459ade8d41989df00", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7eb0bdc6986b629bf2103689210c9538", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 342.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eae2f423e36bf7aca3d9ff6a865fdf4e", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 38.0, - "y": 175.63, - "z": 15.800000000000008 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8618f8863de36ec67ac8bc6f3f9058b2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -115.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 8.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbc623b513fab169d6b8fa8643d2f407", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -87.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 36.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5d7abca9f8251a5841ec02256a3f768", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -87.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 36.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc83fbfc03da477e564e290097edf17e", - "notes": [], - "params": { - "flowRate": 500.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3972c907219a93b95ac1930c0326f20", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5486e799a19fed29a4439ebb0c391e62", - "notes": [], - "params": { - "flowRate": 500.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3d17d6cf6866d98ea5d05f1fc5ffbca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "615784d3375c85c29aadb7a04a517825", - "notes": [], - "params": { - "flowRate": 500.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40f8cb0b1c83f3e84f91e43a1ebd880b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "289892e0a0c53bd2c015094e908505b6", - "notes": [], - "params": { - "flowRate": 500.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b861606ed086be07bfceb8586a222b3c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bbc92a79934375b92b0bb49b76defbc", - "notes": [], - "params": { - "flowRate": 500.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7b56c979508ae04581f8d32aecb6da5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b6f9f12f257eaee919468e4fa0768e8", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 41.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba5a8954878a18c18505b6058b12e669", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 41.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ace30e2689cc265725bad9cfc1550de", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "220c63c0b07194d92497262f251e49b8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b36603151d287c1c319bf6479bf4145", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08c14dba19b8cb593cca11833c5133f4", - "notes": [], - "params": { - "flowRate": 400.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 55.25, - "y": 175.63, - "z": 15.800000000000008 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7df727d5c88b19db97e02fd249f16eb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -112.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 11.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02425b93a68da90afc4d3e64f1e84dea", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -87.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 36.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63eba8b2db5f4761c70be6c876890855", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -87.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 36.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91c35aca52d13a15b5c8ec77ad84a8ec", - "notes": [], - "params": { - "flowRate": 500.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b715fd8e9a5144be863df912cb1a9ceb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5312c12eedddf2c432d075bb0e397664", - "notes": [], - "params": { - "flowRate": 500.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fae5e13c51d4f52c3155ea797beb3453", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a957c79a14f3430eb7690b8db2ee1690", - "notes": [], - "params": { - "flowRate": 500.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b284d6b0eaf182c2efaa50f3c40d7590", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1275a63fe3241e3993babff8b1535d48", - "notes": [], - "params": { - "flowRate": 500.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45dcbf294fdf9c8aa4a31cdf6957a0e0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "457fb6deacbbdae8af4fbb3070c9f9ab", - "notes": [], - "params": { - "flowRate": 500.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a99e58d81c71dfd2bf2dfcb25af63ab1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6859329c6e78a30f78043a50cde27f1e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 41.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11d1b4f0e0814419f3526fd900441318", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 41.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd1396460ccc4f8c54b7965f236ccd49", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56b2dd1dcd2aa0b537a64ce4b1cb76de", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "315676743b7da7ebea103b3eb928c5f6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16d323ead2f63e105263c02c87fcbb81", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 72.5, - "y": 175.63, - "z": 15.800000000000008 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccfbb5784b2463c0f5d0b87f1fb85f18", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e941c246dd22ba395320cc4d61920b1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -20.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 104.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75d3274907a5595c3b4d976f330638b8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -20.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 104.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e7860115950ef6e4834dc75b07140a4", - "notes": [], - "params": { - "seconds": 0.5 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0812f45f699bdd6733cfdd87a35756ae", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 181.88, - "y": 67.74, - "z": 121.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eeb9ffe301d402928105c38cd787cb14", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 173.88, - "y": 67.74, - "z": 121.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ad3eaefb74a99cb7d9636d3039fd6df", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 173.88, - "y": 67.74, - "z": 121.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38e43dfd4db54e185141a757aae8500f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac54c51666f76f4f2460beb6c978befa", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a49a2757ba36cd081b553ca438967b3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1196795eb4860d140b489c4cf5b12bdd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 89.75, - "y": 175.63, - "z": 15.800000000000008 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "085ccad72eecf78aa47ed5912fcb210f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 950.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 950.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64a01aa9f05089885b491dc9296b6b4f", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -20.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 104.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9526cf350dd643bda1c645e93f7ca4f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -20.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 104.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43d981a83b0ab677ef067bb44485fdb2", - "notes": [], - "params": { - "seconds": 0.5 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3729012f7c15aa00e287875a72584e46", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 181.88, - "y": 67.74, - "z": 121.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29b3cedf1344cf4daa332487f49085f1", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 173.88, - "y": 67.74, - "z": 121.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9298f9105eb6eb8093d7a8f97925944a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 173.88, - "y": 67.74, - "z": 121.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "045ab1f8013c89ae9c775c6309869388", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "679a0f9e311fdc4c23f29acf3036ecd0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd6d25d0b641375b5a979c01f923703f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 342.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cb91625ac932029722bcb1b71584496", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 107.0, - "y": 175.63, - "z": 15.800000000000008 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6fc5b2c47567e32780670b659745cf1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41075b95d0a6f3c74d0f5b96aca42e09", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "585a8e4ff2e1382f40120e359dd63b13", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46723d16126f67ebcd9a82c6ac7ed680", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a80c57eb2186bd95f7f8330b1a69d245", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d21b9b56985dd99809bac447d577ae4", - "notes": [], - "params": { - "flowRate": 499.768, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "44dcd168fd43d8f0f3f57eb295f9c22b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8b375a127ab03f9dfea208b8c2d5111", - "notes": [], - "params": { - "flowRate": 499.768, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bc399512c9d644d555e037ac1ab8d44", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72d41d99b327cce8bd9f6188b792008c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b93c11341c025c2fc5ef5e5670a84c27", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1252a4d20fdf95c9035d32d74a2040e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e968426e11a79bac6be9034ec2426b3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc5ce69b3b64a941e2eec53d7172c736", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "295313cb3544126b8f1021f7a12f5343", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55c5891d350144e6da8a7c5969830143", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "511b945a6e825b68a0332c2629907477", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64b2909827b40ae7270914499a408088", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f526d67b398dcc446cfaada9b769265", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a48f98e5a526be46b6744dfb020acc1f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "548040e32a6144e36f45a5579460efe2", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a597e592ca4a987f544c7f535b2ece8a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63ea05ee9841a40de78c101ddb2c1b68", - "notes": [], - "params": { - "message": "Move reservoir" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04407e2031d24ca263cb343deed22094", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "temperatureModuleV2D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "temperatureModuleV2D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08b7f619f70be5b4ba7c346e1ac68a09", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dda824b3e0df36a9c841f6d1b0f337a3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d172b6ab8f30395cc0506cad17b7addc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43999b23fb977ab2dd3f899522872aa4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ba93a82ffb7d53ca9114f5bffec70bd", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "350a2c57cab1156028683d80b8e70608", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78643b57cdd2eac422fc40b1f68e8020", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6349f739a7d5f1603de7d64886e351c9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 12.4, - "y": 63.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed1f3c9dd95fb69c901c1f5d6ff4cd3f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ccf7047d07a7d8dafdf3470832ef175", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b784b14c075c1f2d3e27b0f01ba42288", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f89be436f9f083a7880ac1aa48f0f2e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "536a5f6d9232fbd36c3a026d01eddcf2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 12.4, - "y": 54.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "066db8168a0f04de4c60a199888d0f3b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35d401e7025124688d1310064b386794", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbacc4a723207985877388a05a5b8b24", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5028f29d8667936b825a4049dca3afe", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a240212b64669315d0ef1cb2a1062cd4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 12.4, - "y": 45.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8dbd2caabaefa8c867b57c162d1b36a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbcfae091a0c479f3351da31104db1f9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41fd1da3b5e6ec18cf4320bd9b36cda3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb9a64b87304231742a8a3f150a30af7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7a77e541644e3e8f016f6e67f25461b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 12.4, - "y": 36.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "611353cecdf43142d0a997eed788ec0d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22e1517fb8a28e8fcc8f7b380ceb0f1d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47d4933c4cf92308141f63f816324c7f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0753236a850cf1c3bae2d857d8a51f07", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "696b61c4312b41febd1652d73edd7022", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 12.4, - "y": 27.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f32bbc3573593de8c58c63547b6d4368", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1805bea25171077a092103fa301f87b8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2abcdaf088f3470a8869014d8fdc9046", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "124734a64ed8a1ad0ef1b4f586d39cce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "421918b790789fbe3d7c8ef051c82199", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 12.4, - "y": 18.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b00073b582b6f18f9c83b15936f4615e", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e935c282e9d2fb449031d9ca1bf71dbd", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc3baf40aca835c579886c66966ec2d4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cee444751a5d58da6c72eb0e3d0d8983", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4819a5c174fcb8928489c3fdc9dba3ee", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 12.4, - "y": 9.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43222f4ba11a02f7525cd3347e1240e4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9df7f478764d1a81a70448cee36213e0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2cd475f240f50f0a52475baa6084d1e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c2f3b1743dc2d120d4b6e856aafd92b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "069669673724f6c53525b9b0df5533b7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adc7bfb7bf79ab70db4d7f7e47a08383", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6123e7e9595150681f5219c6c753cf5b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0fcd9a6fef8258997157dca4c0ce268", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cf781ed480c63f4bb41815540f9385b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d264818f7412a71dc5570e13641265e6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 21.4, - "y": 63.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa0e2b8576dbd460541ac815028d3d2b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ec7a83870dd404dd3b232bedf53e3d7", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00a8298ece74d7fa60a35ecc509aabca", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61059f2efb10b38d1f03e9dc68b08dfa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b10aeceb0a00db86b29f157aecad0a3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 21.4, - "y": 54.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d32fbc5bafe05106fbc881fa40f827ac", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "146898b4b544aced6fc02b2f6b034f5b", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3ebd7f344d8b41f75f97458aa8c297f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C3" - }, - "result": { - "position": { - "x": 360.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "874daa7378a69580555c8febfc69687b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80ed9e24fe8553f3b38a42d685a95e3c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 21.4, - "y": 45.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d739162d809c930d5a3678999b0a09a", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f3468ad60607478bb1696b501753d59", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9efd11e4edc7be76dc4d5fd10de3eaf", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D3" - }, - "result": { - "position": { - "x": 360.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63df07dbe28701be7fbb25d93381c7da", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb14edefd3c8067d0839adf8b190da99", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 21.4, - "y": 36.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27f23c817c451007f17aeef47859acc3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed3a430b3777fb0e7c32c7f6e05881f2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1582e7727d27fd4cb5a45c517258cd52", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E3" - }, - "result": { - "position": { - "x": 360.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5d88daa83d8b81d380c3c10fb5d79d2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "198bafc9f9995477cfaef763c6354d2e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 21.4, - "y": 27.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7995850f8b691eabe1116d673e05138", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "991bcd99bbe9f716f22ea8147e5ad31d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bfa915c9ef99340012222d83e8e08946", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F3" - }, - "result": { - "position": { - "x": 360.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0bf4c4eca1a492b4a1e610d660ebd2a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bcc59eef895066c052e583c5ac822b8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 21.4, - "y": 18.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f859e5b1e6ef5a27bbf02dc21372fd7b", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "068b197b3e915ddaf60f119a3a9c149f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9351b91693eb2361f38b2d4aff5d201", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G3" - }, - "result": { - "position": { - "x": 360.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f8718b9722ae4718033b6da256d3eac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 177.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e380e1ddf91cdbdaa4b6758a7ee8c439", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 242.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 21.44, - "y": 9.6, - "z": 29.900000000000002 - }, - "volume": 242.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a21f34f6c51c33a18af444c6d8ce49c3", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9d5c07418c07f9f8fcf22516652da03", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f456b07e2c3b89da307a0717867d37d", - "notes": [], - "params": { - "message": "Move_tiprack_50_1 to chute" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85c240fd5943fd8d4c3762762753d10e", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover", - "stagingAreaSlotWithWasteChuteRightAdapterNoCover", - "wasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a370b55134aa530e6e0b650130ae9115", - "notes": [], - "params": { - "message": "Move tiprack_50_4 to deck B2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "933e3df003a88858229e25e034cc94f6", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "B2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "A4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e495a588a2d9f992097df1f5da4b6cb8", - "notes": [], - "params": { - "celsius": 4.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f841ad57de4953fa43bfb3e82cf6ced7", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a306a1b624a5d93297f1ed2290767b5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9aae4f5f62d2f42f1f5a57afd73fbde8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2eb824543996f36b447a14b251cbd16d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3de3cfc82b68d53e4875ed4210043c7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7181d20a140a17d3cf585f44bf835c2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10ad8c888f39d848b50127d399ed9219", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88c6d357abdf482ac1ba070028a0d8a7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "266f50e83ea9ec75b25d69c9ae375aed", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ecc0b7f5e2b57f82c0a555e41304e0a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0df63e36c05a97f0053d82b39258d09", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a44efdd251c5cd96832c3cf53ce28da", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a133c851d2a13f2861a754ddfbbfb2d", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "639e04ff78a18c297c44bbb1d215f5a1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ad2b7cc5271fd8e86d65c15854abedb", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b152d7d3e2d77078ea773e7b56062b90", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4daf5f0a5aa8e33bef443b5cc889f296", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63c0a480089a14d20f6e5e5f8ff1f33e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7990d432e3fbaa597220695dc09e5e9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a267e25e0f416cc19d21f2539d62d227", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70ca85d09549dd3e31399599bd20e1e3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77430441799c4e0c6e36b43fb6cf7e31", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b861051e5fe626404ff83f259c8b5793", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88b4603f961f9083c15fc3b836ea8ae3", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79b92077f1023a0ecf283f59c33ae45e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29d9f5afe8305d84c36512ff02a888c8", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "140ebed486178e9c904d3dbe5c3178e5", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19794c5c10086778de7f2237cb926e8d", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d005766c16d2301d8e415886ee126aa", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e3d3efa93612de746576d82e8f78b0e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de62cdf839669eef22def937fc8632c7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "619da6bbfc10811c75037a5a6cb6137a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e8f2a45fdfb0330155f39b6ac5b31d0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6ba072f3f0693c089721d2989d9e280", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43e8c5998acbfd60ccab19bac8e0de16", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68a97eecc777780a91e2b8759c9815f4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9b7c4f6010ac874f93507a33b1113dc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea206bd01a130fbcef8fadb704c451ef", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "389c725caf5f5e1f12a14bd7617564ad", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23147b88079b0a8773bcb384d161e19e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "080c7211c217675d45b9b817525ac659", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d17b6b4667b3415ea4b6eeb5462859f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a1b4bf1eb5c49e66e5e78a94bf1c6a4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "027aaabf01e923574ab47d0a9b6e72a8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a58598ba954c9439f2e01e04210bddf8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02479daf14c53487942bc8d31f61ce80", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb5562908cd739f31a6788da6f924343", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58a7f4fedb3b7d4b3c07ffe3df7a6e1b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2091dd2a7ae9a27a047401e02ea1f8d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "821b8f06970fe7d2afaec3c3faff2c3d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52630d27c6cfc23f0445a215e1586c33", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88b536f3f8d553a419b7e42c747f1933", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9931cef3f6baf865894bad74459bb8e0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "683e16c91a907349fbb1baf8053713b1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88b57b3b74975e917797b9335d98ad69", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85a05473d675b97261b2f582861eb5ea", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eeacd9e921f7a3335ea82ad22ee5b6b6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d4f87e85742627a30a0ab096098c6d8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76eff15d52142488e248bf3fc338b72d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb09a89d5b489ccb5e7d31173e3b7447", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f46c618c3072c20fc982e924cc9a4024", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6760de02453edd7d91d04849abb546e8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "084b7dcba978a629d1c7bfce222a4cd5", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f52fbadb6622427f2688e0a9488303e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b9211e60800641f6ef0241f3d7b95ce", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "073c2d5e77218be48bda0cbc386ccd36", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63ab02fc4ff7610c368ff9a0159a38ae", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "add487a2183349ad469406f70f110230", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e07f0df75e732604f90275071389bcc0", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b9d3021334b244a666522cb7f1434a5b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "262056c67b077f549d5b97bba9826541", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58bdfce633e84a1b9803648e553a12b4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 12.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4224cdbc4105438ec764568a174581ab", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4e133540458ebbe2968ba0d76d4db5a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f380743b4ac2d6d1f84bd591f1aefb1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6925047a50661ec265b58f97768ece9d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86e7834bd1d8d10ea493e19997ef874c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42fb7599ad52c7e5ab77ca2a8b3ac28c", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7d4c175751130395e8a5541e826a6a8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4479ac187d0ae7b41628150fcee4995b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31f4e22c9222d3fe4c7c5ee74daf5f91", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b892517c45e11baffc0a6c394a31b82", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d945200dedd27efd1d412dea6e5037a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a16e4fe4a55ea1cfdb3bdd0fca3dbb0", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63dd0dccfd323ae43b5dae4949b5148c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aaa3bc58f7f85b667e1d682fa7132677", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b36f5439e151a2fac67882f9e990b3de", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "467a7c59fbe89fe47e436e5df72a65b4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d417f7ad4cb0ae412111f91bb56dfab", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0133677a7de1af86c9cfd213b511307c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "551d688cb9b8bd7e8437a8cfc4bd74f0", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3d42fccc32329934c964bea8b60b0a4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63779b1adb74ffb8ff3b1220a1741664", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "405d517100ff176fd18adf144829cf47", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98bff288d6039a0dc66ea34cc3246b56", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8d2668583f9d70250d84037cdbd066f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3413ff07d39f590019be00f03470098b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73982671911f0a6c8afc82fb4c24b459", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c27e99e2eb10aae76e765ac79a991ac0", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0143cf1e4c1e6f970bd456b0f32f2d0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9746a74700ec530208401655b2fa996e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "387fd5964c4993d588920875ff3d3a80", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c455fac4c114956f4e413e9952110fa0", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee0d49016d210839e80073d235228f9b", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad7728fc51b68922fa9c1bf5f2838728", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bd9230bcd562ae045fab0cea54cc796", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4ac602149b9e3d819085037257704f7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1192302de98cb9880bd6d17de9b3341b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aa48b87d6c74311a4b1ffd1bb3896fc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0817ce270e1ac5e451d093f7405af110", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "641e75576780dbd9fefa4e5cfbad6908", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "262c9f8f5eb5d4e81aec404607e527c4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2d2492720582708fb19d60d3e28d050", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84ad2f013830dd20476c9cb8f5205f14", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5412ba193625b20da55a282511acd4c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d12de6744e92b6dda357da1b74208486", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c5bdd36c20214ce359ce5557802f71d", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93ad3102f66f2aafacfff2942f605981", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4211fb1d05bddd6a71bac9261c9861e3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "793204853bfb03a7ab5f378996805511", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0426c65e0a56944f22d0d3e262f468f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a16ff07e74fd215cbad48937bce6e5df", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb15fc5706925da50380b1e85c70a495", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78d97ec1dc7c8081ee467d8735399249", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e54ae8eaf6f3f47c358311494e1b945", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41219476e8838a1fc71c93d2f43eb185", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8511a0ee83d5f178e9acd27a4383fb5", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f201656877a3b203d89002a033a9204f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f1fe4b22c5da36d3328ffede8234594", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f1926fbc049a757655cd186402a280a", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3ca853db797786e567a9bad8fbc7fbc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ab7ef31b0d9404475485c657ff3346f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95068bee53540e50265fef54bedd39a4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af008c1942a32dcd8757730126376d4b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bfab2dfa6a94b73bd2b91622bfeae43", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63cd89ed4efcfa6f58cff4f5eec440b1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ada2c14d572dead5fb914714527cb47", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b3e74053201e0d85cbb4c81bc19bb47", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f88514aac9dc5fbae31dc6e9d25dbc8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53592250774eca1b9a240cd0ff1aa13b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "450cb410c2c50ec841d93475d70908a9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd8c250a6aa42ea92fa439483d6587d5", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "729896c34fc7f69b27f6015c0798d750", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cab8d7a5d29f3e905d542c552bee7519", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d7f96797a9eb4c975784b7e3bb3d0a8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9cd96aaded1b0b169fcf5d8058f138e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cebc59398746a331436700fab528e3f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2faff34aae098d0bda713baf617d702d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cee5f0f339eb4682cb66930c48639c96", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24fdf1286453712a4215e854be0effcc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 21.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1117900f45db804fd24890737ee4a22a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86f0b968a34e3a56085a56bd97fa5d60", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e248fa70812b47d150720f22af728d1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f76c02fc296127c83a8a1a3a817c2bda", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06e448d3d766ba0eaf7b8f5cec06e64c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3f6d57e11740f6f6c96b32e2739e776", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31feb786f22844115569a4b7b708cf01", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ea0c09921efb0e7ebe9cca3fe88aaaa", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 342.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69ba5f2c663f7c5e3c78dfed7e4e7de2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 20.75, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a07352708a48d55f09f1ed01fdc05ce7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cdacb11566b37a852ca04a67611bfd3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 20.75, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ff8d066a811b0b7482935f60cc58901", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 39.4, - "y": 63.6, - "z": 16.4 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49612c7c5d17a88404fce607446a77c5", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 20.75, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74324cf80b033b7b4fde1a9d6d54e7ce", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 39.4, - "y": 54.6, - "z": 16.4 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fd23b0831123ff596eade01842936bf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 20.75, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0281de84a9ce66204cd42b4af73e444a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 39.4, - "y": 45.6, - "z": 16.4 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55c7edae84fa235e9007175e398a1ac2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 20.75, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d8397799ba61338b1244666d4fe314b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 39.4, - "y": 36.6, - "z": 16.4 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04228d22e74522949553d83bc15952c8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 20.75, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fca8858e8d8ba6c52518363bd4c6d46", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 39.4, - "y": 27.6, - "z": 16.4 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "705f8407a1734f7e2ed52caea5ee3dda", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 20.75, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f1a167c687b8ef194cf36e3fd9fd716", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 39.4, - "y": 18.6, - "z": 16.4 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "911cc34bfb6feddc0fce9aacd07d9006", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 20.75, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "750989cbfb3a3b8f8b222522f749c1a4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 140.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 39.4, - "y": 9.6, - "z": 16.4 - }, - "volume": 140.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5c70aff10ab99790c1f67d80d24c054", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e795e1a49baaaf3b062891ac8d50a57f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d08e3cf1f483969fa49c4f932c513a9a", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56b3d411e02e828e9dd3e139cee99251", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5565b4a74afa63510c750cc0a1ff0c0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "808718712a423f1d2248a166b8d76f6e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23cb88bf06ecbc6fb9c1ecadb1b4acba", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab0e0876abf9c1fd43246b1c45ba0580", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a1ed0f47d69bc3e036435dc6df2eaaf", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfc20cc5886eb00d1b78ae204f99f83b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e4f6cc1eb1e73e2b528117c05b6ff7c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc29bd2b3e2898e2262e0c24929ed7e9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8dc9ae251fefc8afc248df024035061", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c32aed8b39261b433f36afcc3fcb3e7f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b472f82eaf0d37840ce81ee5d02243d6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ad6c42a6fe5b4912be2f7e2a7d5fbf2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a0d1158c14c97b103d058e54dfe7c62", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86bc3a6ed60f255211e783422e4eef9a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e49666737e059250592bbcb71e8ab90", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14eed4e43d352307272d5c246b133dff", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "548e769f726626b2ed38c5ce62dfdc43", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d61b7ce545d849619d8b2d85eae81374", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c5efd3fea356cd4a5e1feda07090ebf", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db6026031c2ddc0b807b8f2c2ad050f7", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4c08a5dbf4413573c06bf77b93d15ce", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3371cc42d505b1f6c6b2f85fbc3a3e7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8eeb54bdef35d94a310e2deecceea3b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05c74a298c364b8e09ed1c14cc496cc2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ed3918a529014f240075fe6cf563d5e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e3addf28d7d816290f607bdd900ffff", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e326ff3863ad4eab3a3bfde74f42c865", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ea08467c80852eeb2fe057c71bdd386", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00ec58f406d01818c5c6588a0d3984fb", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b216e0b9b16443364e02b1455544cb7b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be9bf0587726ad5ba43599e782ce835d", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b7cbcbba72d138371f26c6940e2b9d9", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9efb91eb1c9ce688417ac9e32bb7414a", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06a929edefb96e73bad9f97d6a7ade32", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b230993d0f26706ca04678054585b014", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc312cdcf8972c90cfd10e2095f92c72", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfb1316fde62dbf9f9c9492b64354b77", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9c8dcaef0c2e7e9b97d4de40b491b7a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d3d477045bf564ec71378398798ad5f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9da1b4ba50a306c24c18bd18476ee4cd", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0cf93b19f598917fbc63b434c78c798", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6b2c47eebd9477b0c89cb92a12813e5", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14bb907c099f143082b38d065fc07256", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2150039b7bda5fa072ee3f0befff82d9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6332fecca1a546a34ff9715bae5a65cd", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d86170cdb751233878246b1d6cce7446", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38e7fa74efb2c3730ab121aaf6768860", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7162435d010c4a8b8abd8227848b2a50", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fcdd5acc032128c95f711cee76514b0a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a91f68de1fa26046acf01d351efd3018", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49c7442abbf0626eb2e97a0c3f191b13", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f65f5fa581e3c91dfc309aa8ff38e01e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e960ec405195a0679527468784eff727", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c71c896cbe10b96f8d50c4a8773d9e4e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3083583b4b87b62e50b2814d284e3083", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f62ebac20b1fbe324867a7887be8813", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "938c4b5feb956a405fc1bdb3a5e99821", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69c694bad39509013f056c2754f278c8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "311ef2c02f8407507f6dfcbd284aa42f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54d2adfc3725789c2ddf8f422f1f1bac", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bd112a9eca1dcb44fdbc58881aca175", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdd17a9f8040a6319d56b00b35ddd94c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f246abe084446efa3b890efb5d68987a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd84a28381ee515b760169b055a6ab9a", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29b892b63e4bdffaba5d38ee0247fa5d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f189e8de836cadbd9163944ecfebe08", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78b38fb88e2c4dcaa39aa09521265075", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e6857999251658e96b2c079b3486ce7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3adaa8f5d3652ac6168c0e70fb56b184", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa2577c732719a43f30b81123126fbf3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2a29eb86e9e139461f2289706456a48", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b205876b7eed551ba689c09bdaeec2a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0b8b8de3809a4a0acb81715ac3aa434", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb7db14425212e6510896586839c45c4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23d19479de681d7749cd746e1f84d260", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41cba65cb7a86e83c7997745383f98eb", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "414b23e12942c16598589cc202916bc6", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42946728a288fba1124f87da910c52a9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2959d83c634b7f8f14e12760d88b520", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43e13c36941b2b4f703de870f26f2cb3", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "062307221ab968199f6ddebe4c05a0cf", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db21adc810323e459fd5d8558e762601", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f648a43f7c31998fbad73500fe16404e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71f86451632bc0e8ed34c3df626f1968", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56b49b9ea2c1e189a6e0ed8ac962e625", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f79273aa8c2792a0c5e38d5fb7b75a7", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d06a2644bfd9920c25e34e23f9cba2d", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f8d3e3325f539a6e00400aa7e52a3c4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c26ec3ad9d9ceca7efaaf64f20b4738b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2e64911c3e52056e2b823e599eebaa8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13115bd314e66bae74b56c7b33101a0e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0047b7dc7b03df318baa4308dd0acd4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdf82d470d31d0abef40232e29da44ec", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0069cbd535604d38e44fc19d9629053f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0fca644240064506747ac0f535680f0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4279a4181840a3528d964319cb7db48e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "425ee2bb9394cce2f9b6068b80bd607b", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07861f6f19d7b1234523c042d061e413", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "109cc0b22dd0e9422cdac33d7a6ec0f9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce0d75bd554f8db446817288c130b188", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0cb577f72de524dbeccecc2e7d884340", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d31e2009b5a6ddc364ef1abacdeddaa0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02a8ea16b108e6da76b6aae27ac25282", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e6b8cfc57e592a7d80d649364c520d69", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6df790bf30c5bacdb97ed299b22a707f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d94baac9130c8ca58f1fd3237396fed8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c304b3deca1cc766adace5f6fc4b5ea", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fea1a8e7cb0c3ada711a256df92960cc", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d7b928a3fd9fc08fb313acbcba69010", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cf708553fd1af7d133d2e4ebcdf1aa3", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f8c70cadae1bb97d0accd0bada947a8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19a9094000d5495d0c39e19b6c5815b0", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "38282dd46e655c8a588f8f5c285d3d58", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a56edad0a95c7c52df1ff849c9c41649", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04bc42f2cbbc7f294ba4f140aa630b3a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4a386a10c59c2af55cca357d3ae8509", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3afdf9ab223c9566d79ae858ea82979a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8a576d1740207ab6068a4ea7f7b8241", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9071fc64ea4ca4b28d8d81e7e8d6496a", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6a933dd946b52ad85aad05412e84333", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b70078393d19679933ca316881132c2f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5832f2d36dc5a791e8a9e4eb63dc22db", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 39.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fd938028c067daa11775514a8d108f9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 10.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 10.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba2406add72f5832186b85869d068fa0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f842d1391612e6f9f80347543653fcd7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80edb4770f3166ea6a152b66106a4880", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13e7d0e3999906a963c4954ae142b09c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a52c4963b9bb46122a0bd763128e4b21", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3449fa6dd56e688c60d7c0b92cd2247", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 35.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 35.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "432d87fb9d0233f6efc4cb38d479334f", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b293e286a1ae46e579979f24d3a824c4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e8bfd24dda8802ffca45793233d50d0", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "735b37561ca37253f43625faeedfd709", - "notes": [], - "params": { - "message": "Round2 stop" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "004452c2a5512b0d765b06fb41afa833", - "notes": [], - "params": { - "blockMaxVolumeUl": 60.0, - "celsius": 16.0, - "holdTimeSeconds": 300.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a70623fe11adf7aad25e6d7ffe0dc59b", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "865855b63f9e0a496ce059712a4c4cab", - "notes": [], - "params": { - "celsius": 4.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c873380884546add31a25bc4c5a1a145", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbfff0f565a988f18e8e78a06da29c25", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17549da1d1b21831c8ca4bd8a3df70a1", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b790de072305689b3d611a626b0c91eb", - "notes": [], - "params": { - "message": "Move reservoir to C2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a120a21164a1d47f29684da2914662c", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "temperatureModuleV2D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a1cce40b1f0242aef31624764721564", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bf5a54be2ea85671e0997b1a8f2bf2b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46b2eaa4a0d58b784c5f39596bde1641", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5efa243e019297fcfd66302bfb1bf7d1", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac873ab341698f3d74b559f421a8e372", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "899752edfcf9a0bfd06575654a2029c4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a440d5e8ae234119ac3c3dc4672ef7a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7d2a9c28d8ac11b462f23963a5462bb", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3add55885255d7c52e5dc5d57309f2d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "331d339542ea5c0067c1cbf90758e182", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "285c5bcd4b705aa9cf293d03eb4781a2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5ecb94a8dd223c7634406ee6db78324", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "790b7ae11540a30b130a4571d301523b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d1bda11e31d4f63f3b107db786b72dc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "127e252034fc3eb9e80b0ea9a40d21d3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "428dc3b24e61bb651a1e915c223a94d6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fee19a178f0f320e74f1adf5fe05c71", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e5c9a62c4da17994d2005a562bfe57bd", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a066fad1d9315407fdc7666e468e0f6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2e9e8860819847fb60720e930e0f3a2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b614c318e380a9cfb1c73bd7bcbb7e59", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8f6294de32d8f5843f1cdafeef396d8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62546eb2c14e2b32a2f1bba503b08712", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03cdae68c1a284ab71dc30e5405b66fe", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bd2f983830fb6af4cbbb3df1546ad58", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2ade881a4713b4b604ac02e06608697", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3b0a625e3af9d0a565a14ac0c9d9e67", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c659d50960e853674950456e58a80d6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aa1fc38e2b1404bf75e66241611e6330", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e2aa3e65205d8477d53e38201158f72a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3ed8a8e516491eeed7bc540160a82fc", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80f98606ab9b2bff794e0db1aca69beb", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84d0d468f8b5ce3c2a352a256cbb4472", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e68a7abf7cea0e8abf6fac1d176a83b2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed235bb768e3dfbc49a039f224de2dd9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec89b829f7c5cf5930c23a5439b5642d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "726c00d6fcca01709d30e14e03dd2e65", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8413189d0cbd848e964f3dd32ea6491a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "66d2566424701651957542fd8b3068b8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d2da015c3e2ca2b12a4f38529631f6c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ecbf719b6ee183e08a12891d27b41ec", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85876811eeea4e8005682522b55fb2fa", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "178136437b871a24007afda48559fccb", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7321a9597ade64a15ca628c4463ce06d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "687f4df26e0aaaaf223ca8487fc28e0a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ea97928702ce77db7f32d7246762beb", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c7372b032c4ab24fff70ce74faac6478", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f54275b2b79ac614bc190ab0077d4ec4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49f8a8a8a23c1da504d550c25082a91b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bc26344bb951b0e6c985f19e9850664", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fae0974456d8bb33dccbfc3469bacfb", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17eb78b69aaa6588ad06363aacb97c09", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "389d2fc4249316838b55fadff1507877", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67b9008e345e412a7c59a99e5c163d85", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d32b17f65253d283de82acb5ecafd833", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d81ea3dca6671718cd915c2163810bf4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc6fca877f6ea60c575df41a050d7157", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41a7610aeae6d3a63f97b4a772bce6d2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6be7909bfe2dd1300f944b811a457d71", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e05daea07edf2ff3172e26aec063ab25", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1d2c5575e885431e6b0e0694ae9f5b02", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 38.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 38.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6c0001774038ecfe1646ed184b8e973", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3731c0ab78e22cb2c73ea6d856f97b3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5e0421c552e1580babb4dfe768ff4f5", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H3" - }, - "result": { - "position": { - "x": 360.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d3da506a6440440f13be204f5824a70", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "077d4dbc5ba04e536c598d82ac4b2fba", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6684660bb505fc197e4721ca402ace9e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d84c95929dc27941a050870e0a123370", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7b540c44c50be4e00e60390dfe9b933", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b65eced05224c7b72d24597f27d0dd5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "994eaa235d94974b9c4d5bdd76d73f3a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62949db84954dce47ec9e64cb253b7b4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "745c6cd8dfcee05bb7fbefadeff051e0", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5eb48c5c5252ec4253367a73e593c686", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a3c6f275fd2bba203cb05960efe1251", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0301be5847cee0c2d41912e3a72082e8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "095dc7dfcb63aa3fb3b7cb8e64d92d74", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95627e295f6c35d60d588b590d541f93", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ddb6bf67df34fba33e63260a8a804f4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "530c2a48a3ab2f9eda58a00be037a7e4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f9763a164fa4b0cb6514a54c35aa010", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f199c40ef5992a1c4ad8766c9fa14136", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69f37f4e1124fdd70682384615c371ea", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02210e3eff3827847c9d4c472adb111e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0f3d10ce7e5501ccd2e61290189d29a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "552183460dc5fcada14b008913ad9559", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00cedf1718efc340695d2b33de81ba8c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3b02f2610dcdf63ea11c9246afb87ac", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22243ff088eef598434ee8afbb9f001d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1d56b0b8536a1af0df6e4a5055f198d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8d8af6a74c7d58ae72987592cec21b4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "18c13f824000fedda75cdd5b426cd18c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b453176c58637d491d355eb43c1e1017", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "855bff5af09d9393ccaa82dff6b1253f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ea692cea4aa2ad2f4206232249bee16", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 720.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 720.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "716321391ba642abf3622cb4b7226721", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0d73bf1e1802ea42e94f8d518f8d732", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e42dbcaebb548b6b8baca8a20a194e28", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f7e945a7d127dfadbc1d4109e0eefba", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8e2b6f866ca152cd27785a5fa6d39d4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f5067358e6bd6910fe4d44b982eee6d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a3cc779410fc32c2a93768a7fa9714f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a6c57f7324016a89fd990c6d9264765", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e883a9541a282df7e370afa038786e54", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "147d71f946e50f5af2064d3bb696d800", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4079e63aaae953f116a6376f8e894173", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b89b28ef38cc2f417d8b60e53e035f63", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd0ed6b7fe4f9df0181486c06bf3cf93", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db8bc5c9d3afb55096886f85e0082d1b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9655030116f66367bbb317754c310be1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9298c611af701d2b995e6d8509f464a3", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ef7e5ce9eef2e2088e518554b7f54c5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "900911e5ca7f1fb718662d1ce6771ae3", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "912d480be9b9613bf36e45392b03fab7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77c88da2be22175ce38448ed12ee2d1d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72c48bfefa0139064392712655eb43b6", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03f61bec657e999cea7d68895b094e80", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "31586b12cd2466daa08733cf416617c1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47615fd962561d69a8c2c9c9e07e5347", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43352da267646af143faa43d7941b121", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4255655b872243813af9c440a2c1501f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "def4d6e4f0ea8460a6aedd55aae30eba", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "605609e024d2ca37876fe51fb5c71d22", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68771432d4beebacd973f61cb98f05bb", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a4059ccebb409a9812cbe2feb8e3e6f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eefa57c8b64bf21b7b848acad8a0f4ac", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 720.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 720.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "117ed5b476eb1ee536dbb58eead20dc1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b108e52501c752976f32685f5842481a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac3af61e4a529acea29afe7aa21c85f5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1792e70ad380a9608a841ae96990d280", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43f309bf02a1f48478e468e1cd7fd60d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63de77292cef697d0a9cb4238413cba8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "512a8751ae386640d2b2d865a78fcf3f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d95a50293c18a9a9e68b42b2e7792f1e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97334fb7f30bea520640a354b0e02474", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "166714ab01935ac37c90f036eb40ae5d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "426730ebfe6172c8e3d06f013644ed48", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "128fbeed6f304bcc4e3c70c674915baa", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91fc720329211f4d0311088ded6b7f74", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a296b0192ded15a7e89c1035274cca44", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77a2737835f20e2d8e4fd9ee540cc0cf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24fc01d72b0512c43715d6eaf9dced2b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5348368cc71d9265e80458c670d5cfde", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f6ef595bc34bb270f7cdcd53988bde4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dda17243ca2129c04e249e386ee92c69", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "777df826092f634303c6ba964133e509", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3fa4085de5adc13d6757240b48d1621", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab510a2fbd5a28c6ebbf55af083d17e4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9060b24ed36041f0437c2a013fb871ac", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a31d1d53ab03362c3087a29fa377d9c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0dd05778ff2939ff5faf26a4b98c698", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e37a41c95fe5ff1da8bb4967d779826d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fbf2337351aa1b7425ae4d0abf76342", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4275280d1ded7095f3cd17be53fef332", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9173762cd237ebf2ce6f287780b156e4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a6bded907c1d8b976fcb477fab91a59", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "455a0d0d4def34ea50b2804b194ddf88", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 720.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 720.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e349f930b65313bf305ce90600022e04", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d669c62efa142d6a471184522cd337b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22463a86f3fa8d44bd394f1a6384de78", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76d27b0c95fc760385549085b536f480", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8a83430441f60417c6b498083e4227e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61a765ff366e682ef2c1a12db0cca8c2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a70605a1e9de4e0fa7dcbe2b38e19d70", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97489f0e19cee81dc9ec53586a1c8c09", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30b92a095c60064422874500fa861d10", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee368985cace1983cde0b2c0c1fc3221", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c080d936bc7d890da289aa09b522f80", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ac371f382849552222a0fa0a98c8858", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7811927300f7fa05ebf1ed31db7c4f0", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ed4b902c6d5514303acf9dd31c6bcaf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4ad29243b91aa5b6156f484c2ec40a7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "604ac149cee44a7e64084a6ffd1fa638", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88568bf05fcd87c36df2669883726ef3", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8611aa138e977e5eca86ff56c92fd5c4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e4e68a2df7b4cebd7dc2e23de6930a3", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "557f42ac547047b3a99f366c211b66da", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "502b00d650c736c6df21c8f21d293cb9", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e70226d00baa50190b7e38bf9cbeaee", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70743f4e1c7aef8bfcd47b1f6c0bfe98", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bb88f540f1b4573b769e3b00519bcaf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64a0fdee84f1946f2b2f98ba1facd94d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3eff477d55a88d10bfcfcc1708fd08e2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7ee02eb27edb6f462186991e342871c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "046ddd18d4019d5415b43e79732f22e7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2e9e00110bffd0f6096de5044e8dd71", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c14173c5176c459f52e1ad154432a168", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63baeae53bdab8b46159c08b02bb8175", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 720.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 720.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "557237134a4a67e5e991b9f82beb15c2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "965ab8b8e1e70027332e2a80f03dcd6c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06fc9e263e60a496fd757bb316e4af85", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19b5993121916f1879b984c3360f291d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cedef452836b351d7d09dcc9a0702ec", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1add38327da2db5ef513170c853340cb", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dba058a0a59028f73b5f34cb71d4ba88", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "211667770322f7d87bcf614f1a6e1b1b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "def10b99c440f6650d8cdd5964ab331b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0635ef66aeefe680e93b9f66445a8435", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fa62ca96f5085ad8b016dcd323d28fc", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b59d6c3727e5806fe5254d3ee38dac1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f88fa682e37eccc874ad4f2276c2ebf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "47a6344e857067188d68f484e884bfaf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80573425fe99c69c1a445f85d60719d2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8fe0460f9e86fb6f4e448bb69b55b5f4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc480807274696971d3ee2192ded0ae6", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23644953d3c445afd5bddb16bdccf0cf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bee68fa8806712ca5e26f2e23adcfa55", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b53f739cf7e5394b3fd786945fbdc10", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "903cd683a80ce3fb73fb1e4a690b8076", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "452a049c29306dce0d9e42df11dcf619", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f487349260bc1f86ff973773b054123d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f98307695b3d83acdb9015e4c612f79", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86987cd509e5e883ba4cc18b5f7ab311", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12c454c07513d32d4eef76762f766b08", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3921016f09a665852e43596468f7c70", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bae2ea8530d849ff302ee20ef32be92", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "305e3cd94815ba93d1c24cb0d86dd434", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5129ae0bb6d469fa5ac0cfe878ec595e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "688d42bc7e5b36019d0bae6a597f0dd9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 720.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 720.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c6ab2ef208599a5c8fe1e96bf16cb95", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb8b7ea0e9d5af52852229261cca4b61", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e0c3b938f8de7c1dd7020c4a1283731", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac67e4f98ce995f50d8d0f3d5d1e1bf8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efb814d7d87f6367a052d8edea5c0485", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b414d3e5b7b16e02d9c89c516830617e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5872e0ce6c6799660a789a67b9555ab", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53b1ff3d674e06e5a133177bb7d9a750", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e56f13860b433a2c5ff1eb54f40b642", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c90bde62e0594cd7530920e5474ef95e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0305d04a9c8b5d6a4bb6a8b369b0d158", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ead9b1bfab35a7b6294cba7bb94e577", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "892f550b2cbb4198bb5fba051b2c8aea", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d90d5c2bfedb4a378ad4e1ca558dab44", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6d64f10fa9248d8dc7c4d63df87e907", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afc3928a7c92799cd37b5b9f875f211b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8783012bca01b917beb9532291695535", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1147ab20eda9928cf3413c894dff1284", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60c4c318be20cb5f0b588094ea82b0b8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5d2669942c68ef485e02c8ee0bc5cd6", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7429d7c652da2ac8db6da7b6ef987ebc", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b87ab66332600998be3239d557bb9d20", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "494df08dd6ab346709380bd77ba220af", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b90f3f66f67ba689a1ba0f72ce58669", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "301b637d0e255a6cd057018a5836063d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b649d522f4b75d193b7174038d203e4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c69a77ca185ff6ccccf6f61311125462", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac3ac928743f19a3ca89332a02f44237", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5efcaeca3d953e22433c006dfd42f01c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "21f0ac0455f7c58d68218e7bf6ea4dbb", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "33c9d10b29a1193988f410b993fa9322", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 720.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 720.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6113758ab97539477d1f738e8cbf19ca", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "504fcebf7dd8c00f0e19527f352b2dcc", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4a4ffa1fe00db345e01616d98596e129", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "671514a567dbc809461928883b65257c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81dcfe1f3e8fa333eb6c210e69b796cd", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf3451fcfe064965ecc2bb896abe4c72", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5fdbeed9efe6d0b5fa889bf29740ad9a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d721a71b6584f9a19ddcc842eeef275", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "787619990a29ae278c087d0ce5fc4390", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b60524a1f6bc1502da9967539b891f1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ec4ac3545768efcccc80ce31f5567df", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c34d9ce1ea8c1cb7571d8403df20add1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b281d4c4da9efa33798e6a8ec2eecc44", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "523695b828a6acea8717fd96d383ae45", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84d1a97344baeab356092de8554341c7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd71b9edb31bee9e10f3ee74db746886", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbfb32da4947d9633c0bd974bfd4b680", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "203635f22f2f56c6b937e666707f4ad2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c9942c903325a269e9b6f93a43b1182", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c88b512f63855256e1814cdbaa8495be", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fe3353f80129d24b3246c0a01e696536", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c840169cc35894dfe478f0fac7aa01a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "095a27e9826f1a3fc0b86a1c3e261e5c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc7b5bdbfd7bc32c7afd2bd576c5b0d3", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb84689b367fb9dba0b802063702a3e8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7025e64b084b5806cd3b7c7e32a54c4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f2eb0f6b7e718f03a46c97f3a4cf2be", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4a727a8ee0d089715dd3ce946ae96aa", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2c5b97181c26588ff703c2b2b87db3d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "004ea8b7ce2e1334e05d33c7418f030a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b49d5054bab327aad8e8e4565bdf4734", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 720.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 720.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f51c0492e2f6d2e338cc47b76ea0611a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed5f664d77ff7190054f3805f95720e8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbdf4e70ee5700f3518a77d7bab23c81", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "218badc662f7b9bc2f3e2e3620d92c14", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8157efc0361eb98124797770b15d7de", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0b629d97ac4fe356a0c24cd86f7b0ac", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d587d5cc59bb24e7a4dddfb5bd4c0062", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93764214d689260f8adc83fbfa585315", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be5c995a4e82b2381e37bf8fe66e7641", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3494a6e0ca9f4daa640ab2773036075", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7159859053c752bfd9a25bfee6003736", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc5cd40d0089e2be382b80318c740e75", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a863c55e17f5d16ee2ea87f0692e80f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "796edbcffa4d1bd66df8b5165a090861", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04a1c37929c36196e36082ef63bf9e6c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e07af14d71cb225d8980da8348b51aa4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e92ea8466c30520585796084a500f8a1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c40a498f951505e58a48a3bb9fed5fd", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6f7141aa4750c2c8e5ce6fae9ea1d3a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f813275c72735ada8a9142b2d14e34a5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "859034cab143bba2970f55e45a735943", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "056a087ec5f79ff83c70ce7615815f50", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3b9760b3284941da3457ad758da98f7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf31dd5867c7503b5a3754f72352c9fc", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "817554243141d86b6b9332ac22972943", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54a85e0da95655a00dc13b7e94d011db", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f18ddebe4ce780eb305c0499dc73c043", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a32f035062d8d1a5aced82a1b713fd2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2073ad9e0e7823a6fb83b7014eb8bb86", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "639fb83f1360526eb56f825eacacce87", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 120.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -7.04 - }, - "volume": 120.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac402dbc2715ab78e4769daed65acd0f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 720.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 720.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "25d874721ba5eef950581898f28ba60c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92845182a87c5b7dbe27c6c0bc3e2f20", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9ae8c1e3c085fd2434cbce8fbac140c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 342.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e36fcb447300c6959f29c0b9e163d1bc", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d09db8f43c8d39fedeb49ddad1f11fbc", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43d161d20e80e8c8952e95b80a315265", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d897c75e3be5e2c0cf1e70f7750fe0e8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "057307da5a473965a00ae756ae591441", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dafda69cae103e4606c6e4573b3448f3", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17e64f7919d94635ec0f91c1b0e0bba4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6963437ed32d4c8a7b1fefbf39def014", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "595d92673c5b23ce6f1aa8c5350744f4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "71e644a8079a45edbe4add178555e46b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fadfa86b22b4cc79f3974c1e62bae66e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3d4dba9186455057182d5f74cc0d400", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "790e8cc245f859cf799bfd143f1c237b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc6f8afe4aa6ef0e9aa2f2c7c8fd5d07", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "554b52b6d896b81e78c80090b94c0fec", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c573faef8a9a0685f2bf07042f14ef64", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08e7af0cfc76fd7c5d7a8f26f66de38c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f45ac59425aaaf2ed34727c8d54a36c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d32fc0b38ba46efeee8d1c4d4d3eb74", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "653466f7c3be505179cdafef6bf718f6", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39a20fb7ec1893be76796207dd0a4494", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc75777f5f8f312f5ae0fd24efd106d5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ed043bc5a8f74b6a02bd0e3a37b7daf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b57cc55e8b611c33c89b721ddcf9567", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b86dbf26863742d8b2f7591fc63bd21", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf5492289254b9d0e72de6621127e8a4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da4786a32b7e706d5e72a222af8de220", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2beb37ab796862ab14fba46deb6ecdc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be47c27b82dc2298576e7a244184a640", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2693a632406177a9126472d8897970a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b78c430996c47afc88efdb78308b0c5f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eaeb4e047f3a5fa0f1b49135fb335b01", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e9940dc8acea406d7772eace3aba79b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a3c3984f31e801ff4b68d150f8ec136", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0bf3497c80c10cae6da03cee6cb93d4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e33e7b6ffdba15b8e9ac35db765513a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d928d87683ca82a6a4af930bdf42e092", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae520ea22e95d954453886e84c3a9edb", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b7d63ebb29fcfc326681141faedc20b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d4ebd64c86cb4ce7768a7676759b294", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "02957e3196c6b1ce7e7826c644bc44f2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1525ce412d6e75ab325366d75b9ad52", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3277c47883ce6e67a96c86898628a96f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9bd31d2c0b1aa22b6bf7ef13ac6f9c1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a5490508e3239eb9dc1429193b8fff88", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bb7e875fea4f48897c62bfc4f3c9f72", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e89055638fe349316883fb5a6ba5a2e8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c39623955a7677ba00c24045698c0739", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dfea64ea94c5f85e8e537fc1ef6aa787", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e773a4520a09615edc57825d27bcffba", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "081554b9141d49c69045b1769b29f333", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eafe98cdccf2f4bd23c024dadb3fe6c0", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b8022cb7ea048cb8a87bdd8ea0532e0", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32737651a54fa641fd605a71bb128cc0", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f4c199518d2610bf9d311f15532149a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -6.54 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e20ba5875870fd0bb765e4fcf7acda9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cdf083c70bf22a8a31a1a6fb78a55d4", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a334ea47a397d5f96acc892569929646", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bc6368ead684490de4bcab48732ca22", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 369.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a1ab47680071911736fca09e94bbefa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84cfac4d2beec90535675d6d331d179c", - "notes": [], - "params": { - "flowRate": 349.408, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7611d38adac129477a1b94e9ea64bc4d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb6c2b2bf5471d0bcdedde2b04e369a6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "768a71242ec85019001ad018923c02ab", - "notes": [], - "params": { - "flowRate": 349.408, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e01bb2410518dbc6ebe836f6b9340f76", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1de0eecc358013d3a5a62145b597064f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8a276e3e8baf5bc34d171c9a2d6b08a", - "notes": [], - "params": { - "flowRate": 349.408, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c53309fb595227ed83610d5519541d98", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76b155ff7e08474a1aaeb581afe7e7c1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c411dcc1c912dbdfdfa7a76859f36aae", - "notes": [], - "params": { - "flowRate": 349.408, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "17b3e2c8f05153d9d14e5ee2c68feaa9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4dcaa5cb9d2a75e51d64ed28720de18f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01f0439273dd93cc343c493d20a8ae29", - "notes": [], - "params": { - "flowRate": 349.408, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "482f54109e093fee7e733058560d0291", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5426d62bf8424a4f99e6e7906e604880", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -117.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 202.88, - "y": 67.74, - "z": 7.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "08d309190c4098666f36e58318f4582d", - "notes": [], - "params": { - "flowRate": 349.408, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7de2d29b8b6a11f050a0176e42864839", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 114.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "907bc524c9b19770393698d0d15b6be8", - "notes": [], - "params": { - "seconds": 0.3 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b28e29bb0d90b536f95928b0c5c8fde", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "950ebeb21e152faa2c0a3fa3fa1af242", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2583ee2ff0b87288c5ee2d877786eca7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 369.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "72289eea539f44b73d2904355719a437", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 55.25, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9141636f4b8bedd7316c386f5f1db7ba", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04da5a5ac9b75eaf9909ae18a897e39d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59385de949c50cb851ca78996c7f7516", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eacc37bb1fc2b4c9e546d5986e2a61b3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adef685c0e4452657d88ea6846fab66c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 369.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6efa92f834e40ea5c72d5c3a43e913bc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a20dde57090f11ba73cde8eb4d0acd74", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88b9a061f8198ea6e851655a1b524239", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8ee2e7431227aca892a8da15056f877c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cf5916c4499733181a4ddefdc898285a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b80c9f8087f8ca0d1ba300c55769018", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce3e72b45c07c538cca811244e85884c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e406cce01330c47bb6b0efc8a85ea9c9", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed68ca648c43e7b0c34b3c3625275343", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03f205277ec82a0672ff02e0e21963f1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b4973742b9785bb8e0763c3977c0031", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb0b9101f8eda6c59e13c1fdf5070712", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "051bc0c1ee0993bca0084f1d6968880c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4322f4aad92810c204e52ca6682c837a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1db67d7c5c5b9191f0544f9970bd952e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c75852732000887a566b47a55016386", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03d4fc395d56ce41c08a38954044b9e0", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f62be8b47a2a89ddfc69b4ebac652ae3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27d4696fa812795f3ec6739e44449fed", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b2271d10ed8d77e71f4fe35199e2ee4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -82.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 41.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0533a2e79b43ec88ca38d137cf66ad61", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9ecb73363ba32224ffd4f014d5f3283", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e315fb6f1486e2579a3e65df6a72801f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d97f21710cf9f5da953dfd7df0435cc6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "79626aa7f8b2f12aeeb8b8976f106d04", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b18ee0a52362e9bc1e1e0700d9d67a22", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d75ee647128ab0bb929d0b86cf8dc1d4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04c0dee135c798f55a7daf4d2a85df35", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2724e608c470b6f675e0aaca9ba1620", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1aac89cbbca1a674d00fe116804b573", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d697d64ad9fb231eb0b6513553f3ecb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e4d6f9f71dbd09936fdbb070dcf2103", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bd3a4d6f1f5c05389a475f1b78a8d693", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4708f65e97d991554d0f192654e69bb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42e9b90243a51f5d2db5595e32f58d30", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3285a87a89b0462fc70370b144585e2b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4317b16049851ca45f353cd6e7776332", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "aeabe3e27e6d66b4bb407d70d70786e4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "667d7bd42424ce5139907a2c4f1b0cfd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca6749afd124a9d0c741436293fff0cc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 26.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "313a4400dd245b2069fcf4e2cf9dac5f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d43c4420c3334d69421047158273daf1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e2b42e7e33061c25884a247ab6833be", - "notes": [], - "params": { - "message": "Move_tiprack_50_4 to chute" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d1084ead02b2b99d64f64606072b3f7", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover", - "stagingAreaSlotWithWasteChuteRightAdapterNoCover", - "wasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c43f6892904c3bed35068ddac3fb738d", - "notes": [], - "params": { - "message": "Move tiprack_50_5 to deck B2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "937e491ecc39e5d51d965432c532be56", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "B2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "B2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "B4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutB3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80f064d9edad8dc1f26ee7de45a1d5e0", - "notes": [], - "params": { - "message": "Move_tiprack_50_3 to chute" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd53bc5f5b14bb33386a7b3e25464013", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "flexStackerModuleV1WithWasteChuteRightAdapterNoCover", - "stagingAreaSlotWithWasteChuteRightAdapterNoCover", - "wasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fc2035cd2607f95b0f11a6e19923ae4", - "notes": [], - "params": { - "message": "Move tiprack_50_6 to deck A2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1f3b43bd2e7756800b4cc994d9b472b", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "A2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "A2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutA2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaRightSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3519d84023123d970a3fa8c2059077b7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 369.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "508c653344afac57ea593c95b6040e4f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54d54ea6599cab461b420afd79b70a5f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98514bfbf38d3626aade5dc917402517", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "69096ceba8dbe85aef9a866148431636", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "43f349660ba03c569ef6276ca32f9686", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bf8bdb501ddba6645b863961d1bf4e3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a907216902bf5b0349bf07e18e1de78d", - "notes": [], - "params": { - "message": "Move reservoir to Temperature Module" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04d3131381da6e435935636b9f3d5e53", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "labwareId": "UUID" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "temperatureModuleV2D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "kind": "onLabware", - "labwareId": "UUID" - }, - { - "addressableAreaName": "temperatureModuleV2D1", - "kind": "onAddressableArea" - }, - { - "kind": "onModule", - "moduleId": "UUID" - }, - { - "cutoutId": "cutoutD1", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "temperatureModuleV2" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c957c8a7b9ecf6a6b986d86b11cf683", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 369.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91f7f38984b58e3afb03549d42040b86", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f76a05a988cf25d391b5752c7a69223", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e2b6f51028e8f54fcbd29c6183c41eb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b47e75afac6c34c3cef620ec4918b4b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 57.4, - "y": 63.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "edd158051e1219f1e4447123f0fc1544", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "60328af1530bf754cfaf4350140b097d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 57.4, - "y": 54.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48f3ced2399f0d5395e3c67860149d68", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e89cc73a1eda18641f30b69ece9023ca", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 57.4, - "y": 45.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cea255e7fb6ffa158f53f4667717b48", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99119b94980e34a27d1b850b1a04cc84", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 57.4, - "y": 36.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "837285adf62a81f23a20f2d7eef735be", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51f4147ca290828276e605146998698f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 57.4, - "y": 27.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f1a40b17c4d7f11773fed68176c1555", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0dda8f2b61f523be69a016db8a7e2db7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 57.4, - "y": 18.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "542386b5532880f2bd90658dce5dbb19", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b245179047e0af9c58a327158b07482", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 57.4, - "y": 9.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "386ad0916caee96bda5a01811d3e17db", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3526af35d404993ee8a3fb7be6f2a0df", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b49282a5920fafd876ba3fff352a3db", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 369.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "347d3cdc637017e901e7ff5d1188ef87", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c58ccd016e1f6ddeca5fb0a22e99b58f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a8f7d1664c71f6430480f2135e68d00", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "441b1aed97bfa2f693e26acea32c5770", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B7" - }, - "result": { - "position": { - "x": 66.4, - "y": 63.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c4d9564976eccd63f7edc514078eb2b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b2cf6661be126407e5170a38895a64c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C7" - }, - "result": { - "position": { - "x": 66.4, - "y": 54.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b1eda2199b39bb3d5405661d571c09fc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ead2a61e0278325f90915d706e1378b2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D7" - }, - "result": { - "position": { - "x": 66.4, - "y": 45.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00c8c2e118c613e3aab74db8367d4910", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88b8a22bf4c46fa93770bbd4215ee1b1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E7" - }, - "result": { - "position": { - "x": 66.4, - "y": 36.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c89e8b4fa79466eab6c05326f5fb9ebc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9ad3af21000a0d081ed489b091a82e1", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F7" - }, - "result": { - "position": { - "x": 66.4, - "y": 27.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec95a3bf59b395b558890b8c2d690005", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a0453c62a482892bed2c8997af6e6f3", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G7" - }, - "result": { - "position": { - "x": 66.4, - "y": 18.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f5c5a61917c673ab049e05834c97b1d7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adc41f0e4df9ddb5fdcd7d4056decd96", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H7" - }, - "result": { - "position": { - "x": 66.4, - "y": 9.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3dc866a08ad86ea185c88bca67bca73", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2236be6492f5c11e02cf58ce34bb1e3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d1ebea5fb3b5575784bbee4cc36b4a1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 369.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a2246e04d2b5924439354090153b900", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea5b09d7217d63e21af66acefe027db6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f39b6039dec7c882513f01de23b1de1e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a195cdc3e2eb39bc0df51fc43bb201e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 75.4, - "y": 63.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "debc2408c48c898635eb82269819bc7a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa6ed62eb7f354c4e872737c3128b652", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 75.4, - "y": 54.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74fcc7b9985056e0a8d47fba048dee86", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c1ab9f48a3b32286936f642c90539d21", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 75.4, - "y": 45.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6da8d7b6bd140829ecae0de238e39ac2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d94312d928637a056107cc5ef42cc2e8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 75.4, - "y": 36.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f953807f51a0f958545543f754aded4a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65c3025cf621044f822f4a82999f7d79", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 75.4, - "y": 27.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8167b79f0f586cf0f9a65dbeeaed5f8d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccc19e7aba6affd81e37d094384581f8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 75.4, - "y": 18.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "42ce925d8809db5be5ec6307b613db0a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3eaf0cb4264254429f3cc149c759962", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 210.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -4.9999999999999964 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 75.4, - "y": 9.6, - "z": 29.900000000000002 - }, - "volume": 210.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11a251ee0755c8cbadfd907d98747035", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "395c0c51b45e55ed9afff5deee15ff80", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3aa81fe2681f793dd18f0c900eb5c8e2", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "880949002f7b67fcf209662b7eeaeea9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "237848e381e298d3030828b0a873c34d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19fcda915f7a71dab1771bd2b2f37c4e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6c47ee6a39bab46f33c9f78070df23b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4367cb1dbe00d3da62b88d4abf508e13", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3bc741285e270f095b2028497e22a037", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d23fbbaa01e90ffd33c9e960dd5002ca", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b46d963bd943ebfbd3e72e2f25ddfc3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9429f728834dc2934700fe67ea287c65", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d90b4819b190ec4ed94577d963338813", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "241f1de2c60d19491f3c52382ada5dd1", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb0cb4ce6e78623c133b55de33f812ab", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2659a4f4312bcfb8e86b851c7e5821c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "290614d4ce9a848af657195f26b8e46f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c76cd24d8ce5683cdfbdd7513865faf9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1df60ccf5e820dca575ca846f3d337c9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b40bfb1465864baabaa661ff064f91e9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91ca7fb407261db220535bb768065627", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e658445a238f7827d77d1fda74217095", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a6588d06826e7b96bf70e6a093db624", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9a100532592fb1a334f067ab9ce3a02", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bfa3b1beb85e54db19d1d576fb4bec2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96310b6e02ac6817bb3c1807ced1a614", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03d90eb0c2483bd79e35f7c5049255f8", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d967dd63175730ed6d3b7edf7f76da2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8ea109bed7ed8094d1bcf442be915c8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86e3a9d0342273d4be6f702e7826fe19", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e69527898533e93e9fd0eb20677cbcf1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "382ce30cd085284a51cac063c91f5e16", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "975f3c78dd4b9dce57a6f5fb41e7609d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d052a626e78de5001f06cb222a842d67", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27f86153ac58b0aaf0b847bda714bae5", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "40d427e7d87d541a5ad5ca04cd49b9fd", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "828e595abb3ec8830e9250607aeb7fa6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f38e688aa68b7891555bd13c3d300b6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6eefe0196b674252e2a900122cca6a3e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1498d634a464d3f675cea9a4468c7540", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ff8486ffa61107a8b4fca21104878b0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af1e1b6eceb94b9afaf3424d113c187f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d9dda5c0aee868f6530b613f8e3c9781", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a4ad3f19da479b917f50a585579f3778", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4cda10ab2dc18f190858deaa9630f6af", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52a34557a813e9847ab8492733348932", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7df2fc2bd930dfe6ae9ae465aaebecaa", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 57.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51075efdc096a0165adfa28abb471f30", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34bf3df2bd6a49e4f1e15add5aec53c0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c14ef55ddbb294e7d85ac4bbb6f1bfc", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36aa09a7f178299986b316bf8a711f6d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77f18a24d0c6b8cd3496453d4a335c32", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87d1a5966476fb4582a5a57c425a8453", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f379647b1232712976dd4455e711536", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ed258a6720e60658d30b11ff75f7128", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70e98254ce38c4fff2d47c21560948fc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de45edc4b9424b176c202a80ceb0547c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "77efc76aa6da7e6afefe677f5c6120e9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4f2b2ce550dc1b5c222920951ea94c9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fdca40f9389d7afb7b8c902b565ea3b0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c953bec735c2e0f7085663a7fbeaba31", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e73c20bdb014aeecb887f2af3571bcb", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96ad3adfc21574d1f0893f8c27f4b8a2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e3146829e3a329f7ea570f5cc3a5e27", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b222e642195a210ff6c4c3ec9e75172", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eed51bab78f1f246c93930bc7d6a5e0c", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d73f54d74b11b665a765c3532ac0dda", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3b670ef0ecfa9c18aa4469c0cded6a9", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "705461b534c01e78ccda4fc48f67dac2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b37bce828ed5663d9003e6ab1405ecab", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "20e6692078b718e82704879d5eb96ed1", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51820ac0083ccfa336cfd2309d798cbe", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0b288b0ad82b1874c43b8ba9558c428", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51ab5ba6fbaf4e6f9864efb8e9d4e068", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c9c1fba32d034cc1b27f0fe42b850c2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f84f463f3cc93a850c266dac53a1cb1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14872e8de13c31d599ee6ced43b962fb", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62d11ff8f4fa98369631649383e43b83", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c41eecd42a49d8a7328f7012eb1c146", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f43021488f52e3e641023c856eee00a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f143a48662f16f2c1abcaa328b2c742c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce1e52a1646f113e38c28ee3abd8988b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0e9dafb233686d51e5ea123c98bd843", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8798980d110268b20455440f74b02dee", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "635c0d4637f9552a6a7c042f2ce17229", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c1ea16e296df27d505aabb2cb080469", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b8d4e522c224c801cb7bb48f407d290", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3630edcf57953038712fcc1f97f2fc2f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "889d16aa1806ee32d475db04ce5ab682", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f045815b9d65f14c12b771ad97e6ef30", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5709267f6ff3777ad2504c67d5eca856", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6b7e2ac6ebd1907124f25191bc87e41", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bf18c31ad9aa08d892083169485cf6a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "768d9c590b41b540dc486841c866ea28", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6b52e41e2c19ae300868a87ff10a339", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9cecb6b93e8a168a2771f469f84b756a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0c0ac27972436aff9b4b12c9dd7d6af", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e8643a3c6bed777e19e0b52fbcd4a02", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7bd01553b33876ef22f32e9d1a41a24b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 66.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef4a369a17f649c62bc54af87c5b43c4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca963b0ab04be397ae89b3496a300480", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23a54ce81f31b24729a0e2c3c0948ec7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f196e6229d7e614460380f6be62dfcb8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f40d7d556e6cdc4df81fae113f9698da", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "323a223675a3ff4cd2c43e63fee8bcab", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6fb04238d6679e4560dc1b4572e218b8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e148913b150e5b34e8d433812ea5888", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7758dba99bbd8888ae4d8e1f298ecb1c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "245edd666fd239ef03b2059d77b02567", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c68dc460bc039420256634cf8bd74ca4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22f76bdd3ed357f7880630371b3c497d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "917e3cd12fafd55a0e8323d30e4a0365", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32ae4196106c7a1da1620226c17b58d4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "62f7f98fd64938a6b08c617293082b7b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f7a4c57fc2631a5de8895465241be91", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d2e9417f0eab4fcfe4e4b0fd342468e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "64046d5b7262ded8379e2413caa08755", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a37b4f49da61a2c3483b785de8e16e55", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd83f8cba0ed1686cb63a06f9e13606e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9a4665db2c0e41e3ad05d0aec120254", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09a3281b7be3b936d6f2ca1531a5e0fe", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28be02525d8f89400a2f3518cff88c4d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e69a09505b03e10ab8f59635761e7a7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c42dd921ac6fc47d12586c56b580338", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d8364e07131838daec03c4802eff2a97", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "549e4e36684c3e2824d5eabb02f9df04", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "753c1ee6c33f4a031d3c2d0b85945a84", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e304b87714997d7b807793defd0e20c9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "602edfc3c164babd31cad019d3ca28c0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4d88fe9ac7eb97a7df5e0b3eb153c04", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e80fd07dd13c0e8d9ffdce2e134106fd", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f652dc59e613d7de0720503e26dae75", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "507a3f089a28c525704620112387bb1f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f1219d03d27e1a653bb5d8a303c2c5a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b89e19f635f72f66a83200f3db48e295", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "535cd40738b0623370e01f1ca43d4c6e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8903c08e2f87cc0971c2b84970711802", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6ad65e2753a58d1a4b88ff47889d1a0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea2a5b652deeb2fe3fb782c84f3c7f99", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d9b9a1ca5b3358c73e2cd51d322e5e2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55c3b9d8131d7a5ee5308fc8840ecd98", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e25409faf79df840c265ec9398c4dbe9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bc26cfdd794a644ebcdec9bcd1e5b22", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fedfa7b564b47f967afe1fffcb46a3e", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "075461cebb19d15dde15840db6695cbe", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "431ed405b259ebfb5441234001ea211e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d43762b2fa792881f2edb21b495aef6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b5261baa68ebf0bb31e4b5dd3a48e90", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85c6764dd41ea445b6b34682b53c104a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7baee366eccb235576ab729c86bbd28b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f86d51286be3a4dc1260ee365bda279c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 75.4, - "y": 72.6, - "z": 16.4 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a2f7a62e5f715dcd363ad2f0369bd51", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 50.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "328ce84af8e23698fc978ce7488f599e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e4f29e3300fb3f848733a5c0863a27c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06f728489378db30651bdaaf53afe029", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5d3c9b8bb3f8b675f23964aa9c679222", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "104a3228a2a78479e9ca8dba273bf43b", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "989ae720da6d45b44c77302aebd85ba8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85ecc1ae4358cfb6c3308924bf1262d1", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea79ba08298a175715e7ee4cbd996524", - "notes": [], - "params": { - "message": "Barcoding round 3" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "34f9c0276b8ff48af300f7fe89978bb7", - "notes": [], - "params": { - "blockMaxVolumeUl": 60.0, - "celsius": 16.0, - "holdTimeSeconds": 900.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 16.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06511750e1aa69ff1a822244c9ade519", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53bf9f8e2b216f1b4c6173f611bdb091", - "notes": [], - "params": { - "celsius": 4.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39fdac8c1de2bcd2d7921b2609b4a8ee", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/setTargetTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "838974afabad36c18e843e43273be785", - "notes": [], - "params": { - "celsius": 4.0, - "moduleId": "UUID" - }, - "result": { - "targetTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "temperatureModule/waitForTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4e9271eb6c66e8683986b3277eb37807", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1cbbcfbd4586ec3e9bbb54db93cfe76f", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d24e8ef5c615d462e8d1c8531645289a", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52d0238ecb5e6df0ef726bbddb14d96d", - "notes": [], - "params": { - "displayName": "Reservoir_SB", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "addressableAreaName": "D4" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89325cc23fa6f3fbb730bd55a5c93c79", - "notes": [], - "params": { - "message": "Move reservoir_SB from D4 to deck C2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7a3a76f28238769be1b5e815c2e72c9", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c30d9fa9bd1a1a3752d2b953b70073e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eccdce0f4ca2d1db683442b41457eb5b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b23ee2645653ac49eda78b2da6e85bc", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdb9a8ad1b276be2caba84cc64961747", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "57b541fd88125e668846c347a310b347", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c93c22b66670362ac5816e231f323dd1", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a702aeb84caf9d1c6f16ce35a48b6373", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d309301f3a7315489e853b8f985027fc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a8b067e5132fd85360148929ff4b445f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5300e124a2f3cbdc06948315c2e1e4d7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d11bfa5a0fe61a6561559097dc4ab8d4", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9eb29830dafd2ec95f8f45d48d526a38", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f90932dfad3ec21ecc3cb3f5253b229e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b13521c81d8b102bca0bcd2390f9b789", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f30db75bb92f4164689d8bb5797dd82a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30582088e8ff92af63bec8815a4d032f", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39f6700b470897bfaa220d32bb57d562", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7596d6a7c1260e16d0baf4b773348aa0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af2c8c6562fe4fabdfc5c3581555461d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "251434ced96c21588b64e2a6f2d31282", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fee48f734126ab2d641cdf45033477b0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "adecba60f1d58ce7a0dcda90535e67ec", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4fe663b325b4d8fbf0cf3a250185522", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "99d92efa0732b1717271ac5ba8dbaadb", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "237b5e44bca9f47a85afb137bd12296b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 187.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d08e1205a58a4b51c403c5da802c359", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c482958c8c5d3d428c8cc9b1693f6db", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "16ddfccc8094bd425b583bd66c499a7a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29dc6cf771a8743b0b8a714560cdf863", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b5b36088c105d1901e26c3ecb30efa43", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3708610ae824c282b3d62746b5b8b0a6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94b4426b0cc4ec4122822c1abc04404d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c91645a9e45b2dff4b7e66927cff404d", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e090906b78c3fbdd3648cdce62d2712", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "763ee35a657b5a7bc1202ec397dc821e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c950b39dc233128b890a54952a88f38e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a6ef279cd5754413b26641676758b9c1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a31f183cd4254017f819431df16c2e78", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82cc852b9c309fb8a4d7cb1bc18cb5d9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de6a7d559cdc9e81414c985eff988951", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3390918ed443aa8bb8b74f66066956ea", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afdc203e4d5b1ded5969235b110d26c8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 196.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "646629f51c51d661e9bec6f5fcf6b15d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "153f082b389226de762dc7a8bf16e2ee", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "049842c10e2648f71a87e47665908062", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c09ca4c754ca307a3afed0830dfe76fc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "326866ea243ce2bbf391643b1b6fed90", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06b66c9f36f8a5dbf59eda39fa7b8b20", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ea8d92dce27183904cf935c59acef94", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdbda53cc252f22d69b882e668c56be6", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7000995b3190725d81f0fbeb5293dfd3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdf7b20607a5f0c7f2a21f3be0741be8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b43245bec53e4dfd11417cfcf9a80bf", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "299d99c633fbd65bc3b19958a2f45d7b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f54e7f2ee676b5f9c0d5face13750a9b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c74790271d83793acee53656a78bd2d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cffb27b66d2074ef35735812c60762db", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "813db1e08b2b4c24640e5f1ed6729e30", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a124cd3b132ab02b33060b3a30c91120", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 205.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b65bd1db54e8c68e9dc961152bf344e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e1d17286b437e4a2291253976993ebe", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63175862011037f6fc9b54eae8ec3852", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f4059601312b00d5485454e903f9470", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f002dc8ecf7f442b20d44973cbdcbd57", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "738fdf1ca4f7f81ad0dbbf2dae85dfa0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e8e3e33ab277ed29316f0d54fa52de5", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8c2340cc08b3d642518cec9ca36fe04", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28c3d8a7536682147fc358a8c853c6c8", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6851e0f91b6d3c4292ed6474114a3035", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f3b4fce3f700db8610941b7248820f3", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b26139633f066c37e6a638e6bd743dc3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da44249213b6489aaa1832d5eddd72e5", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6084aac9c34f95fbf7c448c552cf18f6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1322d736d3ce8bfaee9a060d41c1e39d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f128bd1ac43e567dc0cb5c103b0407f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f62e38eae4aa9230759dd99355d27868", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 214.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a9c505fc298c791b565beaccea04dd3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c7adb127d5ff8f27ddb2dbfe721b25a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0951b4d3e26e300fbb7c2580803e0489", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76c81d1593cf9afc7fa11e2d320c68f9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a299e0fc3c9df84b619f2e03f304a979", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f566e8ed85ffc010efda8a134ad4b8c4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1be7bfe4a2e0292220f126da52cea9f7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27da96a65302312c89c5c2b25d235fc7", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0dd470c75491910c7cc2667e3635cb27", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a225fddbc428151a3a449bfa679530e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b5c700215e58eb34e0ebd669c9e06d4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95d8f6c345f6851ff881889517377ad3", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "45560fd6dc8da4e5cf6ceb4a63e56cb1", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "315f054115fc955ab1921141a6811787", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f70c4f63e508ab3997109d9e4c467cb", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22f5c338bc59e5cfeee307000a4eb5bb", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ded79debc4514cfff04d0708f59be489", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 223.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b177801ed3a0f565cbe01db396308f4c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26e361dcee7da014b3fd38b0aeb24d46", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00777fa68ae49a609612b905a0269a21", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15492fa19b079c4ab09b226e5c214ec8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f8062fa01af686b6700671a4f192c89e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f6ff6c95970c383c61aa30f7a493ac7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65a66b7fcbc6ef4480aff1c44464c618", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8949080199e45c85959e8e681a9792c", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da40d3ae4e0580ac30fb733bc2f737bf", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a81cc111ea87f4bb5ea3aa93ff09e4ce", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ddd19864c620df225f63386845e11cf", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3587283e90eaa184029f867dbd9d7296", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13e2b2bc2e583a43297e0033e650d4c5", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "285e8fc2eb04543907220aa18f4753b5", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be36e1dd8fc0d668dfd9c1acd2f5083e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14b57208c46f134d7d19d10243058cc7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fee6b44db5fbdca07a1c71ea03458a98", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 232.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11be1ff51470464331c1065adc5d1110", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d3c1066774bda86908673e08f7f4859b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4194f5590808149b187bce04a1a10c8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "959c877aabf6297f7cffd10648a341f2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3ab2a9d10fc9ab8b5eb37a7ed7ee311", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e01ed8e2ba5c7487ef81e2b05a08cc8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94aa47bc429a142b06f8ee2b10adf301", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c085b1c88d68fafb390ade4f2134388", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f98b945810d28c19f80efb3b218ad736", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7cbb63a7ada36993fb2d743025eebc4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcac12587821a9ea422694afe867be4a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "13bb0a4297081cc458e19b8adbea00d2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19439882780988df31949e258f2353c0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "acc332039d9314038864a631fca978c1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea517b8c7510f8e0b66ec838b4094673", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9bc9a7d85b4d2245c55be90e2ed1dd3e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cfce2f5746b5ec5789f521becc020f7a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 241.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4d99acee523a061ebfc54841b619994", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4712db2684339b3c3ac16232b8f85793", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cb88fd9f567beb26f2b85b0f9a67617a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "637e6227b5230d933134ba2e3d8b34f8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80878c2a42af796d712141745ed722e2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df506d56b33193ecdc4ad49178082eba", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3c2fdd324c7630c08efaf6a2d0af6fe", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "061fbcfba17c738cd7cfa17fe15b0ded", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26e934776111cf2432145702ba97ea8c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba794af6ddf2c661252c4f42476e2907", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f24822dffd29fa8ce2c17c79fce43e82", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9dc509183246a7b5a8bcd8f20dc74c29", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e56ef6e346ff2d8265394605e863028", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b9ea729349cf51cfeba4a2e7eb54d55", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ff0f906083139871aa9e5906c0f5fa35", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d86f5a3153bd33243b3e752459dd92d6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb3b8d8fdd555501f7d787fe7e1b05e9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 250.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b781f0ac3268058239b983c27b1996c5", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8cd2a5a286a83b3843592c2a6dacb742", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ce82a4c28551d457b97a596cecab116", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9447ddc3feae977586d58771924ffc15", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "89d22c888ce9d0141535a9cf2b8a5b4a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24a87b13868df60eb4fbe3e86a21e2ac", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c5015307f08da3deeb883d3ffec1067", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d390183cdf5a0056643eae6d130ed408", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffd23acf60f480a09a66849750879892", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "52d30f595410740e589c2c371bfa6d3b", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88958cbc2faf35615e5bf05ff65fd394", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b5535b717c14e21f73dfe513a837d8c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c88f50786da0c7f135760c753f2ee467", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa83a060d38bd3fd978b194b843bd0b2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bcc5bd39a3c96845bb7dddef62debe4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d449cfda1dcf1b4d9ea22988c546a2f8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f7b34bc99ebeb9aeea6fa08ce9f5e8bd", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 259.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2e5a94a5076223a0c7f78032fb39348a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c9cd319d1f2e5d3faba47d325862868a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b5524e4a90c6eef82afc2dd8a7560c2", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d7a415d3566ccf1616b5d1a44baee80f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eb39edf8c115726e491c0e6a7ac41e57", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f235bbefaeecc254c287a45a166949f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f51b70982291909f1682c48f077b052d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c536e6b1dfe9b1392f71557d5667334d", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93628e5905871ce57b6b6fea66e584be", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dfcc18eabf156beb5c505029c864d86", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d0031839da350924cf32459d1c7c5ac", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4397ecbadcce73acc8685620d1bd1da", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "932bedca6fe0f83506cbea9b113d071b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e73c120b6b1aa7962a244606fc5b0f78", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b08097a4d60db1a2cb5fc95255344439", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f3348d826a935423cc5dc4d5fb689d0", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f5cc4bd90ec3e11ad4d16cd273aee96", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 268.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24540d8b18aba31599c52a729aa7526b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b731c3ae7b933559f5b42387379f88b7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11e42f0049545f24786eb858d9a1636d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db09a358f1725104a88a9d1febeb28cc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "184506a8bd1030415ea6175706a9bf9b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0eb827f8b6f3c9af5ac25d9321a00d91", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6c746522b425972ad5d845090212fcf", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b6d6e4690be0f5a7c1f323769f324a9", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d4848a825cabc58ef8068eb31c08811", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98158f6238264ab8610d76c5bfdad10e", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e194e5370e886f8479d0bea2d375c4d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac7afc908ef30c2e852ba1f45d8d5729", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "064237467cd129a36a045e9886c88ebf", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "196b8c2caa01b2236aa2624648ae827e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d624d2d00180f2f537376125fa602756", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d90665cd0d69cbb36b5db5550f48a74", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8bd3b2ac3b4166c4d6a5fb95e94913d3", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 277.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a1d017489cf72f955b8875a82a856dce", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d6ac271518b88218a30bd2278ab8f4f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae7d2dcd090aca5150a497454e3aeb16", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6cdba82eefd4fb3b3ae8733b56fb74e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1ac8baf70333141559f12a125841a24f", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a39ff161096dc1b6fac5d9908034ed40", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "41be44549051e3efdc034acde9173205", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 20.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 20.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48f68ff59e5f93a486542a0aec76ff27", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06be677f12d562a28feb1bea9896145e", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd389cfe426f48105365ffe96f050c55", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b5e82ebf0b06937f654bf96a4ec25d4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 288.38, - "z": 99.0 - }, - "tipDiameter": 5.58, - "tipLength": 48.62, - "tipVolume": 50.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cd7c3004987cf7a7f8b9ada4a88a7a0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2ada72a1e0339117e4dc20756ab3d952", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24e2049f611af93eced5715a053b0f49", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7edde0174727888d45e74c2b9c8466c9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03a3914fc1c9f885e26323dd505308df", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4c92ef26796351e9353db76c8ffc2caa", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a229953d46005c7e2ca1c1441d71732a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbf65f338aba9e7be3f4af016a0a6011", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc3a74e26264af5ac9c001fe18109fe8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b27e61f3170dad003b2fa90a70b2d7de", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39dc6cb5b211b355e8734eae56866ff9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0c512bdb89cc27c2727b10ce4a26054b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de296791e957cb7ee68840b46b2846e8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.1 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": -7.604999999999999, - "y": 354.55999999999995, - "z": -6.6400000000000015 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d35d136b104325cd8073147b7a67cf18", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90a20dca73339013926f6e68e362a346", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f85f6d232ba4940321326c7b95b459a6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "013a440cb08eff53b01234fc78e82e8e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f1c153644f5b31cabdc9de2cf105510", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95a34dd4293ebeeccb295c1d5014c40b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88874105d49b617a45420060e8f0e879", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbc3293e6ac4374388658d57dfa34f9d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8df09c50a99b6e812d7d91ede4155c68", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d72c1fef22329443b0676f20110a9159", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c5c50badb4914deec92a6c2d79740bc", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ead543f50eefdf2c65be827620a9562", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55554353d675afa31313fbbee129e985", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "419dd20c589ee197848ab1e9402823e4", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9b4ce3e094d6cf08dd32ded2b894caa6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d31d4418b44c1f01f14428275c47b327", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54df51914be10cd4fbf681a0dec227e7", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c5ebed12fba5f455c2c64e1b75eb0c0c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.1 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 10.395, - "y": 354.55999999999995, - "z": -6.6400000000000015 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd43340bd640e33ae1a7d4b4122c9d15", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a35d1972be034284220d77d69f71f30", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85ca2ba7b41e86272d5b82ce6dd04885", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7b28ebdf8fb70c7f2e6ed766e7ba63b2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b6592e158c2075b1ffca42918e4fd2e9", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce6b8bec81096cf451202ec9c9f88dd0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcc62a806661152df18805a09d491094", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac5731ba6ae1773cf1721a384b535839", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b62e6f156e505370692dd43dc15ce8e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d51e3ba4d856f8db465b4126f6eb2284", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ec77f802159fa64e5c1c36f06219489", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "069cb4a863c0c798ed33f51ad6235f90", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2057321dc0b2f54232b7cd6db121e97", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ab8a31f5a14acbb7ebb4b3ac332865c0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "26acef94061fb12fff6ec97c6f8fdd74", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "593da871c91661cf392f547ade227f4f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ee3cbeb3f7d725da8d330ec3d0a69cd1", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53da208b88a59d51bda9836390f9bdec", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.1 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 28.395, - "y": 354.55999999999995, - "z": -6.6400000000000015 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d58c04454ed8a173842be5401d8fb947", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56b382592a906836db4b9beaf0cc2ba8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29239de20dd05d273b2299aa6cd12b7d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "96352141cce7c262f00d01749d515e7e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7883b18545cb350ce7eec952698d245b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "041845f532b4c60ef43566798060627f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7161b39b7c8a4bf25d08dc70de1bc3df", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "545c2778bed534f3dd413e83102d4d38", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "56b1e52e984693a198e9db1d8378eb3c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98c84364374cde9c5e34e799950ac018", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3d36dd12dc9bef2eb3da8e7836118ed8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec4931db2b7c5ff26eeb330cf8eaa473", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "35574bcfee7dc58419affa98afd15b37", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4760d3c9cc98824c4641f644e43493d0", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ea56fc26de17b5c04628d376a98ac0e8", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98b452943f3efdbfad0b2de0249399d9", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b0a58f8862f2503acbc4e92769ee0f4e", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1fd28695e8e7cefaa873ca2639f55f3", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.1 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A7" - }, - "result": { - "position": { - "x": 46.39500000000001, - "y": 354.55999999999995, - "z": -6.6400000000000015 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cddcf2eb9a6e98eb127595d090525f99", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f1e81413731148e5d19f6ecfcd69d32c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e6251e104bace2c434435107cc58aea", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef1a3f47177cab531b94cb19b3ca2bca", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "281c99d09ea21de7e695ab719392781a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2f548adf8d2a6648aa2adf8e4ee91ca3", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "085fff2852cf8a319272ae5e4b1a9b12", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2656f58313effa71c5fc2e29d7eff402", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "395d9e561b64ae8144af36543e058602", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30fa703fe0cc4850c9b1ef9bcbf1437c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "11cc23c2f5e3801e8cbae23646fcf3fc", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4255eafc55156d72a6bdee6224490d2b", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad759a7e6987f7d9ee45b39acecf4c8d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "262599b05a8e7f0ebad0c05dd192983f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "24873a2b0e738c4d033f363a95d2647a", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "824ca72f0468f86bceb6a3c8368b96cc", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a310bac2c63aec7afd96fd680d287120", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8a04158a651249efbc5b88881f7fb00", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.1 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A9" - }, - "result": { - "position": { - "x": 64.39500000000001, - "y": 354.55999999999995, - "z": -6.6400000000000015 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1bb9e1fcf37d73d9fcbe31aaf973d45c", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "382e2c41d75977f08f6ba83bf24f142c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32d55b4d72f575530881475ace0753fa", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f74d665a2a0ab03b4f8cf5d2d126958a", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8697317eb84435c21f0c62eb353a4ac6", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1f996f703143e6f62c28d9b144bdd9b7", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3a941c679cef3af15a5c9a4c7fae40f0", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5a8aa82e8ea49a2ed76f9a7ee1a2b34d", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cc23f273524b318941b37ebf60d432d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9086a5f3712d952d1d492c37d350add6", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97fb62ee8e1e92b8c82228dea6ed8bef", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4d52e0d455b6c5059e25d1cb1e47ce0c", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fa37ab8b57329994ed61e63e412c081d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b5789dc75f82ec081b4bd8883be0d5e", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19db1db4c8c2d646f2e65c5b02a4259d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ceb72b2d824bc14978fcd6bbd9b37169", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0323ce57a3f8b1201cbbb259b5beb775", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ad888f38a44ca18ef11ec33a7fe16c8", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.1 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A11" - }, - "result": { - "position": { - "x": 82.39500000000001, - "y": 354.55999999999995, - "z": -6.6400000000000015 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9333d4777b7722ab4c41677ba8d7804d", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -16.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -4.04 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1867edfa409090a80a7614f587fe3ad2", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1b26577a69fb948c300867b92701c88b", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f726218f4cbf1610cff53f53c6b853f", - "notes": [], - "params": { - "flowRate": 35.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36b103e006880faa038391719e4f2797", - "notes": [], - "params": { - "flowRate": 57.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 40.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 40.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ffd24bc6233ed52f497afe1b27d20f28", - "notes": [], - "params": { - "addressableAreaName": "8ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 4.5, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f37a012f13562ee36d4d4ec14eefccdc", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de5ea48b4ab5e63be1cd682062f78b44", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 369.38, - "y": 118.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f523e14dbe82cf4a5a50b3846c7d3f51", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86ff901e5b2ff95f4b225d0c7dedddf1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "00690cfb38ed0fefa9b0bf7f157663b8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd5baff60cf9803a49107957e9d5c68c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c12dedf520f6c9a8dd7a787bcb89663d", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d564c5a63b7c4dda1883ac7f9ace730d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "90b40236edb1a433f6bb5e3637e568fa", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "563d7d02f44af7b1cf9c34f8845914cc", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2598712c01ca46899b189e1677935d66", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6cf3b38db9050e0506f4fde07fc3c75f", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e669642a91f112a1f5359b40c1ab6109", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8edb1c8f16894e2b2ae25f084f80ff8d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0e60d363ec7b476293f1ac07696cd42", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7cfdb5cc7b773f4379b73be0535cf146", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c7943bd56f391162583d3a748df3449", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d2467f89386408364094d4019b967db9", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d6ffd14808f49cf020133fb0ccfa231", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e9a36cc36f3b79f2c85560d951dc62d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "316d0d1b09de31ddcb4db90806dd74a0", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dae587709bfe0d1fabaf8ca3cc1d505d", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a97071b1a10187e4d125eed3935ef9ad", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f92f575bbca57dafce4817f3c8f93760", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10b3f60dc055f5dc180f2394a5fd4645", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d1316f17f5fd5bf4073f5a9f4e0b6789", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23e79b39a6448276a511c7431bb1b5b2", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ba5366d704a3cf81027c60309de21d5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a3dd40e0959e203265198f9e8579a779", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e3e68920e82fb7c9457070ebf5327d8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2281b43f52f34dcf547020cd4c205a81", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "46c3ff117a290695e4285f18db06ce1e", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a98e6c63dd823012f08c98cab39877db", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 960.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 960.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04b771f64ca1c99c69ba093d13c93ade", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a61654157af149a65f77f45ceb59e427", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1067380d7fbd42b0b6404b02df333f27", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a9536ef064b3b9074c224db363bc057", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "746cec4a4dabb32ba69251e683ea0f67", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f06adc70e246dbb2799d7cf0a098659e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cdbfa68db46df42ced30da9f51ec58cf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cd0cb0a74c1e6aab49781199a58f459c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "523da4bf28cdd7201f63160523fe2db5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3305dd945a32643728cbcd1b1f778ef5", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d450fc54cead1e3179290860348e1a73", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9615c4184ac96f7c533c1e51d26d47ee", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5f089007a3dfde634a2d6b23ec1fd69", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7eb7684de8496b5fcf4d86d6ac4cc98a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a905498bf5ba81ad510d21ab137c638c", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "790aa06b3e11e7398bd84ed206d71985", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7b2e158fbf5423c69f378c49911df73", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98e7849079c5968403d3e5048b1dcad7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a710f9a73fa3a9690e64571fd835f5b5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2360cacdb76512a52f2a6c56645875fe", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c78bb3d17d52f0a37e0607e251b525c3", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4072ab812f9fbc035cb930ddb6c23c81", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc08e4446c8b68529190d0470bf8501a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09c56c50ee34bd32f1e5674b01512a5d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bc381847c21d10279bd62b9dcf7c81b", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0b5f517160726f37d7b9deaf82939b4e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "03a6ec8708b77593060a0ff461de47f7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f0b0bf249196836ed1be088d5bd1b62", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "df8852ddab39fcde64f4725927197372", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0ae57ce48b7eff01a5b2c8d0f5e396b", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3ecea500e44352397441e422d323ff4b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 960.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 960.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9fe7e14510e6390846d4a2dd6ebd0ed9", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ddaf98d272ae9fb97d8b43b8d9411eac", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbce7a68d9067a732b79c5e727408a41", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2aaf5eb73abe8415d8f33ca006c00172", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a128c81c9a30d56203b37b011e4a0c2", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01fd700acef5221dc72cf85be3c54a50", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbe916074bf1dcffddbc9cbf546d8a67", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "55ac61b1b9e6f0941f16c5f4f9ff2103", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7fab8c874ce88d9edf078511b0bef44d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "144ed461264ed7cebf088fa2c7ad44de", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b81b0ca91bc6d6461ae34511047200e2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0613a4108fda843fcb93c42349b0438", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c0093d5741ae6d2890f78bba312f82b7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ea63f46a82209c706d5911ee121438f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85c16dc54cac7e8f37eda3dd020f1083", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f203566678e419a5268052bb4663d81e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0a715fd17696cdcd97bd26f9303a5d10", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ccfedbcadcb9d5e84c57669805c4ec72", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dc13af9539bcde8acc312692c54ed8b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b7c0647c2767fd4a526da45ac3285037", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d36b2823d78b49a89c690467ef3f42f9", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "abf5a857b01282364743dc2af7bba233", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1c8cf3a498b757cec34fabbf1a39340c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2338d909ad1c517b51b623b3edd3f0f9", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "98bfa8af2d4977a164e5ea118364df77", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63584990d0b058602f8476ff2d634b4b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a2dbad66dcce7948778e54974e77e2e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5c8cc23509b0a745ed1b61d0b3a7ac1f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c327cdf90aaf2b6e9308c94ea59feaf9", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b2cea0019fd332854e65e93cf981472", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9d1a5fdd20395817f1ba910fa70f8b3b", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 960.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 960.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bac07c68ea013f0df822f4354a2dbe1a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2c695ef4d3d08d653173725a2e1bd37", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a16af07edb3335d1ac397e8b7af6e973", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a0f20b5422774a5b276f279d23e38c60", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4471d76d1ff0f99cf197500ba65e302", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fba206d5e5f4f4a12aab041669521e09", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23b5ae351ec4bf922086acece9bef2f1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "592c81d56370808449f6c50af8bed099", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6bc528af4f623a1bb34b1deabfe2abc7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "04b3f3408d1f7c8c714f5b6fbd902054", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e6422b32c5b9dc943c2c7ab79a3cdcf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "76cab75fa5be9e4042b3f2f3d2d8cf64", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b4d9df1445a8c13392d8a96a3c250a7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f72f98a78a98d4d74a73af6d410b298b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f848e08b8154140da45a21ce799a8a5d", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2eeba1dc83efd92d845fc194717513b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dbdc75f0973c0fde28bd1df06250fc39", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6276b09bd834c6bc79428d61d74dd77", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "74be8a48c2b72e33066003906ee7192e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c180f314218da7958d73f407250c1b8d", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a7b62686d7f2d3c242721d3d2db2eae5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba8b5f7fbb1543fd2f94a6ae336e85a4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58be49ed17a98f2ac4665ceeb7cd66c7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "826ff72d6744e5d30de2fbfaacf1c269", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "089099643fde9339fde034a8079c3a6d", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e2d0b8fc3766fc8c30c998b59c34253", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a87258bbc6d1af5bf43678ab8910b59", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc1e204ddb200e0fa99024f5da038753", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b01942bcec79d691dfaed4d7faf30591", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6138c844de5ac2fa8df7bcdd0e1a7040", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4e568d3fc266a1967528ffac30de13d", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 960.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 960.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "de17367932137d8a542c060fe1bc2ed5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f135a99ba08d93ba9d9bb64e7da2ca6b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9723ebe0a2b6c73753ca59bc2a1d43cd", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5f44cf701bffe7178fbf6a5171228029", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9ac7d3dc7faf96db703965bfb127fbc", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c5a9d3bfd5c0fe4236e3ab9379961e8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca71ad5ebf2a2cbf6367dc0810997a8f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "51a43f0e67279fe512028e6ae72f0db5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bc4f808fa57af8cbf09583a02ae119ac", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e66997c3f614647801a97760b3f4f19", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e48004e2d059fa38e42a9a17256a31d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bba993d128a9311df11ecf0d41685b9d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bbbea29c78f7e75cbc69881dbe16ca2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "80fe706f06a57ef9d0eaafcc4552c39e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e320c5604c47eb76af4aa12ae2f9d3f", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcb79bfdce705e73744b5056a1eb6fda", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "422417c6ad45ab4fbbd2740581241347", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c970beed02eef48d8529a1fa0d970616", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da54de907502bc1df94ceef09d8db2b8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "475bea3f38b3355fc4bce1f37e9072d5", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30b969fbb02369992c5a7f48502f3cb7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3ee13267db17ffe7dd8ff71c4324e7b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c5df146f773956bf545cd4ea0704119", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e1a9d6148cfa73dc04aa569aa51f48d5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4ff122793e0ee1b4a3b1fbf1e6a77478", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdfac2ca4642522fb2a686205f7ce79a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61f390acc2690f3485bec1ad1ea5886d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "705bfb7e68e2e0d966246712fd6c942e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "be9f292a4c706e1849d4f0b48fdeb93d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7419d4ea9f95bdc170b8f81f17c4636a", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "61b97c1ce198d991b57aa2b809f27a73", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 960.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 960.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "73e00d4930c2966bf6791e380384f362", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "07ae4ed19ae9660af332f0be0b56d68d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8c3bea00705e9a9a81de597af5a71d5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f6fc097ede5456310d43bd6d7c7c9b34", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "688d1c98f1457549bf8251be4c921fcc", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ec3d344fa08cfc76b0545be620a3199d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdea66b6791769b17670c31dc66ba4fb", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ce56fce8e05945898969e923ff0cea5", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d39a672cf3ea3f44e9e5fbecb00e27e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05056c7089a576fd7d7c1b1ac195bfd0", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b09c7a48146dd179dcda07867b3dd11c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b26252eb8bf18ced6b0ee451809c710e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4ca0652307c70fda3dbb246dc03ddad", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e74a59c2f8285abef8d78d32ea9e5b34", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4715452355593505ccc0385192e39727", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "95b9bda9c5a72e48212cfe60cd91037d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f36e06373c87ff49a15eb84913ae3ea7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7605f634a1da4e7fab01658eedacb9cf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1be56d12809fcd56a3456f73c12d9cf7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e8c3d3d0c1c9ed46fc6acd3252a335a0", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e0b3200d541cd1f1ea51ce00e2537880", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "50306f6eeca27707cc82243e9aa89c2f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1463735e58ae294fe91a24112d75e199", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "da2f5927d50f45ba81f8a574e372217f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6646a456ea1eea0b8ec5012335035703", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "84a4578ad79164f8c0623a12719e52b3", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf74dceb2250381b347cac9d2fd541eb", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e1d836211190e33bd691db006701113", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e4711a7a70e93536a60f1cd36133ef91", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2467da95ec9f4be135e1c4dd12f948e8", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a15d24345df0423ce6a8660b2468cae", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 960.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 960.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ce7a11546b07ad59adb7ec1cede12510", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4429b06774f81181427c145a7563798", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2d7f1352375c43faf3de9ddfc5185455", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b887eca2801cc87d998ce0a03edb0e56", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "104511a148beaec2d93472d41b3503a8", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e97bd48413fccfc54cf8f670f1894bd2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7482ccfa9bf0b171cc5b1b8e31091735", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fb27843f9d4ec0b1d2078e1284fbc0f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d46f93f206cbb5a080539e5607ffc1dd", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ed82a0cf76320d213693f6e71eb9d84a", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd8dd30871ef6f2ed28cfc107f278c55", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "15d2d1c986b192f1f08d4a06b5dccd48", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58eeb6a13b7c355fbef8716419fec4b9", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b27740134bdb7888d2ab81ea5942be28", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f2949afa01fd05b740b314c72a96fc4", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c381a6cc5536c8ea298bfc59fa8fceab", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7e931311c4ed17c0e7ba04bd0a77a75e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5514ab9a20b0271768ae9fc14dc90d9a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5df1796d67755f12e802b972f584f511", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f5292c946e9d305477976f1ec6f2a55", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e7afe3f273dac0fd97b0370d9e2515d3", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0aef671a593aaf9981df2c2dacbefad2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a2c621f6a6b7651ca52d758531cc4d1c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1259754018d53c2fbbaca17f5c2698b4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d0ecd12ee1890ec55a79c44dc9ea557d", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0ed50436cd6a8234238121f1f5bd426c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4fb09cd320fc1a38b09b5f1602c6c1b6", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "65abc97b970bf04f2c414325e94b871e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "513e23aa8ef8200b429324f86a8c9b30", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dde8de2bef926290011b1697e42abeeb", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fd86b52ef7b808aa298300f148c77602", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 960.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 960.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8a76677bc48ed9f545384504fbba6e90", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f80c37c84d2d6568287374f4568ac820", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae5079c329074dc2f0871218b09f317f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d76f362e4c07e40011b7f411be30def8", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6e0a23c05865bf847e94559f969bc1d0", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d5a61963349621bc3c601fc7b64d2e2c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39a77e02798e1a3268a3ec5aea84f7bc", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a30e93e4f2b140bc546d5a5b2cc8c6bd", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2fdcdaa5a7ee6a7d3db021df18dd3fba", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32672861e648cd49bfeb419558c20b3a", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c996b29ed7df838add66af664d71785b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9521082b7ec4fb07255624e544caaa6e", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "325f5d475bfd36e76a873dd605fe7242", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5b524097dd4128128895008fa769de23", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4bae32cf4161eb4dac3a91aa9d9c062f", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94d59afd231f30935e1a1995ea1e685d", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d14065f53860ec657aac9288ec9f6adb", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6a37a17a3a7614bb224c2a3b8b710ca0", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f04382a1f59977472460bf1e07d3760", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd5b7d3e9da636063ab4d64bfca82303", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "315e62f3e8f400b6944440d8d3c7be75", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f8dbd2fced29b137f8fe2c33517864b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b2db1b62e044d5b630445aca0dcec234", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "efd097fd99e398583fae000fdb986ef7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f7c043757739cdb7cba19baf20b5b5e", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "70765c9c360b69c3aeb0e5a5fd3d7da7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "918f9f6701dc12f1122790a6d5611f24", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3db11c83bbd7afc8ee76c64ac6f62ce0", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d4db973e579c505d20cab5fa328be229", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 100.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -6.04 - }, - "volume": 100.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2423dbd25997ce3f6adc1bbf37354ebd", - "notes": [], - "params": { - "flowRate": 572.8000000000001, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 160.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -19.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -7.04 - }, - "volume": 160.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "30d9384ff8c6eaaef59c59b1bddad2fc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 960.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 960.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93249558b33f74f9b446c36ddf182620", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d844b953c2a8baf22e73fdf052426785", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb787da70ed20bf1511f1bf64309c347", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 342.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4398eaa606e563677613433da6b8bf6", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ecc815ad0e0c9a7da8b750b608c9a57f", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 19.395, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "647109451dd437639b119d2bf5fb01a1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4f26aa220034b83c8e2c571201f8a7f7", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "794351f1d28e7813954d844c2681dde9", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e8ebf417858e63cc71ad0caea3bce8a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 354.55999999999995, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8d9b3c3bc563a2044b9806aae90e1b4c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c1e062c3504016a460cf12014f343da", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 345.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "12f16f6b54e6c5c7dff8438bca61d500", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 19.395, - "y": 345.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7759d2a65d0add0c8ade89a494cbed9c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 345.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f654f4c0e618cea01fa2615c5306cf29", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 345.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dd547a81d875e02f3c4e99eec9537199", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 345.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8f7390936085347f837014444845316", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 345.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "484111108f925bcf348cbee9a0795b32", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a9d6ac655b9da5087e49c06f8254e2a4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 336.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f3d7aa1e2b026805a20558bb3aac43b1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C4" - }, - "result": { - "position": { - "x": 19.395, - "y": 336.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9a72480c69a2a28dc18ba750a301bb54", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 336.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb3e9627f6552e8c1a2df93fa1274e14", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 336.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "58b05a816f78e0fc8b9cea483462f911", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 336.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "498bc5b22101f01a090517fba7ab1768", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 336.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8f3d824f1928b4122a96d964b94a020", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ac1db08e6f6ce0f858aa5263c7989c5b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 327.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7abae839146807eead303f9c2a1d2fdd", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D4" - }, - "result": { - "position": { - "x": 19.395, - "y": 327.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3344d39ea647bbe162b339d8a5b60cb1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 327.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b62f2a532bab64904108a4842b7c0554", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 327.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6302c47fdcf2e917feeb4c99fa542244", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 327.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09cd28986baa71666e27e441bf8ce5ba", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 327.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "32e5e19ea6a67b9c8b72bfb4d6056e83", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b1a9b93b2751b7fa8bea0afac52d7de", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 318.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c3dd11cb865a15703165d07ab9bd2084", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E4" - }, - "result": { - "position": { - "x": 19.395, - "y": 318.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b938c7c5022262d52adcd7f2492955a", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 318.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bdae2208d8aecc4393547d683d0c2f20", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 318.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e416a41aa9b6f0b338de5fb0d24181a4", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 318.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0301fa81cbbcd14f985ba77f7c6811cd", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 318.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "78f9e796dec47811a8a9373f55403a7c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "49f1e6bae45ec56ba28a569fdb6fa55b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 309.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "09223393a262b0d783b9731c26474c16", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F4" - }, - "result": { - "position": { - "x": 19.395, - "y": 309.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c823a67340a891e16a4dd2b21caa01da", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 309.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae8107534521c82f42f783efde6c0e33", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 309.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c2ba66194a6065fa1654b746d196379", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 309.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc55f55ad6548c97155f4b5c7ba90b0c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 309.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b56f6b07a93cb80546ba139299fe3f7e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "94f7738d4e4890ca3ce75fd42e0f3cff", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 1.3949999999999996, - "y": 300.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2244b46084fc5860aa3a7e6b4a1a779b", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G4" - }, - "result": { - "position": { - "x": 19.395, - "y": 300.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85baf3a1e424f8011ef08c08c28315f2", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 300.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bb3cedc58b5c090d1b694dc2efd6a670", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 300.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "48e8bf95466d444e0e4fb3a5fc370b3c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 300.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6098a0abb7e933690801fa8020e73773", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 300.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "53b10d606eabce2aa8ac54cec33b2f9f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5bf57a62f35e3eb7f12386801ab83437", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 1.4350000000000023, - "y": 291.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "36ec22b600cb16a5a2521272f428a283", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H4" - }, - "result": { - "position": { - "x": 19.395, - "y": 291.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6f019085d17ec98f3b4b1b8b83cd8f1c", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H6" - }, - "result": { - "position": { - "x": 37.394999999999996, - "y": 291.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0350ddeec580644219ff4c630291c0f1", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H8" - }, - "result": { - "position": { - "x": 55.39500000000001, - "y": 291.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bf31a8444980d8058ac017ab12a97b15", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H10" - }, - "result": { - "position": { - "x": 73.39500000000001, - "y": 291.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "792accbe52aeb1495dee63fda8a44ecf", - "notes": [], - "params": { - "flowRate": 501.2, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 32.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -18.900000000000002 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H12" - }, - "result": { - "position": { - "x": 91.39500000000001, - "y": 291.56, - "z": -6.440000000000002 - }, - "volume": 32.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f64d03fc7048e4f7ae14c889ee41d81e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 192.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 192.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "beedc035112472fbb00cc40093cf0a4f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "93685ad88d0e8d85c212eae4a02d3fd0", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3c34aa5595ab4c7487a2ea4d269a41ce", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 378.38, - "y": 181.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "19a1820108249cad14ada161df9ed129", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c507bae2d174a80a57ae4e0fe7b0d577", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7770fa2adb461b4412cb546cdc02809b", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -87.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 36.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "28421f683448438d24b328030ea131c3", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f043aeab997476fbd270f54ca6185dec", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -92.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 31.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97563bdcf21cc3867e5309e28fe5c862", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8322f669931eaee9c44a7973c283821c", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -92.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 31.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4736764347d14d99bf232e6042761ee4", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3adb9069e22c44bf4f5fa5495617627a", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -105.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 19.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b4716ee9093b4cb0d82c30f863f24b12", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5ed9511f5b3a00fa3559b25ac7fd8ef3", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -111.25 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 13.1 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "946aefd02b991e1c785223508f5cae2a", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ddb4b127e2e821d022ced086f5aca19d", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -114.375 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 9.975 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d024aae60395ce66ceae5f5c83ba3732", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 114.35 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9aea5a9d62a50be543cf827350d56740", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 680.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -114.375 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 227.88, - "y": 67.74, - "z": 9.975 - }, - "volume": 680.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cffcf38f1aba0942e5a9f5efabaa4179", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 680.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -10.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 114.35 - }, - "volume": 680.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eccb3279c2c5c106667e2a1f7949d487", - "notes": [], - "params": { - "seconds": 0.3 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f84c39c07178503ce54cf9584e84fe86", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a89e0091fd9d2e498317401fd02ebee3", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d83e6906fde8a70c84e6b61cedcf37da", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 342.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d623e6cbacdcc1e5b3e52acb77f8657", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 20.75, - "y": 175.63, - "z": 15.800000000000008 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ba3c0c29e13b4befe4c428efade1dc01", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 70.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -77.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 46.85 - }, - "volume": 70.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87fd6dd8b575f8eb77c00785872b593c", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e16b60fbaafec4924afb86d9a0e8a462", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "353eab2470ba6f2f314eeec030744da0", - "notes": [], - "params": { - "celsius": 25.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 25.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22ae5c008645b762b71a8f39aaec7449", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3e1f0d21c15b942872bfd7a8b1ba1b6d", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85a2b41f5f60500836eac95f5b29f4e0", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B5" - }, - "result": { - "position": { - "x": 378.38, - "y": 172.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "373122df3022cc7e8902d09eaa046616", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -62.49999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 61.85000000000001 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c367daeaa3ac12f7423298268a9ba8a2", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "23a2795a454405abeebf65944ba9ea40", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "10e177947bff107fef4b158242654f22", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -69.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 54.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "927885c6489eeb1871b8c626b3538cc6", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "afd778b663b25e20ac42d1015734abc2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7dc12bcc31c8b3d6f3ffac6458e92a86", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -76.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 47.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7d69cb1293de1118beeb45934e093f7b", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4b68f9cfb368eadfbced07880871731a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82dabdcc455459a12eba278c41e10d55", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -83.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 40.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e17af30183629e93d60643412fbbb79", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eaf8e31b407815ca8dfb8ba26c949eb6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7ebd83c89fc32ae6a13a0fe500a41505", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -90.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 33.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cbf21a20bb669484b082898a05d36b4a", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8f6a523560997cf6eb60be673131bd98", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a28a491aaa44c1a4de796fabfd366e1", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 26.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "88a15d24f464983ca6bd0ea7991a6caf", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f0d68cb1c18fcf882b1732fa3ebce2a4", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc67d876483e4537d13a05d8f3ab0b63", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -105.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 18.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f4f4ea6b62063860e2372d2d61c5dedf", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0d89d1cecaa44c656a5cc6be4c2a6aa2", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "4eb5006065f9da626e20d03f78e1478c", - "notes": [], - "params": { - "flowRate": 75.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -113.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 10.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6477e7a847f9d8196821787aed48b0cd", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "998cbb59fab4e9d71850d2ef8ceb83bd", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b267fd1cc4419500d21cce6f0bfed5b", - "notes": [], - "params": { - "flowRate": 20.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 250.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -115.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 9.35 - }, - "volume": 250.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "86c5f00fec12a2156b0ebdaae80a860b", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 250.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 250.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bbc0e55a5c76b2a1f4b010a589fe69f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d825b5917640740e4e83b1c81d92378f", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a88f081485a34059117a9ce9bc48b87", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "cc10b9fa07e71b3ad36aff1ce3e6cab7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C5" - }, - "result": { - "position": { - "x": 378.38, - "y": 163.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7c316efff36438a57e0460cb3a1bcb60", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 277.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d6c208e0dfe32a2c7396ba35e55b4d23", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82ec33394f21464190855eca79b92aeb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c828d171a41042d81d7f3bd7b0c58023", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2b37a62dc16f26463d74f4c9bfec4e8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "75d706ca439043e9f0daba23490d101f", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 800.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 800.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "63b51dc24be55db89bb07c3c2254764a", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -92.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 31.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6db13e7db01fec597d186dc8dd0f1520", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -92.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 31.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d41cfd822f0fb7d9d6273e7a53b4a91e", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 256.88, - "y": 67.74, - "z": 121.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToWell", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2a6cf4d9972297f53b0d11abdc8782ff", - "notes": [], - "params": { - "forceDirect": false, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 248.88, - "y": 67.74, - "z": 121.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6b4c4be2e0205ac78799af70ba2575e6", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 248.88, - "y": 67.74, - "z": 121.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForDuration", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "890f1146959a76e01cd28adb87b85071", - "notes": [], - "params": { - "seconds": 0.3 - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ae35ba2659361d3265e1f33748c033d7", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": -4.0, - "y": 0.0, - "z": -3.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 248.88, - "y": 67.74, - "z": 121.35 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "bcb7b6c9db62b649cacaf16c566a4e40", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e628bd4c55f612d4ce808c491c100058", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f306af11a884b0dd26c864e4181a7276", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D5" - }, - "result": { - "position": { - "x": 378.38, - "y": 154.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6cc3170a75373b52f70e357cab434ccf", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 277.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ed733d00a9a4242c6be84931bfdc6d7", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5e370d2f2b1d76f69c67dbb1f157d0eb", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 277.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "81534bd72548477c973ae9e3218e650f", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "169f57ff31089bb4aa616d29a8a52f58", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A5" - }, - "result": { - "position": { - "x": 277.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a350243f9568a811af7619b3aab4bc57", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d98fdfc25b8754a644ed8d4d855dacc0", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "452c5bc027bcb611397de465a91410f7", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f323af431f7622e92a7993185202afd9", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f9c14f15e7dbb89f2659af6a771a9bc1", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E5" - }, - "result": { - "position": { - "x": 378.38, - "y": 145.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "97f6bd4565efaa84ecd18ffc6ce4c205", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -83.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 40.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f2fa8c77b350de33b3db4be8b97b13fc", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "297644cb329c38500373500a7ab51709", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fbb0007c483b4b1c02b16ed55fc71f7f", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -90.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 33.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "87c9753f046df895f2a3b6cdac61f1db", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3239ecf54441b1271650a6296613e96a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "764887d22f79be4caed757d354433298", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -97.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 26.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "644c55e8b6d2ffa5a1436cb4c615570b", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0e5dd53e6844d1f3c1176ce80353a5e8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7feea552a82b90aa576b2c1f8dfff39e", - "notes": [], - "params": { - "flowRate": 150.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -105.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 18.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c845cf8a9378e4cdd2208c19028f7df4", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "441f849abdf6ec12132f004b4e01ea0a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d00f3159f8be05d45825c2852fb1251d", - "notes": [], - "params": { - "flowRate": 75.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -113.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 10.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "14192878a86daddc5f3a61c169f7e42c", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 1000.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "06b904daf6d841d5d72800f148e0b800", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c4b172e8adf003b976edad165eaebbe0", - "notes": [], - "params": { - "flowRate": 20.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 250.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -115.0 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 9.35 - }, - "volume": 250.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fc61b003befc08d8f0d5bde29db3014f", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 250.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - }, - "volume": 250.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "blowout", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9c98d8a32d6639671df7624d063a3285", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -17.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 252.88, - "y": 42.74, - "z": 106.85 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "beece8b06236d2dee060c51fb0ccb434", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5018a9c3365bef911e2a13ac07c0578a", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "eaaf768582291c146a4f028b5f57bd17", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A2" - }, - "result": { - "position": { - "x": 351.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2937abb42993891dfeaf71e80b55ae8a", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 38.0, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9113ad441c05929dc384420f729e26bb", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 60.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A4" - }, - "result": { - "position": { - "x": 252.88, - "y": 67.74, - "z": 7.85 - }, - "volume": 60.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8729d7daeccf3cea88566843760ad392", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "85849339022146ad4559507bb7604443", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "54b787d00b7b6d058bbf734dd87bb686", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7a194b51516344c0c92fc00ed59b88f7", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F5" - }, - "result": { - "position": { - "x": 378.38, - "y": 136.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8b4482acb64f82bf349768bf811d147c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 220.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 177.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 220.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a57588a9f36c0e3a3c94754d83af5675", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 220.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 220.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "f159fd40012b854cf3362c7c3b36a9cf", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29c4ea67c57450c6ac77b8f97a877023", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "01691890714131e61b9b5f304d9b1b68", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 351.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db67dcb92fd8fcd291742298832b3f54", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -36.89999999999999 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B4" - }, - "result": { - "position": { - "x": 72.5, - "y": 158.38, - "z": 15.800000000000008 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9f19db88e7ddd38201997cfe608d8af3", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 44.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 44.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6ed29e3ab710e05643aca14b1a06fd2", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e58d15650012d1711ebac4fd1d6ac46f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8e2d15a21f657e64abe416a30b4d5be4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G5" - }, - "result": { - "position": { - "x": 378.38, - "y": 127.38, - "z": 99.0 - }, - "tipDiameter": 5.47, - "tipLength": 85.94999999999999, - "tipVolume": 1000.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "641d268bca22ea417a384f7e4f890a93", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 240.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 240.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "db2a5736efeee03d3d5104f099c68449", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 240.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 240.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "29410f93dd8f5c37fb8f7c264eb7e6bc", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 240.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 240.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "af87f80d06da189620146baf82364c33", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "pushOut": 0.0, - "volume": 240.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 240.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "82022440bfa139e2de599f8e9d28efaa", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 240.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 240.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "215f5b95955888f95add5a22fa2e9e07", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 240.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 240.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6dc194a7089567cc245432f017b6e084", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c8c8857829283802c02ac829d924b14f", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c6b820c6bfb6a550147f3cc3955cb41f", - "notes": [], - "params": { - "message": "Move reservoir_SB from C2 to chute" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d80276a4138450ff55a759fdb9bb68f4", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "addressableAreaName": "gripperWasteChute" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "kind": "notOnDeck", - "logicalLocationName": "offDeck" - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "gripperWasteChute", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "loadLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2c62dd108583ba674e2ea46d3a5e0e0e", - "notes": [], - "params": { - "displayName": "Plate4", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "addressableAreaName": "D4" - }, - "namespace": "opentrons", - "version": 2 - }, - "result": { - "definition": { - "allowedRoles": [], - "brand": { - "brand": "Opentrons", - "brandId": [ - "991-00076" - ], - "links": [ - "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" - ] - }, - "cornerOffsetFromSlot": { - "x": 0, - "y": 0, - "z": 0 - }, - "dimensions": { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 16.0 - }, - "gripForce": 15.0, - "gripHeightFromLabwareBottom": 10.0, - "gripperOffsets": {}, - "groups": [ - { - "metadata": { - "wellBottomShape": "v" - }, - "wells": [ - "A1", - "A10", - "A11", - "A12", - "A2", - "A3", - "A4", - "A5", - "A6", - "A7", - "A8", - "A9", - "B1", - "B10", - "B11", - "B12", - "B2", - "B3", - "B4", - "B5", - "B6", - "B7", - "B8", - "B9", - "C1", - "C10", - "C11", - "C12", - "C2", - "C3", - "C4", - "C5", - "C6", - "C7", - "C8", - "C9", - "D1", - "D10", - "D11", - "D12", - "D2", - "D3", - "D4", - "D5", - "D6", - "D7", - "D8", - "D9", - "E1", - "E10", - "E11", - "E12", - "E2", - "E3", - "E4", - "E5", - "E6", - "E7", - "E8", - "E9", - "F1", - "F10", - "F11", - "F12", - "F2", - "F3", - "F4", - "F5", - "F6", - "F7", - "F8", - "F9", - "G1", - "G10", - "G11", - "G12", - "G2", - "G3", - "G4", - "G5", - "G6", - "G7", - "G8", - "G9", - "H1", - "H10", - "H11", - "H12", - "H2", - "H3", - "H4", - "H5", - "H6", - "H7", - "H8", - "H9" - ] - } - ], - "metadata": { - "displayCategory": "wellPlate", - "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", - "displayVolumeUnits": "µL", - "tags": [] - }, - "namespace": "opentrons", - "ordering": [ - [ - "A1", - "B1", - "C1", - "D1", - "E1", - "F1", - "G1", - "H1" - ], - [ - "A10", - "B10", - "C10", - "D10", - "E10", - "F10", - "G10", - "H10" - ], - [ - "A11", - "B11", - "C11", - "D11", - "E11", - "F11", - "G11", - "H11" - ], - [ - "A12", - "B12", - "C12", - "D12", - "E12", - "F12", - "G12", - "H12" - ], - [ - "A2", - "B2", - "C2", - "D2", - "E2", - "F2", - "G2", - "H2" - ], - [ - "A3", - "B3", - "C3", - "D3", - "E3", - "F3", - "G3", - "H3" - ], - [ - "A4", - "B4", - "C4", - "D4", - "E4", - "F4", - "G4", - "H4" - ], - [ - "A5", - "B5", - "C5", - "D5", - "E5", - "F5", - "G5", - "H5" - ], - [ - "A6", - "B6", - "C6", - "D6", - "E6", - "F6", - "G6", - "H6" - ], - [ - "A7", - "B7", - "C7", - "D7", - "E7", - "F7", - "G7", - "H7" - ], - [ - "A8", - "B8", - "C8", - "D8", - "E8", - "F8", - "G8", - "H8" - ], - [ - "A9", - "B9", - "C9", - "D9", - "E9", - "F9", - "G9", - "H9" - ] - ], - "parameters": { - "format": "96Standard", - "isMagneticModuleCompatible": true, - "isTiprack": false, - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" - }, - "schemaVersion": 2, - "stackingOffsetWithLabware": { - "opentrons_96_pcr_adapter": { - "x": 0, - "y": 0, - "z": 10.95 - }, - "opentrons_96_well_aluminum_block": { - "x": 0, - "y": 0, - "z": 11.91 - } - }, - "stackingOffsetWithModule": { - "magneticBlockV1": { - "x": 0, - "y": 0, - "z": 3.54 - }, - "thermocyclerModuleV2": { - "x": 0, - "y": 0, - "z": 10.7 - } - }, - "version": 2, - "wells": { - "A1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 74.24, - "z": 1.05 - }, - "A10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 74.24, - "z": 1.05 - }, - "A11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 74.24, - "z": 1.05 - }, - "A12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 74.24, - "z": 1.05 - }, - "A2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 74.24, - "z": 1.05 - }, - "A3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 74.24, - "z": 1.05 - }, - "A4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 74.24, - "z": 1.05 - }, - "A5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 74.24, - "z": 1.05 - }, - "A6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 74.24, - "z": 1.05 - }, - "A7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 74.24, - "z": 1.05 - }, - "A8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 74.24, - "z": 1.05 - }, - "A9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 74.24, - "z": 1.05 - }, - "B1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 65.24, - "z": 1.05 - }, - "B10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 65.24, - "z": 1.05 - }, - "B11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 65.24, - "z": 1.05 - }, - "B12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 65.24, - "z": 1.05 - }, - "B2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 65.24, - "z": 1.05 - }, - "B3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 65.24, - "z": 1.05 - }, - "B4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 65.24, - "z": 1.05 - }, - "B5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 65.24, - "z": 1.05 - }, - "B6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 65.24, - "z": 1.05 - }, - "B7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 65.24, - "z": 1.05 - }, - "B8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 65.24, - "z": 1.05 - }, - "B9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 65.24, - "z": 1.05 - }, - "C1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 56.24, - "z": 1.05 - }, - "C10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 56.24, - "z": 1.05 - }, - "C11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 56.24, - "z": 1.05 - }, - "C12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 56.24, - "z": 1.05 - }, - "C2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 56.24, - "z": 1.05 - }, - "C3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 56.24, - "z": 1.05 - }, - "C4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 56.24, - "z": 1.05 - }, - "C5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 56.24, - "z": 1.05 - }, - "C6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 56.24, - "z": 1.05 - }, - "C7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 56.24, - "z": 1.05 - }, - "C8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 56.24, - "z": 1.05 - }, - "C9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 56.24, - "z": 1.05 - }, - "D1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 47.24, - "z": 1.05 - }, - "D10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 47.24, - "z": 1.05 - }, - "D11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 47.24, - "z": 1.05 - }, - "D12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 47.24, - "z": 1.05 - }, - "D2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 47.24, - "z": 1.05 - }, - "D3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 47.24, - "z": 1.05 - }, - "D4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 47.24, - "z": 1.05 - }, - "D5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 47.24, - "z": 1.05 - }, - "D6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 47.24, - "z": 1.05 - }, - "D7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 47.24, - "z": 1.05 - }, - "D8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 47.24, - "z": 1.05 - }, - "D9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 47.24, - "z": 1.05 - }, - "E1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 38.24, - "z": 1.05 - }, - "E10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 38.24, - "z": 1.05 - }, - "E11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 38.24, - "z": 1.05 - }, - "E12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 38.24, - "z": 1.05 - }, - "E2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 38.24, - "z": 1.05 - }, - "E3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 38.24, - "z": 1.05 - }, - "E4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 38.24, - "z": 1.05 - }, - "E5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 38.24, - "z": 1.05 - }, - "E6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 38.24, - "z": 1.05 - }, - "E7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 38.24, - "z": 1.05 - }, - "E8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 38.24, - "z": 1.05 - }, - "E9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 38.24, - "z": 1.05 - }, - "F1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 29.24, - "z": 1.05 - }, - "F10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 29.24, - "z": 1.05 - }, - "F11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 29.24, - "z": 1.05 - }, - "F12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 29.24, - "z": 1.05 - }, - "F2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 29.24, - "z": 1.05 - }, - "F3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 29.24, - "z": 1.05 - }, - "F4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 29.24, - "z": 1.05 - }, - "F5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 29.24, - "z": 1.05 - }, - "F6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 29.24, - "z": 1.05 - }, - "F7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 29.24, - "z": 1.05 - }, - "F8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 29.24, - "z": 1.05 - }, - "F9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 29.24, - "z": 1.05 - }, - "G1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 20.24, - "z": 1.05 - }, - "G10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 20.24, - "z": 1.05 - }, - "G11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 20.24, - "z": 1.05 - }, - "G12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 20.24, - "z": 1.05 - }, - "G2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 20.24, - "z": 1.05 - }, - "G3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 20.24, - "z": 1.05 - }, - "G4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 20.24, - "z": 1.05 - }, - "G5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 20.24, - "z": 1.05 - }, - "G6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 20.24, - "z": 1.05 - }, - "G7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 20.24, - "z": 1.05 - }, - "G8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 20.24, - "z": 1.05 - }, - "G9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 20.24, - "z": 1.05 - }, - "H1": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 14.38, - "y": 11.24, - "z": 1.05 - }, - "H10": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 95.38, - "y": 11.24, - "z": 1.05 - }, - "H11": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 104.38, - "y": 11.24, - "z": 1.05 - }, - "H12": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 113.38, - "y": 11.24, - "z": 1.05 - }, - "H2": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 23.38, - "y": 11.24, - "z": 1.05 - }, - "H3": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 32.38, - "y": 11.24, - "z": 1.05 - }, - "H4": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 41.38, - "y": 11.24, - "z": 1.05 - }, - "H5": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 50.38, - "y": 11.24, - "z": 1.05 - }, - "H6": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 59.38, - "y": 11.24, - "z": 1.05 - }, - "H7": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 68.38, - "y": 11.24, - "z": 1.05 - }, - "H8": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 77.38, - "y": 11.24, - "z": 1.05 - }, - "H9": { - "depth": 14.95, - "diameter": 5.5, - "shape": "circular", - "totalLiquidVolume": 200, - "x": 86.38, - "y": 11.24, - "z": 1.05 - } - } - }, - "labwareId": "UUID", - "locationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1fb3fbb99057a2e1a1fde2af7b828acb", - "notes": [], - "params": { - "message": "Move Plate4 from D4 to C2" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveLabware", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7abf911a509370cc51037fa62405bcae", - "notes": [], - "params": { - "labwareId": "UUID", - "newLocation": { - "slotName": "C2" - }, - "strategy": "usingGripper" - }, - "result": { - "eventualDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "immediateDestinationLocationSequence": [ - { - "addressableAreaName": "C2", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutC2", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "singleCenterSlot" - ] - } - ], - "originLocationSequence": [ - { - "addressableAreaName": "D4", - "kind": "onAddressableArea" - }, - { - "cutoutId": "cutoutD3", - "kind": "onCutoutFixture", - "possibleCutoutFixtureIds": [ - "stagingAreaSlotWithWasteChuteRightAdapterNoCover" - ] - } - ] - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1a48d876ca42357ebdad8d698c96697c", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "C2" - }, - "result": { - "position": { - "x": 351.38, - "y": 377.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3b12711f0c5fefb3964d0a58059547b8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "0f69d95af0e968b6c5d1d6a9f2848648", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "A1" - }, - "result": { - "position": { - "x": 178.38, - "y": 181.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b8a3a92258076dd28ab260d7da0a12dd", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "561996661438ad32f30064025a71a339", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "22d30d638e7643a9ba4099a043c336f8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "D2" - }, - "result": { - "position": { - "x": 351.38, - "y": 368.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dda9ac56601eebc550af5507b650ba66", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ef22755766d11a2515cdc656a1206eee", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B1" - }, - "result": { - "position": { - "x": 178.38, - "y": 172.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3f720d2440226bb801efee965717f463", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6ab3bb98a9bdbed8b9e677e296ccdd6c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9e4f48dd740d2a489dc80e274ba6adb4", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "E2" - }, - "result": { - "position": { - "x": 351.38, - "y": 359.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "485839dd464ddef95542a87a6385b6f8", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "186dddbff855c64ec728c3c6b5245e4e", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "C1" - }, - "result": { - "position": { - "x": 178.38, - "y": 163.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "b3fd11cfe96e22fd010a364eccca4a0d", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "59194fa673c3607674054ad97d130da4", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "39b13304ba6eb692a7ac9370fcd83397", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "F2" - }, - "result": { - "position": { - "x": 351.38, - "y": 350.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e89f19d98ff9041688efec2d1b47742f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "caa62e2be1b94fe7242674780b65cb21", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "D1" - }, - "result": { - "position": { - "x": 178.38, - "y": 154.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "68bcde1b02cc31584de93e81c75d0905", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "947243278c0f9b290088b6bca04bf951", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3600f9c73508d68ddcb79c30be68ef29", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "G2" - }, - "result": { - "position": { - "x": 351.38, - "y": 341.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "644e5aa965cb19ac07062b49af262f7e", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "5521a16682bbad03f2155e527cffb1e7", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "E1" - }, - "result": { - "position": { - "x": 178.38, - "y": 145.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "d817b39461690537ef2745e189d52cdf", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27af3ecebc991ad978eeea654426b0c2", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "678f2dfef1fe079dd59194fb9f0b5e8f", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "H2" - }, - "result": { - "position": { - "x": 351.38, - "y": 332.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "dc5afdb2e24f9321e0a1541503f3258c", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "e9d66c66baae3e585ccd16fe39efe4f6", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "F1" - }, - "result": { - "position": { - "x": 178.38, - "y": 136.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "950bd4c5b63205e8f75aa287c29af1ef", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8030ddef9878c2c6c771e5547750fa13", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3cedfdb96cfa69746e4db401fc3df431", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "A3" - }, - "result": { - "position": { - "x": 360.38, - "y": 395.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "67bef249e017fc4b7c7e745abf060f2f", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c2eb913b5afd6d8e2e8643103fc91e88", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "G1" - }, - "result": { - "position": { - "x": 178.38, - "y": 127.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "c175199b657c21feeb3aa358cb7fd59e", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "1e0481ed1d49fd6bf1dfc331d166dfe1", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "pickUpTip", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "581868d27d115e40f1abab61a28559b8", - "notes": [], - "params": { - "labwareId": "UUID", - "pipetteId": "UUID", - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "origin": "top" - }, - "wellName": "B3" - }, - "result": { - "position": { - "x": 360.38, - "y": 386.38, - "z": 99.0 - }, - "tipDiameter": 5.59, - "tipLength": 48.59, - "tipVolume": 200.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "aspirate", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "3cb35dbb0ee00a51e49d8d1ca7556919", - "notes": [], - "params": { - "flowRate": 716.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -116.5 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "B2" - }, - "result": { - "position": { - "x": 202.88, - "y": 42.74, - "z": 7.85 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dispense", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ad285a5d617d4f7f3c4fa41085f6d7a6", - "notes": [], - "params": { - "flowRate": 350.0, - "labwareId": "UUID", - "pipetteId": "UUID", - "volume": 30.0, - "wellLocation": { - "offset": { - "x": 0.0, - "y": 0.0, - "z": -13.95 - }, - "origin": "top", - "volumeOffset": 0.0 - }, - "wellName": "H1" - }, - "result": { - "position": { - "x": 178.38, - "y": 118.24, - "z": 2.05 - }, - "volume": 30.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "moveToAddressableArea", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "ca653d972eb2ebd0344729120757c684", - "notes": [], - "params": { - "addressableAreaName": "1ChannelWasteChute", - "forceDirect": false, - "offset": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "pipetteId": "UUID", - "stayAtHighestPossibleZ": false - }, - "result": { - "position": { - "x": 392.0, - "y": 36.0, - "z": 114.5 - } - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "dropTipInPlace", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "9ba273ff1d2e9566b3010d3a7840875c", - "notes": [], - "params": { - "pipetteId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "05d4392fbec6420e11d1e734ed737d68", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "comment", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "7f8bb3bba9fac3e72f938ea524b092a5", - "notes": [], - "params": { - "message": "Cell Lysis" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "2bcea68c3166f7913fa4613d0cd50fa7", - "notes": [], - "params": { - "celsius": 80.0, - "moduleId": "UUID" - }, - "result": { - "targetLidTemperature": 80.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForLidTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "27eaedc71bbe1e2038bc6535b4b13863", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/closeLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "92bcc76fa676215f998bfcf8b0072177", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "91d9e9bd25c26a03671894ce1d9a01a5", - "notes": [], - "params": { - "blockMaxVolumeUl": 55.0, - "celsius": 65.0, - "holdTimeSeconds": 900.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 65.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "a266fafcd2dad426bea70b331794a7df", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/setTargetBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "8c866cbcc0be4f63487f5b5c7f492027", - "notes": [], - "params": { - "celsius": 4.0, - "holdTimeSeconds": 0.0, - "moduleId": "UUID" - }, - "result": { - "targetBlockTemperature": 4.0 - }, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/waitForBlockTemperature", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "154ac031b8e45befef0e63691ee97445", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "thermocycler/openLid", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "6d6bdb13931509a17873332f400814ce", - "notes": [], - "params": { - "moduleId": "UUID" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - }, - { - "commandType": "waitForResume", - "completedAt": "TIMESTAMP", - "createdAt": "TIMESTAMP", - "id": "UUID", - "key": "fb89f1ac5777bd76d37b8ed5b83d7b64", - "notes": [], - "params": { - "message": "Ready" - }, - "result": {}, - "startedAt": "TIMESTAMP", - "status": "succeeded" - } - ], - "config": { - "apiVersion": [ - 2, - 20 - ], - "protocolType": "python" - }, - "createdAt": "TIMESTAMP", - "errors": [], - "files": [], - "labware": [ - { - "definitionUri": "opentrons/opentrons_96_well_aluminum_block/1", - "id": "UUID", - "loadName": "opentrons_96_well_aluminum_block", - "location": { - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", - "displayName": "sampleplate", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_15_tuberack_falcon_15ml_conical/1", - "id": "UUID", - "loadName": "opentrons_15_tuberack_falcon_15ml_conical", - "location": { - "slotName": "D2" - } - }, - { - "definitionUri": "custom_beta/opentrons_24_aluminumblock_eppendorf_1.5ml_snapcap/1", - "displayName": "Tubes", - "id": "UUID", - "loadName": "opentrons_24_aluminumblock_eppendorf_1.5ml_snapcap", - "location": { - "moduleId": "UUID" - } - }, - { - "definitionUri": "custom_beta/eppendorf_96_wellplate_semiskirted_250ul/2", - "displayName": "Reservoir", - "id": "UUID", - "loadName": "eppendorf_96_wellplate_semiskirted_250ul", - "location": { - "labwareId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_1000ul", - "location": { - "slotName": "C3" - } - }, - { - "definitionUri": "custom_beta/eppendorf_96_wellplate_semiskirted_250ul/2", - "displayName": "Plate", - "id": "UUID", - "loadName": "eppendorf_96_wellplate_semiskirted_250ul", - "location": { - "moduleId": "UUID" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "B3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_200ul", - "location": { - "slotName": "A3" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "B2" - } - }, - { - "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", - "id": "UUID", - "loadName": "opentrons_flex_96_tiprack_50ul", - "location": { - "slotName": "A2" - } - }, - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", - "displayName": "Reservoir_SB", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": "offDeck" - }, - { - "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", - "displayName": "Plate4", - "id": "UUID", - "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", - "location": { - "slotName": "C2" - } - } - ], - "liquidClasses": [], - "liquids": [ - { - "description": "Spin Additive", - "displayColor": "#cc3399", - "displayName": "Spin Additive", - "id": "UUID" - }, - { - "description": "Resuspension Buffer", - "displayColor": "#ff6699", - "displayName": "Resuspension Buffer", - "id": "UUID" - }, - { - "description": "Resuspension Buffer1", - "displayColor": "#ff6699", - "displayName": "Resuspension Buffer1", - "id": "UUID" - }, - { - "description": "Round2 Ligation Buffer", - "displayColor": "#ffcc99", - "displayName": "Round2 Ligation Buffer", - "id": "UUID" - }, - { - "description": "Round2 Ligation Buffer1", - "displayColor": "#ffcc99", - "displayName": "Round2 Ligation Buffer1", - "id": "UUID" - }, - { - "description": "Round2 Ligation Enzyme", - "displayColor": "#ff9966", - "displayName": "Round2 Ligation Enzyme", - "id": "UUID" - }, - { - "description": "Round 2 Stop Buffer", - "displayColor": "#00cc99", - "displayName": "Round2 Stop Buffer", - "id": "UUID" - }, - { - "description": "Pre Lysis Dilution Buffer", - "displayColor": "#6699ff", - "displayName": "Pre Lysis Dilution Buffer", - "id": "UUID" - }, - { - "description": "Round 3 Ligation Enzyme", - "displayColor": "#cc99ff", - "displayName": "Round 3 Ligation Enzyme", - "id": "UUID" - }, - { - "description": "Lysis Enzyme", - "displayColor": "#8b4513", - "displayName": "Lysis Enzyme", - "id": "UUID" - }, - { - "description": "Sample", - "displayColor": "#00d2e6", - "displayName": "Sample", - "id": "UUID" - }, - { - "description": "Sample", - "displayColor": "#00d2e6", - "displayName": "Sample", - "id": "UUID" - }, - { - "description": "Sample", - "displayColor": "#00d2e6", - "displayName": "Sample", - "id": "UUID" - }, - { - "description": "Sample", - "displayColor": "#00d2e6", - "displayName": "Sample", - "id": "UUID" - } - ], - "metadata": { - "author": "Vasudha Nair ", - "description": "Barcoding protocol using the Flex with Parse Biosciences Version 3 WT Kit", - "protocolName": "In Situ Cell Barcoding using PBMCs" - }, - "modules": [ - { - "id": "UUID", - "location": { - "slotName": "D1" - }, - "model": "temperatureModuleV2", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "C1" - }, - "model": "temperatureModuleV2", - "serialNumber": "UUID" - }, - { - "id": "UUID", - "location": { - "slotName": "B1" - }, - "model": "thermocyclerModuleV2", - "serialNumber": "UUID" - } - ], - "pipettes": [ - { - "id": "UUID", - "mount": "right", - "pipetteName": "p50_multi_flex" - }, - { - "id": "UUID", - "mount": "left", - "pipetteName": "p1000_single_flex" - } - ], - "result": "ok", - "robotType": "OT-3 Standard", - "runTimeParameters": [ - { - "default": false, - "description": "Skip pauses, incubation delays, reduce mix steps, return tips to their racks", - "displayName": "Dry Run", - "type": "bool", - "value": false, - "variableName": "dry_run" - } - ] + "error": "Analysis timed out after 120 seconds" } diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c1f9c0f021][Flex_S_v2_24_P50_P1000_HappyPath_tips_liquid].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c1f9c0f021][Flex_S_v2_24_P50_P1000_HappyPath_tips_liquid].json index 06fa1ffdee6..42702d4ce00 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c1f9c0f021][Flex_S_v2_24_P50_P1000_HappyPath_tips_liquid].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c1f9c0f021][Flex_S_v2_24_P50_P1000_HappyPath_tips_liquid].json @@ -9340,7 +9340,7 @@ ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 50.0, "location": "destination" @@ -9844,12 +9844,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6823ba88febe2aed4e909a339f51cd67", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc03ac9dd2f3f816bfc1a9be9c2fa4f7", + "key": "577e20193e47dfb7f44b3b1415082f84", "notes": [], "params": { "pipetteId": "UUID" @@ -9863,7 +9878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "550c8b134799f1423b4039a266fec919", + "key": "65679c2c3694d6844f1261109aaedd5a", "notes": [], "params": { "correctionVolume": 0.0, @@ -9882,7 +9897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ba2bf37fe6371f3707b55479883bf2f", + "key": "eb97f095f49b9e1d856180a97a67759a", "notes": [], "params": { "seconds": 0.2 @@ -9896,7 +9911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fab03947a2525ddb7e4e2b1ba24e969e", + "key": "3b83e6488ee1c565dd19c5ec580867dc", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -9925,7 +9940,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1bd7a286b798800baad61b12821ab965", + "key": "aea780cb5223d554c683c99ce1354c3f", "notes": [], "params": { "homeAfter": false, @@ -9940,7 +9955,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6329e89e5390085918263250accd72a5", + "key": "a4953ca130e87bd9f1dd196dff4fde35", "notes": [], "params": { "liquidClassRecord": { @@ -10327,7 +10342,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db8bfadbbe9d137e54ca6bd8def1f1d3", + "key": "a87990bb4f1bd93e88425fa773c6ef03", "notes": [], "params": { "labwareIds": [ @@ -10349,7 +10364,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf2447b960e288165fa1f0e4bc79e7f6", + "key": "2b578a66293ff84d6961f754e9e209f6", "notes": [], "params": { "labwareId": "UUID", @@ -10382,7 +10397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98a01550aff3cfb0f05a4fa2cceaad86", + "key": "4bcebadd4f3ec6887abcf6df376e56f1", "notes": [], "params": { "forceDirect": false, @@ -10414,7 +10429,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "778c0155e4fd938a23b4bbe4df029cdc", + "key": "9375401335745c73e0bf3ad26f2a3af8", "notes": [], "params": { "pipetteId": "UUID", @@ -10430,7 +10445,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20d884bdf4872d09769af552c763ce4e", + "key": "d2d12e5be162d2e7a09b85312d34c43f", "notes": [], "params": { "pipetteId": "UUID" @@ -10444,7 +10459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bba1e656941a03c93ae686ddb64fa52f", + "key": "8f2f457ccb6f233afb45bb6b2535e213", "notes": [], "params": { "forceDirect": false, @@ -10476,7 +10491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c58af61dd4068c5efeb2cee24020e059", + "key": "bca5432a78a70056a1c1df524e08f842", "notes": [], "params": { "forceDirect": true, @@ -10509,7 +10524,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7249b4e0e35d9c24edff681846fafcb", + "key": "60b3264beb9f1fa6cc4f0efa9fed5a12", "notes": [], "params": { "correctionVolume": -0.4925, @@ -10528,7 +10543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1621be094392792d838e184c3d3fdae", + "key": "86f330ca6862a2ba3ad0c88b249fd048", "notes": [], "params": { "seconds": 0.2 @@ -10542,7 +10557,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7366ad00d6bf7a1b3b767235a8f893c0", + "key": "db8ed99cb44fc1c9d2a795d01c0a0be9", "notes": [], "params": { "forceDirect": true, @@ -10575,7 +10590,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e53d90b72e7a4b4e09fdcdea65424eb", + "key": "ba32f6c17869621e69ae5147a4f6b42d", "notes": [], "params": { "seconds": 0.5 @@ -10589,7 +10604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50a2c63b6829bc24dd4e7582a7be42f9", + "key": "e01bcc9dd919aedcc0eb43b8f1f6c448", "notes": [], "params": { "correctionVolume": -0.5, @@ -10608,7 +10623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8918be4767d361b5f2626f3ed807242", + "key": "07566066d748be621f3416149c5191fe", "notes": [], "params": { "seconds": 0.2 @@ -10622,7 +10637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6daa871c7aa0f7b593d84ac5f2026c7", + "key": "e9dc18a58f3925eb083af20d816329ae", "notes": [], "params": { "forceDirect": false, @@ -10654,7 +10669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5ca40736236ad491309213dee4537c6", + "key": "303f227c322f20e6cd8f5590cb3fcdb4", "notes": [], "params": { "correctionVolume": -0.4925, @@ -10674,7 +10689,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83718eb5c5c78f1592e6fe8dc75e0690", + "key": "05783b224cfb476c2b05282fd817fed2", "notes": [], "params": { "seconds": 0.2 @@ -10688,7 +10703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b12c0cb774bcd88cc1fc3c63462509c", + "key": "319c8740a4727ac96987bc486a64cb78", "notes": [], "params": { "forceDirect": true, @@ -10721,7 +10736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46f14cc3102aaeb39ad223e2a7b0be47", + "key": "4c02906c8518188971db6d9746274add", "notes": [], "params": { "correctionVolume": 0.0, @@ -10741,7 +10756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98f21c161812644c12af19b9ff2be852", + "key": "a5f67ba2b6b27fb1f5393d63526430da", "notes": [], "params": { "seconds": 0.2 @@ -10755,7 +10770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f8003976d3d1dd6dcaf5630d2eda409", + "key": "8a3c5fbffb4b91d9c26c94706ca450c2", "notes": [], "params": { "forceDirect": true, @@ -10788,7 +10803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "890e7f235c68a759050497bcc77b9239", + "key": "db8f1be13fb2b29ff9ec5dc527feb9ca", "notes": [], "params": { "seconds": 0.5 @@ -10802,7 +10817,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "420087a3b60be1d16bd8c3b93a658e83", + "key": "c046b6023aa59cf7c1e7826c4277dfcd", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -10821,7 +10836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "778ebfcefdaa26f97e9173ccf234873d", + "key": "e578d5e66d0f373356171d60a7e36cd8", "notes": [], "params": { "seconds": 0.2 @@ -10835,7 +10850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "015b2db15ef59b1c5a1df9b51af9dd29", + "key": "d657ac393f09c2f581031bca9d6419ce", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -10864,7 +10879,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b113de49d61072afbd511a4c7dc1c1d2", + "key": "ba775e8ce66cb4c2573d1bc4131a9326", "notes": [], "params": { "homeAfter": false, @@ -10879,7 +10894,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f1ddb33e72c6e14becd622d284a4d691", + "key": "0716955f20718bd715a1e326d0b85e81", "notes": [], "params": { "liquidClassRecord": { @@ -11254,7 +11269,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef907b21215d32b4b5e9d426e9c54616", + "key": "2afe2a8f29f6b6143ccc50731b416632", "notes": [], "params": { "labwareIds": [ @@ -11276,7 +11291,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f65bbeeb2f4ef494ca84b745e43f90f", + "key": "093bc0b0041c63694462124ff7ca939d", "notes": [], "params": { "labwareId": "UUID", @@ -11309,7 +11324,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d13eecf07c492bdc7f4e3d8dd9d24cb", + "key": "cb3db5f1d10700e4942183f847117dba", "notes": [], "params": { "forceDirect": false, @@ -11341,7 +11356,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbdc20375bf2ebb4fd5966bb166ed131", + "key": "5273f955812b42bcb77c94d853b2a1db", "notes": [], "params": { "pipetteId": "UUID", @@ -11357,7 +11372,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80c70ee703541de3a5a12262c42c6ab8", + "key": "c139c05895912dbe86738cba0be45728", "notes": [], "params": { "pipetteId": "UUID" @@ -11371,7 +11386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a546ba125d5074ab86a1e568e005b50b", + "key": "0f0c35f8f1d1caed5810eaeea3289984", "notes": [], "params": { "forceDirect": false, @@ -11403,7 +11418,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c11da6047208280283d0d10890a6467d", + "key": "5b704cd5dcde42aab12e2a8f9aae1dfe", "notes": [], "params": { "forceDirect": true, @@ -11436,7 +11451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04aaa66d13ce494b13e1e72748e55741", + "key": "e9487acdc3025e5fbdcad3e3cb32e69f", "notes": [], "params": { "correctionVolume": -0.19250000000000003, @@ -11455,7 +11470,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdd705649a838189ec49f7212e71bc78", + "key": "0d575334e185876aa69e1d9ac83862d8", "notes": [], "params": { "seconds": 1.0 @@ -11469,7 +11484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90623baa11936bef724161e6c13062a9", + "key": "f56de9ed195fda104d7556434015e73c", "notes": [], "params": { "forceDirect": true, @@ -11502,7 +11517,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7679da7dfd6296fb72405b6e426f2120", + "key": "5b7434a4d9580803c3694dbb09cfdc17", "notes": [], "params": { "forceDirect": false, @@ -11534,7 +11549,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64a23378b421737405e68d344c7a009c", + "key": "2beb4fedaa0cf9191c2f0a540032cb5a", "notes": [], "params": { "forceDirect": true, @@ -11567,7 +11582,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74ff5ea3acd4745bba757bf9a1157aec", + "key": "49ff22c8faa1c1f61706645a9243bfb5", "notes": [], "params": { "correctionVolume": 0.0, @@ -11587,7 +11602,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b6f9938143cff3cb1132f639e0fab84", + "key": "dff1bff94ae3483a671816210cc3de1e", "notes": [], "params": { "seconds": 0.5 @@ -11601,7 +11616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29b96b9a2df96951c9548323ef4a7a80", + "key": "46f5ae39ae9a6d37dd3fd72e29d855c5", "notes": [], "params": { "forceDirect": true, @@ -11634,7 +11649,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f0bf818e6961680c5e9d6e8ba97bb7c7", + "key": "dc4ff91cc9b39da88aa3185f33477ac7", "notes": [], "params": { "pipetteId": "UUID" @@ -11648,7 +11663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb8c5147d140567841074353ef72977a", + "key": "3d41538d001eb04d44f4d95de9c5bfeb", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -11677,7 +11692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50befa0e255892ba099618b34d21ccfc", + "key": "937636c976d6fc2b7267bc462b4928cc", "notes": [], "params": { "homeAfter": false, @@ -11692,7 +11707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8fe4d7fa9a6b310a3c9d45c4feb1639f", + "key": "989e25b4f906d274b464d15d774a8edf", "notes": [], "params": { "liquidClassRecord": { @@ -11714,7 +11729,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -11746,11 +11761,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -11785,7 +11800,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -11935,7 +11950,7 @@ "delay": { "enable": false, "params": { - "duration": 0.0 + "duration": 0.5 } }, "dispensePosition": { @@ -11970,7 +11985,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -11980,18 +11995,18 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { - "flowRate": 478.0, + "flowRate": 318.0, "location": "destination" } }, @@ -12026,7 +12041,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -12051,7 +12066,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71417e86df952078a197d2e001b999f3", + "key": "4fef25fddcadaa67d3fd5e44ca4ff732", "notes": [], "params": { "labwareIds": [ @@ -12073,7 +12088,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34e3ece27ef0390e82e1162f2a280923", + "key": "7d0ac79ee058fffa62fc86db40a86f67", "notes": [], "params": { "labwareId": "UUID", @@ -12106,7 +12121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9316511aaa139ed3058180cbe74ba36", + "key": "f38042d42f88743d7a43f6012aaff6e1", "notes": [], "params": { "forceDirect": false, @@ -12138,7 +12153,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "efa33110e11555e49d861a66471f74e0", + "key": "e54d0dddd98871191e5be8b95f45a6d8", "notes": [], "params": { "pipetteId": "UUID", @@ -12154,7 +12169,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49e1d1356542eaf13f804db1f6af8187", + "key": "9ee0edcde0af26d5c393d1b3b975c373", "notes": [], "params": { "pipetteId": "UUID" @@ -12168,7 +12183,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "201edc9de139e47f58da1484d3dd664b", + "key": "ddb11688a629ec0c64d6ff0ce9f66a12", "notes": [], "params": { "forceDirect": false, @@ -12200,13 +12215,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f898f5081cbed69c74627fae265f99a", + "key": "dfc9ae3675dc2d22f383e2cde53c0d47", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -12233,7 +12248,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "566579b7a57d97372e419b8a0da228b6", + "key": "6f83b97dd369b8f305f358a3d274879a", "notes": [], "params": { "correctionVolume": 0.0, @@ -12252,10 +12267,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc6448262a71b90ad762abecff92924e", + "key": "6f9b22a5aed968512bfcedfd575d9c59", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -12266,7 +12281,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c073de5a96d3c25b66a7b668d123d3ad", + "key": "f829efddbafb791204ad4c4f878eb260", "notes": [], "params": { "forceDirect": true, @@ -12299,16 +12314,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14b3af82b7f41a986ee98002849f7486", + "key": "5c56f0b1110368ebf0e1fc434626c785", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -12318,10 +12333,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46a860fb41ce938996423dca6aa273e2", + "key": "84b60f6e1a01f8834530ae41cd2da8b5", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -12332,7 +12347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0fed9ccabb7892967ef81dbcb10b4012", + "key": "27e05a6bb3c1139174425fceafafc387", "notes": [], "params": { "forceDirect": false, @@ -12364,17 +12379,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84174e7e2ef3078a4fb4fdccdbedc7b4", + "key": "e45f244b4b6272f6b02b3f3c4160a9e7", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -12384,13 +12399,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f2e16e76e8ff1d03dc6cc7ffbb934a6", + "key": "402e45226580eabb5beb48fe3d43f03e", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -12417,13 +12432,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2d3226b9115fd4b01fcbf4cb2b1d487", + "key": "8aa8a47788964d29446ea730fd8db5a7", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 49.0 }, "result": { @@ -12437,7 +12452,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf023b12317bcf1cd608cab72d207c4e", + "key": "8aa48057332a625febeefe6f1151bb52", "notes": [], "params": { "forceDirect": true, @@ -12465,12 +12480,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4de9231a8600bee36efe5b30be2ca191", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb9879c3476948ef20603bc1b52c6ba1", + "key": "827b42e08be7f38e27f60a593013feee", "notes": [], "params": { "pipetteId": "UUID" @@ -12484,16 +12514,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0663bdd1f8b11e71fb36ef259cc5dd48", + "key": "99f1097110a7514d43a5ef4d063b49ae", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -12503,10 +12533,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf96f992fd24442f37a717439b68f6ca", + "key": "45e4ca7535944af4a3675b4fa5ae7946", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -12517,7 +12547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "750a0717bae94c01acef2008c75f9571", + "key": "00f3b5bc308c4c9889f7e529133fba08", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -12546,7 +12576,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8505c2a4dbb61b4613c225a4f41ab2b8", + "key": "aaedf5645c3f8a139c905f4793fb20fe", "notes": [], "params": { "homeAfter": false, @@ -12561,7 +12591,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f315277b1f471598afdf8e1ef111dee0", + "key": "2eb99e3195618ed576f93e9874494e12", "notes": [], "params": { "liquidClassRecord": { @@ -12960,7 +12990,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0eae63fed42aab34d0846937833dc37", + "key": "45924d4102bfb2421d6b4e04395dc43a", "notes": [], "params": { "labwareIds": [ @@ -12982,7 +13012,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f54adbba5acb58c1272518a1fe6e3f4", + "key": "c499f335a058e376c2495380b261d62c", "notes": [], "params": { "labwareId": "UUID", @@ -13015,7 +13045,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20fb23347de03e44ace95c9726771b3d", + "key": "22d8395f5a0ca178b0b35b953acd8f47", "notes": [], "params": { "forceDirect": false, @@ -13047,7 +13077,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e93e1cba26c175b47691c6391b669e07", + "key": "b67ff1b655767bcf56988cf764e2c932", "notes": [], "params": { "pipetteId": "UUID", @@ -13063,7 +13093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71e11ab531470a94ecdd466cf454d272", + "key": "e027fa10cd4d090ee949d7179cbb73fb", "notes": [], "params": { "pipetteId": "UUID" @@ -13077,7 +13107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca02dbec875992f94dd7a0ea22dfcce7", + "key": "c1a0935a5f3d3dff96b3b6845e76061c", "notes": [], "params": { "forceDirect": false, @@ -13109,7 +13139,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc7fcc696e30858276b9449a4a831168", + "key": "95b7f01e0a695bc3b249584af0bcfe67", "notes": [], "params": { "forceDirect": true, @@ -13142,7 +13172,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "347a6bf03aeaad695ff22d29717ab354", + "key": "15887c399f107c71d5ae3bb43fb71619", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -13161,7 +13191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c3d576d3b1eafea9b6789b77b4ddfc2", + "key": "929d94a3b557d29fd542393e4e1a8c41", "notes": [], "params": { "seconds": 0.2 @@ -13175,7 +13205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "560d45f7798a317fcec67ce7514d6262", + "key": "e643bdb098342c0805e75321035f9844", "notes": [], "params": { "forceDirect": true, @@ -13208,7 +13238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69fce79e67908f98c4c2c7546a0860db", + "key": "3efbc2644e6897b05a021743247c5b6b", "notes": [], "params": { "seconds": 0.5 @@ -13222,7 +13252,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23fa45b25dbab30f8c1431fe47a875ca", + "key": "6ed7b4a272988bacbb4ad6399fcb48c4", "notes": [], "params": { "correctionVolume": -1.3, @@ -13241,7 +13271,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "924dcd5bfc12f97bdf10b52717333624", + "key": "28a28b03590630c846720779f150d151", "notes": [], "params": { "seconds": 0.2 @@ -13255,7 +13285,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f15e6de14b1ab207c20ff36b42f54ec6", + "key": "13ceb3f4eea836ff72be4438e60d6cc4", "notes": [], "params": { "forceDirect": false, @@ -13287,7 +13317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9af8d6287a43831e168dbddd6ba51250", + "key": "af33aaec6cf97dc1cf6eea0f6575cb21", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -13307,7 +13337,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8535c4384b551e697bedf8744a816386", + "key": "0d53291b80dc46a570f7b816fa756c20", "notes": [], "params": { "seconds": 2.0 @@ -13321,7 +13351,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "045cd07ded78435c8c8734e636cdc5ed", + "key": "a5265e9b6dbf569610d122a087afcaa4", "notes": [], "params": { "forceDirect": true, @@ -13354,7 +13384,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "532771657a4928733665f98c20a2535f", + "key": "2d66269b1ea3ceaac03a95919f552e0f", "notes": [], "params": { "correctionVolume": 0.0, @@ -13374,7 +13404,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9e73753db254ff5109269b03a0c210b", + "key": "a5c74d86acdd944acf588c80af1916e5", "notes": [], "params": { "seconds": 2.0 @@ -13388,7 +13418,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e9590e961247e3bf5f20046e34414fd", + "key": "33e61faf6d9ac8a26480991666e6ab1f", "notes": [], "params": { "forceDirect": true, @@ -13421,7 +13451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81269d4b3d04d543a25a00ec2edab140", + "key": "0ea5670624e6215395419b54f990f99e", "notes": [], "params": { "seconds": 0.5 @@ -13435,7 +13465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97cad363c15b39d3a3a9538bf8ab88c1", + "key": "249b85be0c25ba719106d94bcd388efc", "notes": [], "params": { "correctionVolume": -0.75, @@ -13454,7 +13484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "950f497cfdc1aaccea783fe40900cf92", + "key": "a02f69cff7c3ab2a99b1efec720f5975", "notes": [], "params": { "seconds": 0.2 @@ -13468,7 +13498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7009db8cf981ebec01a9bbe05621951b", + "key": "c5c0af2a987a12dd862e53c4619f02f2", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -13497,7 +13527,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d17ad0cd354d0b12940dca4334b37dd", + "key": "e8d08c13cbe2928c0a0babe750ca16ab", "notes": [], "params": { "homeAfter": false, @@ -13512,7 +13542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "645a84d128b00dae8696d42a417e9161", + "key": "1fd7b31c3012cbc86cb603a3b2414f22", "notes": [], "params": { "liquidClassRecord": { @@ -13883,7 +13913,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "043b1989db136eef51f87c710d0d766b", + "key": "71b4a2865edb09a570dacb31d1e7bef1", "notes": [], "params": { "labwareIds": [ @@ -13905,7 +13935,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96e424dab3113bebffc200d2fe5103c4", + "key": "a60dd1a6197ef883b80f386305731410", "notes": [], "params": { "labwareId": "UUID", @@ -13938,7 +13968,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b59bc09263b0f4a3d88d10941927b514", + "key": "e586c0150627e225ad7a32cd8e32da7f", "notes": [], "params": { "forceDirect": false, @@ -13970,7 +14000,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24e8db27ba395b1539e92822bed5d3be", + "key": "97725d4106f2ce247a607430d253f3bc", "notes": [], "params": { "pipetteId": "UUID", @@ -13986,7 +14016,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "756d7c94dab3f2ca9b530b5d5bf66e1c", + "key": "13aab96505a14fbeb517b5b96f65da2e", "notes": [], "params": { "pipetteId": "UUID" @@ -14000,7 +14030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "038360309a5e272c2f39fccae763cae1", + "key": "0bd60af809c196ea40962db90c7e29a1", "notes": [], "params": { "forceDirect": false, @@ -14032,7 +14062,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c16f4afdc1216919e2c185391e2dde2", + "key": "b8232a7d49308535de6d88ee962cc75f", "notes": [], "params": { "forceDirect": true, @@ -14065,7 +14095,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb522c939f61a3c19d9ce071a56ae685", + "key": "3e53e2b092af4c3da107c206da9982c1", "notes": [], "params": { "correctionVolume": 0.1975, @@ -14084,7 +14114,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e16179a5b23d3dc82e89bf970d14d58", + "key": "69fa83b1893716850a53bc1d5c1ea031", "notes": [], "params": { "seconds": 2.0 @@ -14098,7 +14128,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4fcd0d69ec89d213fa0b5d93954e60e", + "key": "0595845c9d32f75486e004695fb6304f", "notes": [], "params": { "forceDirect": true, @@ -14131,7 +14161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "092bdc94aa3e54f5df15ab9ea0e11c10", + "key": "b140a0387b60e4a67216a86aa615dafb", "notes": [], "params": { "forceDirect": false, @@ -14163,7 +14193,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f1c25c520f44a8f3dba5a7b29306a028", + "key": "b6748c4b1eb9a7cf13078cb0d6a99051", "notes": [], "params": { "forceDirect": true, @@ -14196,7 +14226,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f521f21c5fd783da1edcd76866d53ed", + "key": "ab04c6f29c26727708060961619e1d48", "notes": [], "params": { "correctionVolume": 0.0, @@ -14216,7 +14246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43439b90adf5bc573b716f4b194a03a2", + "key": "4d99036909039fffe27fbb6d821805fa", "notes": [], "params": { "seconds": 1.0 @@ -14230,7 +14260,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c7337ff4aef25a38667cf3d2392c03a", + "key": "c5611f9321fd5811394772d8c6ec9655", "notes": [], "params": { "forceDirect": true, @@ -14263,7 +14293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54cb36972f0eae51cac8bff9ff16aed6", + "key": "87d2f21dbb5f91baebbff122c69072ed", "notes": [], "params": { "pipetteId": "UUID" @@ -14277,7 +14307,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "100886e4fc89be910faca7eb88748d77", + "key": "170e4aa87c5600c344af43de9bd97e40", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -14306,7 +14336,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e26ff41cebacc401a5e01c6f6600ec6b", + "key": "5ffc7e0148f2021efa998a66598f8208", "notes": [], "params": { "homeAfter": false, @@ -14321,7 +14351,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ba592c9ec38bb5a897476323286efc0", + "key": "1c8e1480a27b09ef9303fff59717d767", "notes": [], "params": { "liquidClassRecord": { @@ -14618,7 +14648,7 @@ ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 50.0, "location": "destination" @@ -14680,7 +14710,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83532add73739301bd6268a8b9a7acbf", + "key": "d3fec08be71599580e6aff9008f618ba", "notes": [], "params": { "labwareIds": [ @@ -14702,7 +14732,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98ba8f8b89adbc3101921362da98a613", + "key": "2895f63903c82869d37cacf426d2dd0e", "notes": [], "params": { "labwareId": "UUID", @@ -14735,7 +14765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a5f84369f95b98721082d43ad8bff1f", + "key": "b5640b342fce1036498ea1de5e617a43", "notes": [], "params": { "forceDirect": false, @@ -14767,7 +14797,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d7047cb14249b0114d4ef1494bd28f6", + "key": "9c961e0f8ef76ec7ef073bdd1aeb61ed", "notes": [], "params": { "pipetteId": "UUID", @@ -14783,7 +14813,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2cee408984fb5188f3668c716c7e21c6", + "key": "c2984360675c66896324f38ab50fcf9f", "notes": [], "params": { "pipetteId": "UUID" @@ -14797,7 +14827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a196383b52dd7ba4b57730615703547", + "key": "1ac6743235a8c21261539f40fb656364", "notes": [], "params": { "forceDirect": false, @@ -14829,7 +14859,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2f4afc3af427632a902e7202dfadcbb", + "key": "2505ddeacd859fcaca6e10a61e6e61ba", "notes": [], "params": { "forceDirect": true, @@ -14862,7 +14892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20946d6f205a978081536e7189d43b73", + "key": "1ad213f108d4852404956cea60adf71c", "notes": [], "params": { "correctionVolume": 0.0, @@ -14881,7 +14911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8db50c3cf19db9939f224b8fc616913f", + "key": "3476c85bd94fbbd49354fef545b1ad25", "notes": [], "params": { "seconds": 0.2 @@ -14895,7 +14925,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b01c9a1ccce2ed5ebfdd74e4caac48de", + "key": "98b65e09c96a42f208f2138f8566d77c", "notes": [], "params": { "forceDirect": true, @@ -14928,7 +14958,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb1aaa91ea8d215c2f4c08d033d8f1ee", + "key": "d03c8a7052c08179a82b00a1fb11cae6", "notes": [], "params": { "correctionVolume": 0.0, @@ -14947,7 +14977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d6b126bc5ce074e251680b26d12fcb0", + "key": "748d1c29149a901991d9e941c8923f7a", "notes": [], "params": { "seconds": 0.2 @@ -14961,7 +14991,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "050a0e16232f2452b2e41779b25df606", + "key": "dca3ce03b9e49e1d7d86c6238eba5c1e", "notes": [], "params": { "forceDirect": false, @@ -14993,7 +15023,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9a49948c5494d10a09f2b4750aecac5", + "key": "4060f24dac5c2ce6f380547c3a0a401e", "notes": [], "params": { "correctionVolume": 0.0, @@ -15013,7 +15043,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e85f178e441268bb0f02dfb017e6584d", + "key": "4d011dcd652c1631c9e4d2bf3b705b9c", "notes": [], "params": { "seconds": 0.2 @@ -15027,7 +15057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "393388c86291a60cad1a885dcc257e55", + "key": "b7bc76f1d712f9caa3d9074d21baef6a", "notes": [], "params": { "forceDirect": true, @@ -15060,7 +15090,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7399d7599c22dc4b1a86edb51da5312d", + "key": "3d305082bc251ecdda286fb9343dfc1c", "notes": [], "params": { "correctionVolume": 0.0, @@ -15080,7 +15110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3792a96e4cd0be36920b9658ba62d7bc", + "key": "db2f4f1e6cc9abe989a88fc6db6485db", "notes": [], "params": { "seconds": 0.2 @@ -15094,7 +15124,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4faa6acc96591beab2f706f8e4d66f61", + "key": "2a04a558d3b310112e8eb29e2e51fb9c", "notes": [], "params": { "forceDirect": true, @@ -15122,12 +15152,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "203f4e750ce1361bacf1e8aefc692894", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c6d8029026859aa33723ed3fcef4aee7", + "key": "b9cda508d1ae3deb662f8573090ffb28", "notes": [], "params": { "pipetteId": "UUID" @@ -15141,7 +15186,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8975f9fac56ee979d78a6ffb4d9f0c69", + "key": "34238c3c9a9b21af0d96c8a79ddf31e2", "notes": [], "params": { "correctionVolume": 0.0, @@ -15160,7 +15205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11aec6cbcf02e0b970b5798c90ca93e3", + "key": "0765129fe5bda48755a0382b2d9d31b3", "notes": [], "params": { "seconds": 0.2 @@ -15174,7 +15219,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a8dd825e3cef7dff39770c89691edaf", + "key": "3c9fd6cc5efb67e6f06baa19a8af0e78", "notes": [], "params": { "forceDirect": false, @@ -15206,7 +15251,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da85c04b7d22f21bd3facef2ac87f27a", + "key": "78f679d591f4ab579f1a9d174ff458c2", "notes": [], "params": { "correctionVolume": 0.0, @@ -15226,7 +15271,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc991bf6e5e6ac06f2355b11a8a11bbd", + "key": "3657eb52a5e7cff77d2184a62e5341f2", "notes": [], "params": { "seconds": 0.2 @@ -15240,7 +15285,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dfe09a9e3cd237d3b838de754731d1d7", + "key": "04740de0da44d3c6a3715417e13e957f", "notes": [], "params": { "pipetteId": "UUID", @@ -15256,7 +15301,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cda4b409b67bbcd9a16fc367077f5b7", + "key": "a325e4133a2a045edbbb918761fb9371", "notes": [], "params": { "pipetteId": "UUID" @@ -15270,7 +15315,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "598953d662afd11e674f95820b802b5b", + "key": "73900b390979445d5b4e5770518ea2cd", "notes": [], "params": { "forceDirect": false, @@ -15302,7 +15347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb8133f0c16db7925fb8f6d36369c6f3", + "key": "4049f9a4fc5018dfcd849c0aaff64c75", "notes": [], "params": { "forceDirect": true, @@ -15335,7 +15380,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f67244f66f8286715f0ecf8fae1bae2b", + "key": "c81e3e1f50800efeb662522bc77427db", "notes": [], "params": { "correctionVolume": 0.0, @@ -15354,7 +15399,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f19349110520885eb6f2b84299ecab1e", + "key": "7301090dc5384bbaf48b88bbc5c5838d", "notes": [], "params": { "seconds": 0.2 @@ -15368,7 +15413,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e7938a501c1e3496a5d2933f922535f8", + "key": "a0a3691d7dd63cae999ddd0e2dc027cd", "notes": [], "params": { "forceDirect": true, @@ -15401,7 +15446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6be9537e82c4e37a5517c8b851a2fbdf", + "key": "345785fbd8c4e4adaf2bc6d8dd93e006", "notes": [], "params": { "correctionVolume": 0.0, @@ -15420,7 +15465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4bdebad6ce9f52e984df9717e0a4a21", + "key": "ea3fde697e4c6bed374097b0a9056d54", "notes": [], "params": { "seconds": 0.2 @@ -15434,7 +15479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7eb6a84b18b8901b7437b15cb2139a86", + "key": "aa35ad273ccb224ad763e93996cd5b83", "notes": [], "params": { "forceDirect": false, @@ -15466,7 +15511,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22f27eedc612b6ec8e1e012029d8bd2c", + "key": "d9ecf369c9d17465cf9b2e14e5ddd0f0", "notes": [], "params": { "correctionVolume": 0.0, @@ -15486,7 +15531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab97ec6af7666294f8d9af76c7845ba7", + "key": "673cca7f287677d392f187b7cbeb92d3", "notes": [], "params": { "seconds": 0.2 @@ -15500,7 +15545,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0ac967ec318e8e9fa52dd99d662db44", + "key": "f577aa1301303085080c323724000071", "notes": [], "params": { "forceDirect": true, @@ -15533,7 +15578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e564022943b15b5f93e8351ba0123242", + "key": "c6901545e97ea26a490daccb02de6bbb", "notes": [], "params": { "correctionVolume": 0.0, @@ -15553,7 +15598,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a6280ea7a2167b52764225befcc84e8", + "key": "035b7326700b229cf721af6d7e4f6f99", "notes": [], "params": { "seconds": 0.2 @@ -15567,7 +15612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7624e357f768ae3ea1b59e8caddb0248", + "key": "f608d34aac408c097ac999372a7b372b", "notes": [], "params": { "forceDirect": true, @@ -15595,12 +15640,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb9b69bd9dfbf866a25cda67283f4779", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "39ce03d4cf383fe7dc0d786d868fb86a", + "key": "c20fcb8fef2cc5be3d9855bebfc385d5", "notes": [], "params": { "pipetteId": "UUID" @@ -15614,7 +15674,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b48d6d1f98c9f30946335b3ada4b4d5b", + "key": "aaeeaf8ae52ad7fe92a3273099a7608f", "notes": [], "params": { "correctionVolume": 0.0, @@ -15633,7 +15693,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e338e2777e82a75ee8826f37ebd857b", + "key": "fcbb74b52a522e1e789b631ad91130b1", "notes": [], "params": { "seconds": 0.2 @@ -15647,7 +15707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff0f46c3fb6cd734fd72eac41b861b96", + "key": "e57923650e9a592977423f10d2f4d2c4", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -15676,7 +15736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5f8acd744311b87eb6691238c51fcee", + "key": "ccccd43f15fcbb56021a224a0a6cb6a1", "notes": [], "params": { "homeAfter": false, @@ -15691,7 +15751,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8da0973befa59d3623b816c6cc615d03", + "key": "1ceffb8796248f9170d3c7135b4c9621", "notes": [], "params": { "liquidClassRecord": { @@ -16078,7 +16138,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "365d5637d43ad55f75ae72028e0d4d5b", + "key": "056078c3de1f2a10d64399c592e63a4a", "notes": [], "params": { "labwareIds": [ @@ -16100,7 +16160,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63d05ef4029d4bace3e76a493912333c", + "key": "d7335671a0e38e159c96e6fcfa739122", "notes": [], "params": { "labwareId": "UUID", @@ -16133,7 +16193,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "919309498910b05ab0862db099652152", + "key": "bd00434311d3ecba2453c94afd7ebe73", "notes": [], "params": { "forceDirect": false, @@ -16165,7 +16225,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8323170325d64118648057953e8f85f6", + "key": "055b10905b74167813b54d1dccb4c1bb", "notes": [], "params": { "pipetteId": "UUID", @@ -16181,7 +16241,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c527462f163764a295027ae18cb72ea", + "key": "09d04e3df0ae38f502db973f8f293f0f", "notes": [], "params": { "pipetteId": "UUID" @@ -16195,7 +16255,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2324c9f2fc2580c134daf08e126db956", + "key": "12a63bd93613e46b4ec85a9ff2e7140d", "notes": [], "params": { "forceDirect": false, @@ -16227,7 +16287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b9303cafba209efcffd427c90cef741", + "key": "3e521b32a07113ba3cbe5a97e818ba5e", "notes": [], "params": { "forceDirect": true, @@ -16260,7 +16320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d73dad11e7093809dbb19c872e8c73a0", + "key": "397435ac7eb0d7e90a990039942611a9", "notes": [], "params": { "correctionVolume": -0.4925, @@ -16279,7 +16339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8173ab973040aac16c0e2c58264c4fd", + "key": "de7a99bde055a3f16f1694ca9e008d85", "notes": [], "params": { "seconds": 0.2 @@ -16293,7 +16353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5452f8e12c50aa30d68d41807c84cf4b", + "key": "a5fb352be688fea5d9010cc847baf9f0", "notes": [], "params": { "forceDirect": true, @@ -16326,7 +16386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6e837b2a3108b3d2ae0046620274a7c", + "key": "a55303358363e5e6792ebaa469205ef9", "notes": [], "params": { "seconds": 0.5 @@ -16340,7 +16400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21bfcc0024fe11cc488a92093aca120f", + "key": "29f71e5aa9c60e8102cef566ecd1b21c", "notes": [], "params": { "correctionVolume": -0.5, @@ -16359,7 +16419,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d511b9d616028a3c368faa4a774c4c88", + "key": "5937bf8eea4f07701497397c0ddf0b6e", "notes": [], "params": { "seconds": 0.2 @@ -16373,7 +16433,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad18b8707a58e6816cd8b63c429ad205", + "key": "3a12869a7b5cd1c8a47b636c2d8867b3", "notes": [], "params": { "forceDirect": false, @@ -16405,7 +16465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1f6e38599beb98fc688c08f1eb8a972", + "key": "22061a4f83d7d40c4b1f5fda765cf52b", "notes": [], "params": { "correctionVolume": -0.4925, @@ -16425,7 +16485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d5a1a2a085d00ca5dcaab1c3ce4df0a", + "key": "5101bd001b155bab05318202f241ebc1", "notes": [], "params": { "seconds": 0.2 @@ -16439,7 +16499,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8870e6ccead59add0ec5efdc26800331", + "key": "26b3412f49fe21e8a624b1d0571df211", "notes": [], "params": { "forceDirect": true, @@ -16472,7 +16532,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71cbf676a870ab2036216c4869db06eb", + "key": "79622855d1ef1a783d2e1b1483f8896d", "notes": [], "params": { "correctionVolume": 0.0, @@ -16492,7 +16552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89098e631cc6d0b32bb14b9a9e61f3b9", + "key": "dee320b6e40f004960499a5b0ed542b7", "notes": [], "params": { "seconds": 0.2 @@ -16506,7 +16566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01d401a9deb0d02bc09903218fda17cf", + "key": "d9e041140d546ebb84983e1366393361", "notes": [], "params": { "forceDirect": true, @@ -16539,7 +16599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0bc7e08dcad312abb083d0fd35a99c9", + "key": "a45add7e4171d8f8beed92565e7c6ac3", "notes": [], "params": { "seconds": 0.5 @@ -16553,7 +16613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "201e8d1b0972729edf2439582f55a5c0", + "key": "a15ee8e0112f6b25d0331d5ff280fbd1", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -16572,7 +16632,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f8f8d5cf40d4a9031d031136f783e40", + "key": "01aad536394cc8b0c8c1eb600966876a", "notes": [], "params": { "seconds": 0.2 @@ -16586,7 +16646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05ba119def3b807224c69777777e65a0", + "key": "8fc13bedd0d96fa7d7afaf00712bfe64", "notes": [], "params": { "forceDirect": false, @@ -16618,7 +16678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d68daa2eef91e0e06b027787c282a9a", + "key": "40238d5930164de55d1c10cc66495aa7", "notes": [], "params": { "correctionVolume": 0.0, @@ -16638,7 +16698,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f846359408d1a34266ff779118c263ce", + "key": "4590bda8d00b962b89b0d90be2cecea0", "notes": [], "params": { "seconds": 0.2 @@ -16652,7 +16712,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b758891f0f34439f0b4ae568cd68be14", + "key": "e1a2298f11ec53b9dfdc565725c72604", "notes": [], "params": { "pipetteId": "UUID", @@ -16668,7 +16728,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77dc75bd540340e344693b5b865bb327", + "key": "27d1fb8726bd6a63b144fa09a6703ecb", "notes": [], "params": { "pipetteId": "UUID" @@ -16682,7 +16742,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ae690ef5c8f481afc0858037c00a972", + "key": "2d52389dcb13d828c0eb5ce9688b479d", "notes": [], "params": { "forceDirect": false, @@ -16714,7 +16774,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22d837e580d33457f79b5cd08bb218b6", + "key": "5ad0b381698fe9a1192abc3fe65af75d", "notes": [], "params": { "forceDirect": true, @@ -16747,7 +16807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0113d76d4e104279ca6e412dcbbedffd", + "key": "8c632d997de256fbd6984e8b7f9deed4", "notes": [], "params": { "correctionVolume": -0.4925, @@ -16766,7 +16826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "439e9683b550651321999a1f97be9d41", + "key": "ab36ec4e18c24f13444fbbc57e9937e6", "notes": [], "params": { "seconds": 0.2 @@ -16780,7 +16840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da965ff4ddb946033d65c311e6c76145", + "key": "10a2e517c404f65d4e3aae542bed89a9", "notes": [], "params": { "forceDirect": true, @@ -16813,7 +16873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36fac2ad4fa6176f8017a3824583657b", + "key": "267118397c1f2aa7ca13e5f84f5e8eca", "notes": [], "params": { "seconds": 0.5 @@ -16827,7 +16887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "956de29df22c19659a125d7f2f2d3f9f", + "key": "9112691a94eb79122c3e0acfad9fb2c9", "notes": [], "params": { "correctionVolume": -0.5, @@ -16846,7 +16906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "acdc7bcbf4d700daecbe321fb22bb148", + "key": "e0a5e6220dcc6b15b3561add2fc760e6", "notes": [], "params": { "seconds": 0.2 @@ -16860,7 +16920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "308af52b19cc019af440adfb7d50f507", + "key": "2c46abeeb7b862ae5c39d1c472b2d19f", "notes": [], "params": { "forceDirect": false, @@ -16892,7 +16952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b64e3596bf6f7e125fb0da4018c6e1fc", + "key": "c69c29f65b452783d0456a0f5982c60d", "notes": [], "params": { "correctionVolume": -0.4925, @@ -16912,7 +16972,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7362adf03d892086801d87f01fdf8511", + "key": "06c7a8ed324fac41ef4eae7f24b8378c", "notes": [], "params": { "seconds": 0.2 @@ -16926,7 +16986,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c25f6b43e504bef7f2245a5ad537638c", + "key": "0407b58e2cb97db6ca0cca2abe6e46a8", "notes": [], "params": { "forceDirect": true, @@ -16959,7 +17019,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e70370ccca94ebdd76cbb3248014825", + "key": "a65ee381d8ffd8f2fa9f1769fffbd715", "notes": [], "params": { "correctionVolume": 0.0, @@ -16979,7 +17039,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97a799f42d155057bf8ee7eb3d92b738", + "key": "ebc9792c3e08b212ce6500e0bb9f9160", "notes": [], "params": { "seconds": 0.2 @@ -16993,7 +17053,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb021d8a52283cd8a4c6bb86279ea6e9", + "key": "bff4cee840fe1cd7700b23256149e4fb", "notes": [], "params": { "forceDirect": true, @@ -17026,7 +17086,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16927b95d806e713b209e14967de11c2", + "key": "9343ec6f5184dd66ecdcd7536c43b5bf", "notes": [], "params": { "seconds": 0.5 @@ -17040,7 +17100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05a2dc71edae6b842ef74a398b85b5aa", + "key": "961077b1360775a70645782fbf606910", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -17059,7 +17119,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea01fa605627ab6e2a1badbfb9c63b91", + "key": "fa8565798c30ab2c7979f8e45d636c77", "notes": [], "params": { "seconds": 0.2 @@ -17073,7 +17133,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84130167199830484f63b8645044f6e3", + "key": "87f1b97028412fcdd449c7c417eac5c4", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -17102,7 +17162,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "758e1b5945e58343d5fc71511ce2c1ec", + "key": "5277737d45e0928a657073dc358f6f18", "notes": [], "params": { "homeAfter": false, @@ -17117,7 +17177,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9eb961de3e66c8ade44d67a2c5c1ab55", + "key": "cfe53cd9ec3e2ef4ad992009708c6ee3", "notes": [], "params": { "liquidClassRecord": { @@ -17492,7 +17552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c8efa4ed86bc547ff5959cf80679cdb", + "key": "e1d7e4f2e89383b0c2ed4d581813bcb6", "notes": [], "params": { "labwareIds": [ @@ -17514,7 +17574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "534094dbc42b93bce937f0ef3872abc7", + "key": "d5b61eb1694685b4568f80b298788c85", "notes": [], "params": { "labwareId": "UUID", @@ -17547,7 +17607,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c400d4e32c9e090eed540be12aec889a", + "key": "782b612895aee79f484b6631efa07f86", "notes": [], "params": { "forceDirect": false, @@ -17579,7 +17639,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c285e2f49bde044024fa5715eaa5b1e0", + "key": "d4ade08a4a5517e699be2fed46d31048", "notes": [], "params": { "pipetteId": "UUID", @@ -17595,7 +17655,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9ce7eef39b77dbdc3d24083df52d2d4", + "key": "5b786ad663f1384f757e88333cc09211", "notes": [], "params": { "pipetteId": "UUID" @@ -17609,7 +17669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b915ccae727134e96b1b2b16c3acd89f", + "key": "bfaa19ea77ad9949235270a39f390ec3", "notes": [], "params": { "forceDirect": false, @@ -17641,7 +17701,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a13dc0795f1dc5fb8fccebf8fcb2f39c", + "key": "5889c08a0ce872035d64495eeb2e458e", "notes": [], "params": { "forceDirect": true, @@ -17674,7 +17734,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63287d0dff3901dd37d34c80db375b2b", + "key": "8a616c234267cb4ccf1963fd67fb80f1", "notes": [], "params": { "correctionVolume": -0.19250000000000003, @@ -17693,7 +17753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f25ad0e42e651db2f8f3e07240a1f3d", + "key": "4bf6e3b02fb7d5d4598045e7686f5449", "notes": [], "params": { "seconds": 1.0 @@ -17707,7 +17767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc5bb168d9a9682a6874c079c5959338", + "key": "24371b110e31f272660f04ae6980ffe7", "notes": [], "params": { "forceDirect": true, @@ -17740,7 +17800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69ec6c2c12d20375b99e71809b9e651a", + "key": "9c051fe4bb8b80eb7fd567845aa9a8b3", "notes": [], "params": { "forceDirect": false, @@ -17772,7 +17832,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "325b7526395113a746a9e4210689ba56", + "key": "973e28bb97b8c1fc20e0358fa319fbe7", "notes": [], "params": { "forceDirect": true, @@ -17805,7 +17865,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4cb41a26de1ad34eab62bafcabee9a4f", + "key": "8d4b7915ec5766e6e84f6465d26b1617", "notes": [], "params": { "correctionVolume": 0.0, @@ -17825,7 +17885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffe1f0468ea16fd0b962049d47ac9a34", + "key": "edf074667b8d13a1d388c4fc0cbdec12", "notes": [], "params": { "seconds": 0.5 @@ -17839,7 +17899,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23ee40f108823ffd47e3b409edd9b612", + "key": "4d6599231cb7cb75f9c7885f3391a571", "notes": [], "params": { "forceDirect": true, @@ -17872,7 +17932,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c48160a6521d868c1682dba5da7c257", + "key": "293a5cb88b640e7af23af43bc02dffab", "notes": [], "params": { "pipetteId": "UUID" @@ -17886,7 +17946,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ba1d0a4fac6b7a929abd209c093d9ed", + "key": "d2a909b26ede25fde402e7963a8a6acb", "notes": [], "params": { "forceDirect": false, @@ -17918,7 +17978,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8dd3316ecdf543186a60e9826191f1c8", + "key": "efe613a0255bf6ca33fab7f23b389735", "notes": [], "params": { "pipetteId": "UUID", @@ -17934,7 +17994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "caa0d68dba565272e318c90c701395af", + "key": "40f8e67b8dc917ba47cd8f084fb8c0d3", "notes": [], "params": { "pipetteId": "UUID" @@ -17948,7 +18008,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc692ca123b7b921f310bd9acf35739b", + "key": "212d381f94ee723c809f6dda0ed70de0", "notes": [], "params": { "forceDirect": false, @@ -17980,7 +18040,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19d8e9fdd515f69d28814dbd131c14b4", + "key": "ddcce63d8e67fedc0abb9bbe248a518f", "notes": [], "params": { "forceDirect": true, @@ -18013,7 +18073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa7cc543c5b80792c29b4338e81dad43", + "key": "953248d0490b63b28b1b71a60c191fbe", "notes": [], "params": { "correctionVolume": -0.19250000000000003, @@ -18032,7 +18092,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e2d6b327bc82b5205220080bff8db458", + "key": "6e1dfc6282443bb0b483057fae2e693c", "notes": [], "params": { "seconds": 1.0 @@ -18046,7 +18106,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6215fbe51c09867cb89ffe6e813dbda", + "key": "c7cbc7a1e41038b7e57e935a04ad2691", "notes": [], "params": { "forceDirect": true, @@ -18079,7 +18139,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "310568a5f1a07b3e55d44af5c9ead865", + "key": "3e63cd868b5963ad3f56f3ce1e70dbe7", "notes": [], "params": { "forceDirect": false, @@ -18111,7 +18171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "acf40eaf1e3c6a7747d82314ba2447f1", + "key": "53907785e733debeeea3d81140be6a0e", "notes": [], "params": { "forceDirect": true, @@ -18144,7 +18204,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ebadb21c761658df470df845f8b77f2", + "key": "d363a7689873658445f8a1803a03f64a", "notes": [], "params": { "correctionVolume": 0.0, @@ -18164,7 +18224,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98fa6b092759f975b2c4432b8bd3a129", + "key": "7bb8481eed2776bf272147c5c6093561", "notes": [], "params": { "seconds": 0.5 @@ -18178,7 +18238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a50fd40cc4c1f12c2f39cc934708aef9", + "key": "04933375bbf876bb75ae89b600ede0f3", "notes": [], "params": { "forceDirect": true, @@ -18211,7 +18271,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d155bfc0ff120cdc953537c58b152b5", + "key": "9cf9792b6b2ec58572fc317fc6e97a6b", "notes": [], "params": { "pipetteId": "UUID" @@ -18225,7 +18285,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1916057991f03ec9b4577f55ab6ef924", + "key": "fa404b1d2057fe05892672a44caf7d99", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -18254,7 +18314,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6dda4d6b3eb4ec7387b75168d9b6cd68", + "key": "b099e4b4cec8e6724d73695c25945c35", "notes": [], "params": { "homeAfter": false, @@ -18269,7 +18329,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04d84957584962c0c891d1d8ae9e6b41", + "key": "9aadb6d3665e6e6f52ec1dac014c419b", "notes": [], "params": { "liquidClassRecord": { @@ -18291,7 +18351,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -18323,11 +18383,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -18362,7 +18422,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -18512,7 +18572,7 @@ "delay": { "enable": false, "params": { - "duration": 0.0 + "duration": 0.5 } }, "dispensePosition": { @@ -18547,7 +18607,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -18557,18 +18617,18 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { - "flowRate": 478.0, + "flowRate": 318.0, "location": "destination" } }, @@ -18603,7 +18663,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -18628,7 +18688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81c36098889b148b7ba0a6ed2a8a3d64", + "key": "716cedab6ac74b98cb40a242cbae0f2f", "notes": [], "params": { "labwareIds": [ @@ -18650,7 +18710,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3553f9bb181cfcf8db3f824e23da20f8", + "key": "9c3ec4817afc4597fe09f04ddc924107", "notes": [], "params": { "labwareId": "UUID", @@ -18683,7 +18743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "931bd73cf728e50261e602daaacb22a0", + "key": "11535f6feb8eeb42913f7c714f93582c", "notes": [], "params": { "forceDirect": false, @@ -18715,7 +18775,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b62d6281016ff6e2aa9ced299ab48aa7", + "key": "a14b79a3fdb3d939fcc45a3991ea1f0c", "notes": [], "params": { "pipetteId": "UUID", @@ -18731,7 +18791,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd5bcacd182daab9e6758ad737edf552", + "key": "89e19edfad7ce70a26c6766b561fb1ec", "notes": [], "params": { "pipetteId": "UUID" @@ -18745,7 +18805,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1dc6d8b0f62b588db93dc37e113b6245", + "key": "bdc988663be7f1752e19c399cf7288a1", "notes": [], "params": { "forceDirect": false, @@ -18777,13 +18837,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "092e3717bfe3b1131080458c8c1646b3", + "key": "b004f2e940a9b856bc4d3a2264432505", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -18810,7 +18870,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce271b2338183e34cc9bbe69e4b498af", + "key": "cf64a47cff37f9f4e9a58fc3a9794d1d", "notes": [], "params": { "correctionVolume": 0.0, @@ -18829,10 +18889,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0281c55a291f29b3df14680e77dc6e33", + "key": "05ed4acf870e0585aa8823117140dd07", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -18843,7 +18903,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0eaa05ac4fb6773a6134982bcf6e4a53", + "key": "5301110be5910a94f0513418cd192d2e", "notes": [], "params": { "forceDirect": true, @@ -18876,16 +18936,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36d7651819cb63c34da28d4123a43104", + "key": "46fb7324cea0d78160abb641091f284f", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -18895,10 +18955,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2d986c3b3f5d15ead584906c2db897d", + "key": "5719a45d1ecbd399467b6acd3f913927", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -18909,7 +18969,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9113020977c80361e89ae9d79e9249f9", + "key": "95e1c4ea1c75218c138ebdfc2e26e34c", "notes": [], "params": { "forceDirect": false, @@ -18941,17 +19001,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "640ff74a4a96d803a81a2f843b6242a3", + "key": "4bff84f53dd6a23c9d9b8dc20def9640", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -18961,13 +19021,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7479a4062d798a28728fbd6f815b4d30", + "key": "aef56dc3dae5365a5af7f641f7b0a4b5", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -18994,13 +19054,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "488a137239be24a5c3b5310559979992", + "key": "572d17dc31a6efaf1eeedf8b284040a5", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 49.0 }, "result": { @@ -19014,7 +19074,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce261016c30427ed90c8e355bd4f6301", + "key": "696f254fc505713a2a2c705d599fd8c3", "notes": [], "params": { "forceDirect": true, @@ -19042,12 +19102,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "491a6ad60cca5ef587359182ef2ca0df", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0cb7ca2a239d25ee9e0599e63797914e", + "key": "4b242483185ffccc12d495d3e489a051", "notes": [], "params": { "pipetteId": "UUID" @@ -19061,16 +19136,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2ec78146d25f4620186a203d8a3190c", + "key": "f67af92cd641f5e042439f1ebcc4137e", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -19080,10 +19155,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed966c8a145df43e272a0371a082d12e", + "key": "e230ebaeb74491054fc3225b0b97eedb", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -19094,7 +19169,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf38fc4ea83ca0360c284dc5e4e65451", + "key": "a92bac7e9ed982f0ec7f7e3ea3ff462e", "notes": [], "params": { "forceDirect": false, @@ -19126,17 +19201,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b0de90a0cbab52408bd9b9c85a05708", + "key": "24564360b1063ec84916ab06840bbe76", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -19146,7 +19221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4404846cdd1c5754b640b94f23031d18", + "key": "5ce147f8a5b39e7d7576e8a6217ff1c3", "notes": [], "params": { "pipetteId": "UUID", @@ -19162,7 +19237,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "367904e8b1ebc4fdf3933555d870c58d", + "key": "9ebb4ee649bde382119de4be9fba1ec9", "notes": [], "params": { "pipetteId": "UUID" @@ -19176,7 +19251,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d5d522672a6e5120475f7154421336e", + "key": "066da50fd61ca7c79ec498ac3ccc57b1", "notes": [], "params": { "forceDirect": false, @@ -19208,13 +19283,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "591b98d2062552526443919cda4d23dd", + "key": "05afa77e4deb71228e3f5b1832addfc3", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -19241,7 +19316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5fbfbb40d20c18c1bd7d7af484f7bb4", + "key": "20ff1dce9b4fe817c65bf8c2da79ab32", "notes": [], "params": { "correctionVolume": 0.0, @@ -19260,10 +19335,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6fd4c8bb49d933bc9c5c6cdb30a325f3", + "key": "668069b187424e023e3d3353855e1e35", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -19274,7 +19349,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce83689226bc8797642882d1b4931a34", + "key": "b58d09fda43cb86f4d9c7ef71cbb30f3", "notes": [], "params": { "forceDirect": true, @@ -19307,16 +19382,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4dfcee7cb466056e52e4c4356a86c07", + "key": "9ecf01b46e7d44cd578c0c697665906a", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -19326,10 +19401,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3db8ad33ed7425e09c51f40d34b9ede3", + "key": "f038a7633efbd58f05074d5fa0a8a1ac", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -19340,7 +19415,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5251364334c2c676be69ceb9796ae6c1", + "key": "45a2ef8115efcd193bf0de4aeebfdc4f", "notes": [], "params": { "forceDirect": false, @@ -19372,17 +19447,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1ecc1bd8c56b0afcb2418a1d3f0579d", + "key": "38651a5e8e35066a5aa2ab1f3d464d21", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -19392,13 +19467,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f0ddd256aa33064f0af2bfd6c2033653", + "key": "9675f7b7d7b0dc14c58c44cd65708a2f", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -19425,13 +19500,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66e27c45ca796564bb045356c74b6f7f", + "key": "5f0c11784037ed8d320d5a6617a6257f", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 49.0 }, "result": { @@ -19445,7 +19520,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0495542eec62b2c13252fc35c03aebe2", + "key": "b45e4db72568e59f4b5aaf05cec5dd49", "notes": [], "params": { "forceDirect": true, @@ -19473,12 +19548,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c838db5a8034ca506c2a1e81381ab4e4", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ffc560cd1122044f76a4d40d3a0354b", + "key": "f6fc1004f8c2dbcc3f1cc2ab66f02805", "notes": [], "params": { "pipetteId": "UUID" @@ -19492,16 +19582,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91af58d0439c0c0d07f5d47fff66455e", + "key": "13b591fa2387b42688312d1ff473e168", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -19511,10 +19601,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0e0cbfc0cea567cf26172cd4d390f03", + "key": "e8472333333fa3cbfa00c76ca6e2b502", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -19525,7 +19615,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f79e9218d20ad840c981604736c48a99", + "key": "89c768dde8fa4fb43c594e82a583e653", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -19554,7 +19644,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d5da4ded86e6d4149cebe324f82ba1e", + "key": "989f5d3cf932022e7ca32e3e332d210d", "notes": [], "params": { "homeAfter": false, @@ -19569,7 +19659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc2102252367193fe80644aa073c6b38", + "key": "432c2d2ae406ad86196b6882718336af", "notes": [], "params": { "liquidClassRecord": { @@ -19968,7 +20058,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50f4f4ceb58bb9ed9ce994c74be59e88", + "key": "3778946eaa3e30d345a846491ff5274e", "notes": [], "params": { "labwareIds": [ @@ -19990,7 +20080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a6d86b6a58a632926f71d406b484fda", + "key": "85c3a79749fb87f36580afea94e96ab6", "notes": [], "params": { "labwareId": "UUID", @@ -20023,7 +20113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d056975fb20c80db8a08aedb5bd3f7b", + "key": "b84be9ee7939eac4dae6b116f3d2d28c", "notes": [], "params": { "forceDirect": false, @@ -20055,7 +20145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "580bea4137c5e451f92f8e754ada6351", + "key": "5fd5a31a451dffd4cffce6490f7abc68", "notes": [], "params": { "pipetteId": "UUID", @@ -20071,7 +20161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c41b3be651a2f6923f10792187dd2ff4", + "key": "52f3500d1e50c8801ac31fdc7419c292", "notes": [], "params": { "pipetteId": "UUID" @@ -20085,7 +20175,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "de2cf3e930063b1e82d52bd4ad4db687", + "key": "a1dfc1a1aaa1c9c51d3fb2d4118968f0", "notes": [], "params": { "forceDirect": false, @@ -20117,7 +20207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f5184cb7a433a09440619986088987c", + "key": "c026f1d318b1e81787f8d85244221167", "notes": [], "params": { "forceDirect": true, @@ -20150,7 +20240,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f73a24710dabf9155ee0ec1ed65f9cab", + "key": "8485811f1abca54f5d800dbc177e099b", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -20169,7 +20259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf94ad93c659b4b44195ddcc232db781", + "key": "b39480ec751b7183d5cd4f03f9a27726", "notes": [], "params": { "seconds": 0.2 @@ -20183,7 +20273,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f80511f8b118095182613e4b6c368121", + "key": "66853902518bb112ba80cb14c50c7c14", "notes": [], "params": { "forceDirect": true, @@ -20216,7 +20306,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ca7950e046ae240c9bfdc9c7656a4b9", + "key": "debade2089799a06d01f18019de587ce", "notes": [], "params": { "seconds": 0.5 @@ -20230,7 +20320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e43085028583732fc547f47dfc6e5bff", + "key": "45763db9e00041303d588dd0c5a6bf33", "notes": [], "params": { "correctionVolume": -1.3, @@ -20249,7 +20339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7e9a067494d4c63c00e7e62df4b887b", + "key": "d09f20d10084cf189078f7a6fe2d8402", "notes": [], "params": { "seconds": 0.2 @@ -20263,7 +20353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bed367fcb85bc3ddee5a9c5f139a767b", + "key": "d06677b60280001782c488dc991dee85", "notes": [], "params": { "forceDirect": false, @@ -20295,7 +20385,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3f42b991691bbb82411d38666a0488b", + "key": "2a36c330b2068f600437793f00292f65", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -20315,7 +20405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7218f721d8081ca693f9b6e6fdce975e", + "key": "a69d31bdb406a865cf71eade7246cffa", "notes": [], "params": { "seconds": 2.0 @@ -20329,7 +20419,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8ffbdf352649f69725ae6414e7cd401", + "key": "32fec43e50c190710a4bcd421ec30611", "notes": [], "params": { "forceDirect": true, @@ -20362,7 +20452,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21f53608ef0fd9556f80223d9c560740", + "key": "55e9d8316d0a713326f92253c406042f", "notes": [], "params": { "correctionVolume": 0.0, @@ -20382,7 +20472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24689b21afa215715297a23468abde7f", + "key": "0f9c35ee9b5c045164062badf255a840", "notes": [], "params": { "seconds": 2.0 @@ -20396,7 +20486,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50a22e6c2e54edd7c6208ad1282dddf6", + "key": "f460dd66cc31e86eacaf406a25e2fc4a", "notes": [], "params": { "forceDirect": true, @@ -20429,7 +20519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7dd09a6af42b115a1053e2256d7dad1e", + "key": "f23f7ae2439c48f7a9d9e100c4ebfa64", "notes": [], "params": { "seconds": 0.5 @@ -20443,7 +20533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5116db458a461a8201a5ff61eb719f91", + "key": "f1b3b567da2cc55eba12aea691c4bc17", "notes": [], "params": { "correctionVolume": -0.75, @@ -20462,7 +20552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dab232e682fb9adf6147373a57e0f391", + "key": "ba1d9f4143927e747cbd21c3d077fb10", "notes": [], "params": { "seconds": 0.2 @@ -20476,7 +20566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b7745301b88713b7e4a8e426a7c690a", + "key": "a90c79ba650dbfc804de1fdd8dbe86a1", "notes": [], "params": { "forceDirect": false, @@ -20508,7 +20598,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b6699342bc8a3cf4095a6597948f608", + "key": "caec913f12c099a0ba084013714bd039", "notes": [], "params": { "correctionVolume": 0.0, @@ -20528,7 +20618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e31db942076fc91a8c71d5105486dc33", + "key": "07e6c21bd1b9fb550870c19e11ee0fac", "notes": [], "params": { "seconds": 2.0 @@ -20542,7 +20632,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b8d1df12dc319e1e49c90358e30f49c", + "key": "8259969a370d58395cc11fe8d6149744", "notes": [], "params": { "pipetteId": "UUID", @@ -20558,7 +20648,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e012a03c04fc19642800cb0851709f59", + "key": "8b5906ec5f2f548f9373c8a8b9fff251", "notes": [], "params": { "pipetteId": "UUID" @@ -20572,7 +20662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9ea109fc8f02dad3e96466949a265bd9", + "key": "4efee06cc8a7bd205c944bb179218f09", "notes": [], "params": { "forceDirect": false, @@ -20604,7 +20694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd47b106ea0610c116f3b003b8fd1fc4", + "key": "aee288fbe4d7982a99ed8d41e528848d", "notes": [], "params": { "forceDirect": true, @@ -20637,7 +20727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26b69d1e35545457fe5c2eb374224bd2", + "key": "3a2435ce7d6aa5f994060637f93363e2", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -20656,7 +20746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "633371c79f00792e712d0f121a213580", + "key": "2c026f968b3fba863e8521d95ad2e6ca", "notes": [], "params": { "seconds": 0.2 @@ -20670,7 +20760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "741053a32aaa9a4a6d5c02ae9af0d16f", + "key": "4e8b49a17f4096303eb0dd479edcf445", "notes": [], "params": { "forceDirect": true, @@ -20703,7 +20793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11564dead98d3f6c9cb27ff61a4ca74b", + "key": "7cf52b5977f9dc0e48ecfb1c007cb933", "notes": [], "params": { "seconds": 0.5 @@ -20717,7 +20807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f88de9691db593782d5616d2b3f4d9fc", + "key": "5ba5e851259cbac3d75b18cc9fb034b4", "notes": [], "params": { "correctionVolume": -1.3, @@ -20736,7 +20826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "578ad8b4b0b5508fcf639463d1df1692", + "key": "f22f23a0f245a10b11d887e3516d1989", "notes": [], "params": { "seconds": 0.2 @@ -20750,7 +20840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49df8a1eebe6ed6ba557ee1edb4348e5", + "key": "85135f3c3df33c7d8e2939446dca58d5", "notes": [], "params": { "forceDirect": false, @@ -20782,7 +20872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd2a415614da8a2c3aee6f01ae3d8ae9", + "key": "9c8979c67f56222c1cb4dad3ccfbb551", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -20802,7 +20892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a62f04d00214c462ba3c70b21a95b7e7", + "key": "6588856eedb7e9bdd51afa2a16e388ac", "notes": [], "params": { "seconds": 2.0 @@ -20816,7 +20906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e62f907f084fd36c8184ac0a770ab956", + "key": "e9e2271c4e78e145473e005d782c8173", "notes": [], "params": { "forceDirect": true, @@ -20849,7 +20939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ecab5af88cc839a8f59e36011e5e04e", + "key": "3c9bb252b92558dddf679fbb72793571", "notes": [], "params": { "correctionVolume": 0.0, @@ -20869,7 +20959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb1550a241e2e44d5cef1b882438a1f6", + "key": "c8026100675b90d2ecdbb56398873a23", "notes": [], "params": { "seconds": 2.0 @@ -20883,7 +20973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20242eb9bea360d3b66493565e5b16d1", + "key": "a067b4b836311c27998f346d3af02ac5", "notes": [], "params": { "forceDirect": true, @@ -20916,7 +21006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb1beebc2f8aad83a0976027e0acb715", + "key": "9ba04b5d54fab1a2d35a91826d0d7f53", "notes": [], "params": { "seconds": 0.5 @@ -20930,7 +21020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ca885300eb0146cc47890289c0c7ad8", + "key": "ff6da61a243d5dc0216e56d0aab66fc5", "notes": [], "params": { "correctionVolume": -0.75, @@ -20949,7 +21039,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "12cd319953934e3afdf9d2eb9381a1ec", + "key": "8247351fbf98443042cfd7c4b6e999d1", "notes": [], "params": { "seconds": 0.2 @@ -20963,7 +21053,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a3b7f8f4646719135d5626ae0d890b6", + "key": "d3a0fb8559e77b400b0a4f1fd8ed2c1c", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -20992,7 +21082,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3de80716dbcf2035216a71b60c89ab08", + "key": "3ec5e628a588821e582ac7ac00c8bec8", "notes": [], "params": { "homeAfter": false, @@ -21007,7 +21097,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "683541992e6d78e0aa034bc136fc2949", + "key": "e25bb628a64b1b79614080d4185dce4c", "notes": [], "params": { "liquidClassRecord": { @@ -21378,7 +21468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f3901b78dcf18c4f230390936cb6b4e", + "key": "c1afb0d242ff8db854b6404a0ac9b083", "notes": [], "params": { "labwareIds": [ @@ -21400,7 +21490,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c54852092cbc4ee82f91b0fcd83d3507", + "key": "69502351a2524b20c8a0c1fe5a7ea3d6", "notes": [], "params": { "labwareId": "UUID", @@ -21433,7 +21523,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b6d1ac7edcfa56ff5a9746a5c11684b", + "key": "3fbb47f7b92f1652b18780a176c6502c", "notes": [], "params": { "forceDirect": false, @@ -21465,7 +21555,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2de58a6182afb5a8f18056dc3fbdb179", + "key": "69844f26618726990caad3ce88d6ce04", "notes": [], "params": { "pipetteId": "UUID", @@ -21481,7 +21571,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdf8a60f3811e75ccda18ec00ffd2690", + "key": "f7ff48e33f3c07e508e3319ce4fd8c91", "notes": [], "params": { "pipetteId": "UUID" @@ -21495,7 +21585,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69494eddbc2de4aa0ac4848fbbc81f8b", + "key": "0d27896eaa2e8e60cf07435a218533b5", "notes": [], "params": { "forceDirect": false, @@ -21527,7 +21617,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f4a80060d0a261c3c6184c66b59e8fc", + "key": "dc78714c80ae4c620c6b997f9ed3867f", "notes": [], "params": { "forceDirect": true, @@ -21560,7 +21650,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e230bfee4a006e71f0178579581b56e", + "key": "0ed9f2c04069bdbabb8f71b16945b455", "notes": [], "params": { "correctionVolume": 0.1975, @@ -21579,7 +21669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94bef328380dbc7ecd934a3775f0c1d8", + "key": "574c2633db79f6bec348990d07eff17e", "notes": [], "params": { "seconds": 2.0 @@ -21593,7 +21683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80237a3a9a92af436fa640d992b57c7e", + "key": "a2363efadf5feef0bcacaecddcbc3fc1", "notes": [], "params": { "forceDirect": true, @@ -21626,7 +21716,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ebc602b0621341f81ab9d28490b3ed6", + "key": "1defe9e6d9b519b24a8d6906a7c0f0ba", "notes": [], "params": { "forceDirect": false, @@ -21658,7 +21748,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83ca56d9ac7aa29eaba7b2eb0a3ba11e", + "key": "90c542ea686cdc81404646627fb0634c", "notes": [], "params": { "forceDirect": true, @@ -21691,7 +21781,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "daa0b1e2ee51f548530c041a39d641f6", + "key": "4b287a8e29e8c55e5c9cb3f776eea9ee", "notes": [], "params": { "correctionVolume": 0.0, @@ -21711,7 +21801,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d720d0769870b3df76fdb9e639f23a37", + "key": "1f828bf1da9d06a4d1efe912e6ac9457", "notes": [], "params": { "seconds": 1.0 @@ -21725,7 +21815,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b502322f16d25f4a41530859d0e0d115", + "key": "bfa9066f9fab3957c644171634016b40", "notes": [], "params": { "forceDirect": true, @@ -21758,7 +21848,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2db8fd31e22e230583a2adb90a01bce3", + "key": "24f74e35d1f31461e94b1bfd756eb9a9", "notes": [], "params": { "pipetteId": "UUID" @@ -21772,7 +21862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15b0e4f2e7702b6affc86fc86bda0658", + "key": "ea271e12f510f25a73dee16806b9724a", "notes": [], "params": { "forceDirect": false, @@ -21804,7 +21894,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b951fd41a30fdac093178c2d5c068b14", + "key": "7891dbb8f9378e82d465a144ce03d91f", "notes": [], "params": { "pipetteId": "UUID", @@ -21820,7 +21910,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2886bbe582ddf3ee844929e9975bc44b", + "key": "3020a1e0318ae600db86452165e9c5ea", "notes": [], "params": { "pipetteId": "UUID" @@ -21834,7 +21924,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e016cf9c2666be8e93aa545e9a396fe1", + "key": "f7d417ebbc247c4e7d2746f39a5dacd7", "notes": [], "params": { "forceDirect": false, @@ -21866,7 +21956,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f435297ae5466d23649f15bd4d9fadb", + "key": "d777858eba09d18b354302b03cfa9a86", "notes": [], "params": { "forceDirect": true, @@ -21899,7 +21989,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c0c23664a04c5aee181f87486a2c76d", + "key": "c3fd5bba42ee120bc986b4436fdafaeb", "notes": [], "params": { "correctionVolume": 0.1975, @@ -21918,7 +22008,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a398a32a48e59f894ca691541ccdabd3", + "key": "7959ca7e76d2c92f170d34b4182ae7c8", "notes": [], "params": { "seconds": 2.0 @@ -21932,7 +22022,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d0aa6ccad6575bfb8c9743cbd0d0e5a", + "key": "ad667e6cdac0bfb99c1fdf238e7fe2aa", "notes": [], "params": { "forceDirect": true, @@ -21965,7 +22055,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d67fdce2df5f8da9811231227d625818", + "key": "3c28c1f0b3133f6e03123771eba6d762", "notes": [], "params": { "forceDirect": false, @@ -21997,7 +22087,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce6848555ca84b01b4aa97aabb9be79a", + "key": "5ef92893a8448be939352fe8f58f8c26", "notes": [], "params": { "forceDirect": true, @@ -22030,7 +22120,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb8007b31f3753fb9bce463e9127cc60", + "key": "975f02604a3cdfe2f0edd4fa0aa758eb", "notes": [], "params": { "correctionVolume": 0.0, @@ -22050,7 +22140,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "839ab6d65fed7314f746c63a998f3d08", + "key": "df22db65b8e47f0eec67ea7780e1949b", "notes": [], "params": { "seconds": 1.0 @@ -22064,7 +22154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd961b76099999992d8a1fdff16fffb7", + "key": "608deda54714a4b41c6291f3477b91fd", "notes": [], "params": { "forceDirect": true, @@ -22097,7 +22187,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "392fa8089c178335c14afc58be0abc76", + "key": "737d6e6c23eae4c90ada21eb0046f36a", "notes": [], "params": { "pipetteId": "UUID" @@ -22111,7 +22201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "222d7e2f11639ce3641e5d55e7699d27", + "key": "9644921ae411c850f0e46ef1696a5e2f", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -22140,7 +22230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7334337fa688d183ea9ca2fcb26b8f32", + "key": "846530f81db7a6b3a2d47187bab41988", "notes": [], "params": { "homeAfter": false, @@ -22155,7 +22245,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89c19a34df3b42503ad775bfd0bbfbe1", + "key": "777051b1cb3a5f320b74b34133051c77", "notes": [], "params": { "liquidClassRecord": { @@ -22452,7 +22542,7 @@ ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 50.0, "location": "destination" @@ -22514,7 +22604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4741be8e3fb7853c1fe2480e004d582c", + "key": "6671db05e0a4f8330e9b2765294c2855", "notes": [], "params": { "labwareIds": [ @@ -22536,7 +22626,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c59f1ea4cd0ed8f012f78eed89240d0b", + "key": "6f40b9f0cdf1ec4b43c32cac3dac96ea", "notes": [], "params": { "labwareId": "UUID", @@ -22569,7 +22659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90e155756b1b6cdcf151ddedcee08300", + "key": "8b93d368a58c4d2aff15fafb9e97a048", "notes": [], "params": { "forceDirect": false, @@ -22601,7 +22691,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f3f7adfb654510ab1e603f61743b0d0", + "key": "8a024bb8e505177372a2623c3a0a67ee", "notes": [], "params": { "pipetteId": "UUID", @@ -22617,7 +22707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ed2a4ba03de57724be449126271a280", + "key": "a433cf07b1ae933b5c181e34e3d058eb", "notes": [], "params": { "pipetteId": "UUID" @@ -22631,7 +22721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "816544a88d5b6ac6e00b1fad57d5b14c", + "key": "0af6edab60832836d93c9a0897f8bdce", "notes": [], "params": { "forceDirect": false, @@ -22663,7 +22753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe9801fe666ab660a0cd0f9f33f63355", + "key": "ca1097de7f35798ed0a3c540467b137d", "notes": [], "params": { "forceDirect": true, @@ -22696,7 +22786,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "527ef39a1dab51eee8d5f59b5b9393fc", + "key": "dd7f7fa2fed0188eccd50509b7ce501e", "notes": [], "params": { "correctionVolume": 0.0, @@ -22715,7 +22805,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a9bf409b7f449b4711e4da509885ba1", + "key": "8e5821ef2e877199cf6df96bca639fd7", "notes": [], "params": { "seconds": 0.2 @@ -22729,7 +22819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07defaf368dc6766017cbe6b7108574e", + "key": "de722ed853071d2198b262def9af08b4", "notes": [], "params": { "forceDirect": true, @@ -22762,7 +22852,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8fb47ca0d722d1ffde76228af42651c", + "key": "3c937a71ebb43409264bf2e9e195d1fc", "notes": [], "params": { "correctionVolume": 0.0, @@ -22781,7 +22871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10d57c49a0d180f2aeacf61aa5117055", + "key": "688619c960f578b7723be0b5c6ac8752", "notes": [], "params": { "seconds": 0.2 @@ -22795,7 +22885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86150aa6abf4dd06a7335b6a4d7baa2e", + "key": "b8c24851d5528d656183b2ab089acf39", "notes": [], "params": { "forceDirect": false, @@ -22827,7 +22917,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4570425ac3adc0aede5b21ca1d138457", + "key": "37658abbd85c355e32d0253baac62d11", "notes": [], "params": { "correctionVolume": 0.0, @@ -22847,7 +22937,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0243ff69ee40b829ae54911acd016cb", + "key": "372d66c00361a09b3b873cb81325627f", "notes": [], "params": { "seconds": 0.2 @@ -22861,7 +22951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02f458ab65fdc105b4ee83ec0c231965", + "key": "7c1a537f8571b6a5b84a644845fb84ac", "notes": [], "params": { "forceDirect": true, @@ -22894,7 +22984,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a469d7d05ad952e75bb9ffbc972248f5", + "key": "0799a9d58d7772a7520f1565c93f9401", "notes": [], "params": { "correctionVolume": 0.0, @@ -22914,7 +23004,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "241d0be5d9dd1f30252dd1b9117eea8e", + "key": "082b1f591fceabe2448fae0d1cddc9cb", "notes": [], "params": { "seconds": 0.2 @@ -22928,7 +23018,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b9be8933cbe6c8fe0344f2733a8d6fd", + "key": "fe7e59023918d6c326ae0c7d1380622b", "notes": [], "params": { "forceDirect": true, @@ -22956,12 +23046,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bb21f8c411e6c085fbac5ea7641226d", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "005b3b0c22e62f056f1719e189f79c07", + "key": "3cd0f56d8d2f924d5cf70e7bfbdabbb4", "notes": [], "params": { "pipetteId": "UUID" @@ -22975,7 +23080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5651c0d0feb0400311d5bedb6a525871", + "key": "d5b9f6d2b9b5371252448cbd4dab3e6a", "notes": [], "params": { "correctionVolume": 0.0, @@ -22994,7 +23099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2b99337efd1ad8b93efd00b7fc5dfdc2", + "key": "f72490be16ff08414d88a27b397ef3fd", "notes": [], "params": { "seconds": 0.2 @@ -23008,7 +23113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a92574629b70aaadd1c24525de823331", + "key": "25521b95b3d81e648f61329c383fa450", "notes": [], "params": { "forceDirect": false, @@ -23040,7 +23145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72e185e03214639c314553232d506f67", + "key": "92c03b9ed4a836baae4d81f37012c0f5", "notes": [], "params": { "correctionVolume": 0.0, @@ -23060,7 +23165,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "08345fd364f632f72372485474a2be3f", + "key": "9649b191b3adf8fbfd1b169154d4c3a0", "notes": [], "params": { "seconds": 0.2 @@ -23074,7 +23179,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa400cdda3cc1a8807a679c583ea800d", + "key": "c2ec2f4e5e67aa0ed7103233cb71f2b9", "notes": [], "params": { "pipetteId": "UUID", @@ -23090,7 +23195,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ba430c4a4feb831537fb3cbff9d0239", + "key": "1e1fbcbc125dbcb4a3847476d9764c11", "notes": [], "params": { "pipetteId": "UUID" @@ -23104,7 +23209,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb88960f7a705f13ad6608d37d011733", + "key": "c637da49a1c4abe34a5ef58922e50c3f", "notes": [], "params": { "forceDirect": false, @@ -23136,7 +23241,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6efae5d47c34ae7fc123b097d65c3277", + "key": "5268290d9e2511f37b6cf8f8d4bf9d00", "notes": [], "params": { "forceDirect": true, @@ -23169,7 +23274,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8b89e584912986238018236cee84b26e", + "key": "09470c14cabda77c98d5c9a6c811e4fa", "notes": [], "params": { "correctionVolume": 0.0, @@ -23188,7 +23293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4482ad2637b6d78ff0092943a6cec17", + "key": "217c6e61c96cb16a83190b34527b7d35", "notes": [], "params": { "seconds": 0.2 @@ -23202,7 +23307,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a31294da957b83175cf4ec32a7d8d619", + "key": "bc61d9045f9b5c54b6455e2ae445bc1d", "notes": [], "params": { "forceDirect": true, @@ -23235,7 +23340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b03efb90f13fc3ff7cf466210824642", + "key": "7e0df5ab6cd15960d5bf932f59863629", "notes": [], "params": { "correctionVolume": 0.0, @@ -23254,7 +23359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e05505c4049c2c784af2cf5020a75eb6", + "key": "9743bda5fb90013a0ff0740951f88410", "notes": [], "params": { "seconds": 0.2 @@ -23268,7 +23373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1eebb04c0b03a217468274e659601b4", + "key": "7f06400162d16df5567073095ea927ab", "notes": [], "params": { "forceDirect": false, @@ -23300,7 +23405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d00217f6eae3759e795bba48a276e0f8", + "key": "b3968f42790130607dd8bba2a90fd637", "notes": [], "params": { "correctionVolume": 0.0, @@ -23320,7 +23425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d55d7eb2b4daa9f1feac6fbc71ff86b", + "key": "5e3bec0d12bafc87f23a1af82014b778", "notes": [], "params": { "seconds": 0.2 @@ -23334,7 +23439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49ae0a0298ebcbc4e3f3a9b9aa55ecaf", + "key": "251d37aa28e45088e992a46e23a70b53", "notes": [], "params": { "forceDirect": true, @@ -23367,7 +23472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdb4e0710353b50fe8197a62a31ef1ba", + "key": "826e46e0296550d6f2a499131af6212c", "notes": [], "params": { "correctionVolume": 0.0, @@ -23387,7 +23492,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64ac02825ce83c01d9320948d4113979", + "key": "499dc418709e58e1593eb7dbd3ab553d", "notes": [], "params": { "seconds": 0.2 @@ -23401,7 +23506,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28f5d1770947b87ddbd4a987f81b2340", + "key": "d1b2cdca407d39724e744692cbe62b07", "notes": [], "params": { "forceDirect": true, @@ -23429,12 +23534,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e62e5dc2ba1b1d788540d378ada68db", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a4f68c9fc822180129262b0a7679024", + "key": "5a447685c5f5406ee4586728b8227f0d", "notes": [], "params": { "pipetteId": "UUID" @@ -23448,7 +23568,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edef3d11975a365a178527136cefd9d6", + "key": "d5104c33e6835776a31eb2d778cea35f", "notes": [], "params": { "correctionVolume": 0.0, @@ -23467,7 +23587,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e7d909035db0a7e8fdc84fff7ee432b", + "key": "9e06284066979b744746b653832f5000", "notes": [], "params": { "seconds": 0.2 @@ -23481,7 +23601,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a08f625332287f12bafd6ac36155dff8", + "key": "58b088dab8c82926fd43116a8b62a797", "notes": [], "params": { "forceDirect": false, @@ -23513,7 +23633,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75728afcb307dad7920012e0b3cd7b5d", + "key": "47e5653f3448548ed7afba412b0e4604", "notes": [], "params": { "correctionVolume": 0.0, @@ -23533,7 +23653,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24400fff5f5c72150a337f6487c373b3", + "key": "2b0a8869434423dc0776014bd80fd401", "notes": [], "params": { "seconds": 0.2 @@ -23547,7 +23667,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "547e3b6e2d6823f4e6a65c73d674776e", + "key": "8e865dc79d5da212eb1ae47dc10287d4", "notes": [], "params": { "pipetteId": "UUID", @@ -23563,7 +23683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b5bcbd7924633b963018042ddedd79c", + "key": "24a9556f851a6f23bb11ad18f66453e6", "notes": [], "params": { "pipetteId": "UUID" @@ -23577,7 +23697,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb10de26d38ef059e2306538409300b0", + "key": "15a20ec662cd050a168534efb1834ab6", "notes": [], "params": { "forceDirect": false, @@ -23609,7 +23729,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d40ba6cffbe981fe573d92b25645a9c7", + "key": "40b7e12740f75a033f5127947cc16b48", "notes": [], "params": { "forceDirect": true, @@ -23642,7 +23762,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb8a3bbd444d96739477b13664e0603a", + "key": "76a7de9eebe77ea490aa0bcfaa172e4a", "notes": [], "params": { "correctionVolume": 0.0, @@ -23661,7 +23781,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "125e849d3dc59852c79b500369203fb8", + "key": "6636b4260be3fd0862a871db1464fad8", "notes": [], "params": { "seconds": 0.2 @@ -23675,7 +23795,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f4f7ef60b3fb93611bbb6fae5d873b9", + "key": "e8f48bdd6c5f99f20884437266a295f8", "notes": [], "params": { "forceDirect": true, @@ -23708,7 +23828,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd3fc8e23aa9ee542c0061ffbec3c97d", + "key": "9d2d5e6ee0e20e3dc2bdd64b0c3e8ba6", "notes": [], "params": { "correctionVolume": 0.0, @@ -23727,7 +23847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3dc73ae8229fc43088aa258d312c55f", + "key": "c20f09d78777c4613165e26f22ad5ae9", "notes": [], "params": { "seconds": 0.2 @@ -23741,7 +23861,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e1e810f33630942961291e5a0a426e6", + "key": "7fcc215e11e93816ef807cc36728d4f3", "notes": [], "params": { "forceDirect": false, @@ -23773,7 +23893,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9e9f01c2c33a9440ea677ceca22fdff", + "key": "4449e3e845794b80c3ded5dcbf0be5db", "notes": [], "params": { "correctionVolume": 0.0, @@ -23793,7 +23913,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d0a0063b8c6d0aac0dfe848783e348e", + "key": "0f5a4d5625990bb08b544c155614c7d8", "notes": [], "params": { "seconds": 0.2 @@ -23807,7 +23927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e43da45ccf237795a9d9914627dc3d2", + "key": "f1c75312997f096ad54fd2be798d56f1", "notes": [], "params": { "forceDirect": true, @@ -23840,7 +23960,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7f306cbed0b7870ea68fe33f72f865f", + "key": "22d3bf58df99d5f63bfbe8293d1d9884", "notes": [], "params": { "correctionVolume": 0.0, @@ -23860,7 +23980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "08644acf585c776ee18c19f7d309974c", + "key": "3727ed8b2857a44389f560fd13bf1e4f", "notes": [], "params": { "seconds": 0.2 @@ -23874,7 +23994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1af8251eddf5b549d5a7ce12e27c97ce", + "key": "fa421fcf362bb3d2525d8ce0ed252747", "notes": [], "params": { "forceDirect": true, @@ -23902,12 +24022,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e52a079077ab1852dee760251c9c1a45", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "375996a3d7fbde58f5c9fa73a549a896", + "key": "e75abbe1f49b0d1cc65f13f458d62511", "notes": [], "params": { "pipetteId": "UUID" @@ -23921,7 +24056,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1bb43eeac35e5115c70aa63a049c62a", + "key": "ce94822b3d134abfd6d9b1b308699725", "notes": [], "params": { "correctionVolume": 0.0, @@ -23940,7 +24075,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dfb5e059f4c7f2350008827a1279dc35", + "key": "ce0e048f19bd6263389f54dc570f74f0", "notes": [], "params": { "seconds": 0.2 @@ -23954,7 +24089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2031e67a6e6b6babc3b48857fe338196", + "key": "d79dfe6fd64c786f9be1a029a495e38f", "notes": [], "params": { "forceDirect": false, @@ -23986,7 +24121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb2b20210741df707fead15278e41617", + "key": "466678920a6f5444ef391d1b297e2d14", "notes": [], "params": { "correctionVolume": 0.0, @@ -24006,7 +24141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "664c08f19d4571f538226052ff06709d", + "key": "6a86bfc1b78d9b215a062725c062b5d9", "notes": [], "params": { "seconds": 0.2 @@ -24020,7 +24155,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7028fc4be2587faa099e42e2a792460b", + "key": "523f4bbb6a3b2b3089097737b05461a5", "notes": [], "params": { "pipetteId": "UUID", @@ -24036,7 +24171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d3035d988d99c70afc0de5e815d9439", + "key": "e0a76f2e8ec53a0d1e0d265042e729e3", "notes": [], "params": { "pipetteId": "UUID" @@ -24050,7 +24185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c62a653ed0845f077409c631be58db53", + "key": "5ff7f93985476555822881e69524db87", "notes": [], "params": { "forceDirect": false, @@ -24082,7 +24217,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0cc6bada0ad592d6bae0a9e08d0d1780", + "key": "fa168965f1c6ecb3b458c88d27d80d58", "notes": [], "params": { "forceDirect": true, @@ -24115,7 +24250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66a81d9457dfa94b2fc316f35c15815a", + "key": "ba243b0a626262e607c178d962ec9baa", "notes": [], "params": { "correctionVolume": 0.0, @@ -24134,7 +24269,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41b9bd684b753f306892ef85aec4cb31", + "key": "0e130b6ccee6bbe2d91a4bb4f485ee33", "notes": [], "params": { "seconds": 0.2 @@ -24148,7 +24283,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52629422677b4e4df3415f963fe957bd", + "key": "73b45a3e2bbf381dee951a3096543c53", "notes": [], "params": { "forceDirect": true, @@ -24181,7 +24316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "898ad910a844766d0e077de26783364d", + "key": "859902ff0672e7ad7a0622abd6cc1b74", "notes": [], "params": { "correctionVolume": 0.0, @@ -24200,7 +24335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a533a5e67390f218fdc1c5dd044a4e76", + "key": "cf8cdaef5f49c0beecbc30b022bb63f3", "notes": [], "params": { "seconds": 0.2 @@ -24214,7 +24349,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0d6d6ff4d534158e677c8b0de178308", + "key": "d73c33f366a338d0811a55acab48a183", "notes": [], "params": { "forceDirect": false, @@ -24246,7 +24381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfff422f80bbddba2802d1b0985c64af", + "key": "a5fdb15f70523a7f20cf32fbd6e62902", "notes": [], "params": { "correctionVolume": 0.0, @@ -24266,7 +24401,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae0a6353ab0a950ecb93659dfdfcefc2", + "key": "145f5fccb160d499d36ecd15cf9f20f7", "notes": [], "params": { "seconds": 0.2 @@ -24280,7 +24415,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b3a110bf617d15f572f751900ec9e10", + "key": "e6d829eb83ae2e2f4d8340b14e464318", "notes": [], "params": { "forceDirect": true, @@ -24313,7 +24448,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b1c80975d6e92c73b838dad3054c7f8", + "key": "9c97608c62b731e5c9373afbeef8eaab", "notes": [], "params": { "correctionVolume": 0.0, @@ -24333,7 +24468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b653f62d36a8463bc84619f54e385bbb", + "key": "428ea1b8e83f1ec7db31d08a2392b9fb", "notes": [], "params": { "seconds": 0.2 @@ -24347,7 +24482,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97d1218a26d769077fd5818e7b6a48b1", + "key": "f8d3314e9babecef747787bc67c1a6ad", "notes": [], "params": { "forceDirect": true, @@ -24375,12 +24510,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11443265107fd19e2ce5078726e98c04", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0542d77e3db0b570f05ae82d6848c7cc", + "key": "b50558fd2c3f402c929ab79c99c65073", "notes": [], "params": { "pipetteId": "UUID" @@ -24394,7 +24544,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9acf4979e1204dd11d135f2b21794ad8", + "key": "18997dde9327e1bd4c02265953e57c0d", "notes": [], "params": { "correctionVolume": 0.0, @@ -24413,7 +24563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19b25905c3da59dc8880fd321c0d9ae7", + "key": "a56d112f05083f8c9ae15d920dd57034", "notes": [], "params": { "seconds": 0.2 @@ -24427,7 +24577,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c34b3e39805e8f2759be8721e249e54e", + "key": "b8661625d56b5311872b3580c2981627", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -24456,7 +24606,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "babbf77c5fb7ff2f738218bce6181640", + "key": "5d1f4455b505088b54840736ee51ba46", "notes": [], "params": { "homeAfter": false, @@ -24471,7 +24621,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8ca9a25d8cc4abe8b0c3058478b8206", + "key": "b8d0489b8f454702434358016e31c027", "notes": [], "params": { "liquidClassRecord": { @@ -24858,7 +25008,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cd08b57bc8d7b9e5d5d21dc328b6beb", + "key": "658c7668e37f06f0aba0ca99902abd23", "notes": [], "params": { "labwareIds": [ @@ -24880,7 +25030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a586e038f4c8115a859906171e0c53b9", + "key": "b9cb132e5f4b08e7b42d071f90d2ffe8", "notes": [], "params": { "labwareId": "UUID", @@ -24913,7 +25063,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9dd7602d9affb7ef28b55782c64edf5", + "key": "7348261d783c5ced794e722ab509ac76", "notes": [], "params": { "forceDirect": false, @@ -24945,7 +25095,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f07616b05ac5fa6d620b4ff122a21573", + "key": "a5bcdf1423707a8df0d59295010a1f26", "notes": [], "params": { "pipetteId": "UUID", @@ -24961,7 +25111,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bbe10645bf95c7965062ad05a8698ba8", + "key": "b19bee25a703c47da09343c4881dd8a1", "notes": [], "params": { "pipetteId": "UUID" @@ -24975,7 +25125,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04e5721d33c20f184acfd389410c46c5", + "key": "9823295f7e79df90f4f206c5cd2bd7d0", "notes": [], "params": { "forceDirect": false, @@ -25007,7 +25157,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "76e5ca3f6527b9d458b4ce394249dc9f", + "key": "8127d78171539c06851b547c20c430b3", "notes": [], "params": { "forceDirect": true, @@ -25040,7 +25190,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bbecca669b813df23b0b2a2ce8ccfe53", + "key": "2f3b66bd1dc9a9b1c383802b209a0155", "notes": [], "params": { "correctionVolume": -0.40625, @@ -25059,7 +25209,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b72da423ea0fbef6c82d9c12a1c67f8", + "key": "36665d3ce288e5aebd375483d3cb02cb", "notes": [], "params": { "seconds": 0.2 @@ -25073,7 +25223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5161cfdd404a95466e8207b810255425", + "key": "7a421702e4e3e9650a37ac02bdd0ef4b", "notes": [], "params": { "forceDirect": true, @@ -25106,7 +25256,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63fedaeb0deeec361549411fdc7b98f3", + "key": "043cce68f97eb5321667be33620cd596", "notes": [], "params": { "seconds": 0.5 @@ -25120,7 +25270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8b3c066055297f0c23c58225c37d11d", + "key": "9c069df3e9b14b4ccd053c8a84e643ae", "notes": [], "params": { "correctionVolume": -0.44375, @@ -25139,7 +25289,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b090ebf5ac523ebd25e9fc257d06a23e", + "key": "fe07e915f74995f95102843dea4a2814", "notes": [], "params": { "seconds": 0.2 @@ -25153,7 +25303,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3087d7cf8a5687a16130dd97ad4f9ac0", + "key": "e0b23d0c6daa0757865935bb16513d72", "notes": [], "params": { "forceDirect": false, @@ -25185,7 +25335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9da743b633119e684a47f6789298c726", + "key": "a36c55d633745e25ec8d4bd1f1625754", "notes": [], "params": { "correctionVolume": -0.40625, @@ -25205,7 +25355,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c7e81d265f6eef77a11ea414941d1f1", + "key": "fc47fa5a125550bbef439a879c200ec1", "notes": [], "params": { "seconds": 0.2 @@ -25219,7 +25369,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58e7a6c4358adc57035b25bfaed83f22", + "key": "bd3896aa1056278ae2c018703647ba5d", "notes": [], "params": { "forceDirect": true, @@ -25252,7 +25402,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b98d51502f1f51bc0c729d1dc6ac85b0", + "key": "48a6448c74d21ea946fecd9bf0e096b1", "notes": [], "params": { "correctionVolume": 0.0, @@ -25272,7 +25422,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b749e9d13674726cde017e9908365ca0", + "key": "91dcc0b39d618e945ce3f0d1508c841b", "notes": [], "params": { "seconds": 0.2 @@ -25286,7 +25436,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72ab5b68a3420b28c9722203d495e344", + "key": "d4652cc20362650c03d837a1a916d1f6", "notes": [], "params": { "forceDirect": true, @@ -25319,7 +25469,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd3befa04758014418eab04d24579f77", + "key": "b7f5ec482dbd59a26ea9669b3c0741d3", "notes": [], "params": { "seconds": 0.5 @@ -25333,7 +25483,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e65280630ad4035de9f2b7f7d3f8cfab", + "key": "e86fb71d073169806998f9096cbedbe2", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -25352,7 +25502,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20e03c9add0a38d3368df58f92b8d1aa", + "key": "a1c3142fc53838e231ab0343b384be66", "notes": [], "params": { "seconds": 0.2 @@ -25366,7 +25516,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec6ac924391ca8a9de511b15dfb609c6", + "key": "47fd29fe94646a732951db09859f97b2", "notes": [], "params": { "forceDirect": false, @@ -25398,7 +25548,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7459db8b8a89379e428b2d30a5bd635", + "key": "1cb54e11b8f3ba73f7cf183163cd71eb", "notes": [], "params": { "correctionVolume": 0.0, @@ -25418,7 +25568,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "608ec79f62cc64e1c205f128948ccb4d", + "key": "72d5df53f2371b2e1b65c718297ef2bd", "notes": [], "params": { "seconds": 0.2 @@ -25432,7 +25582,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "464f92de00aedde20a82c4e17d770d43", + "key": "a39cb55f44d7e5356412e8c94b995b90", "notes": [], "params": { "pipetteId": "UUID", @@ -25448,7 +25598,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04aecd658d19ae35d029a9e053d52ba5", + "key": "cb7cbd236461a278f2049c2db515aea7", "notes": [], "params": { "pipetteId": "UUID" @@ -25462,7 +25612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d894fc4620a7f50b0eb190ee1e7e666c", + "key": "83bf13d093d21b01ab651c05a8deeaef", "notes": [], "params": { "forceDirect": false, @@ -25494,7 +25644,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0df672e069ff6080087feb37c9734837", + "key": "cd498b29cc40c7e1d1504668e21f7a51", "notes": [], "params": { "forceDirect": true, @@ -25527,7 +25677,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c3778655a04a09b32f19d8d620f1217", + "key": "670171652c0c6be6d4fcd31d48e37e66", "notes": [], "params": { "correctionVolume": -0.40625, @@ -25546,7 +25696,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9cd3f8eefe786e69c6bf5cf241f9b2ea", + "key": "c8d065ceb92d80fda56a9eb16c6dc2ac", "notes": [], "params": { "seconds": 0.2 @@ -25560,7 +25710,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2781e1760ad08c037048b935f225adf5", + "key": "9ada6a52f9be7ddc74648c133b98bfbd", "notes": [], "params": { "forceDirect": true, @@ -25593,7 +25743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fb43dfc0a254e5d4f16953a0586cc9b", + "key": "47ad5588b4ba7777bf72a5f03fd299a8", "notes": [], "params": { "seconds": 0.5 @@ -25607,7 +25757,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6ebd17d3d14738667c01b02d0da6635", + "key": "ff4bc2e80ae006d2ecb22dde7b5d0a0f", "notes": [], "params": { "correctionVolume": -0.44375, @@ -25626,7 +25776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac08d73619bea3ebfc755ba5449298f8", + "key": "f1f49e040708877a5727de48635956db", "notes": [], "params": { "seconds": 0.2 @@ -25640,7 +25790,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d9cfbc64c37323b5b8887e553e02f61a", + "key": "244bea4d56f6b1035df935b6ec445842", "notes": [], "params": { "forceDirect": false, @@ -25672,7 +25822,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "768e25c0d612fa505c4d8b718654d046", + "key": "133456b1044e25fc284a2f92de4a74c5", "notes": [], "params": { "correctionVolume": -0.40625, @@ -25692,7 +25842,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f50ae7b05fc9530303a4dc30bdae9b4c", + "key": "958eac447ec74a73b235e0a2275b02fe", "notes": [], "params": { "seconds": 0.2 @@ -25706,7 +25856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "368910d6b723bece0ad55462fb198259", + "key": "b05831462faffbbac3d0e7d273bce5fa", "notes": [], "params": { "forceDirect": true, @@ -25739,7 +25889,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ffd5b9b6f486aae8d48d93a3274ac08", + "key": "5c9531793ddea6777084a0668b2b88bf", "notes": [], "params": { "correctionVolume": 0.0, @@ -25759,7 +25909,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f4b75e180da94d89f2b167d37ebb320", + "key": "2593f64e89b342153be7a8f431f09df4", "notes": [], "params": { "seconds": 0.2 @@ -25773,7 +25923,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ec4cbe62354308ab2be074664145e3e", + "key": "00e20b7ffdf058baddb29d586a46d64c", "notes": [], "params": { "forceDirect": true, @@ -25806,7 +25956,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa53a15b8f35f8da7501bf9057b062f9", + "key": "12414eb12d690de3d09adbb8c2283d3f", "notes": [], "params": { "seconds": 0.5 @@ -25820,7 +25970,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1160b571b321e51ed1667592b3fccdb", + "key": "0a627a0f061f3a45f859bbc6be71592b", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -25839,7 +25989,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45de0fc072d562c8ecc1eeca44399e86", + "key": "41aabfbea16c10715dd066163063c12a", "notes": [], "params": { "seconds": 0.2 @@ -25853,7 +26003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0095e8334070cd774778af17c8efeb44", + "key": "ddcf5ca78364f4dba13380674c221082", "notes": [], "params": { "forceDirect": false, @@ -25885,7 +26035,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fbdc0e112a533d873fba9140e79086f2", + "key": "d9be4244f598fe865c9b1dabdb8f17b8", "notes": [], "params": { "correctionVolume": 0.0, @@ -25905,7 +26055,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec6429c2106531f046a22352c8fb38bc", + "key": "14e6ed339093eae527752c4f54e42f70", "notes": [], "params": { "seconds": 0.2 @@ -25919,7 +26069,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27c3b31d9acbef574c899ecf140ed7f5", + "key": "1b63e3661fa8ba5aa4f4d2ea120a4fe4", "notes": [], "params": { "pipetteId": "UUID", @@ -25935,7 +26085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb2577d0878198ebe80bc0c65317847c", + "key": "6baef0506de876b2a4081c7d534e8b8e", "notes": [], "params": { "pipetteId": "UUID" @@ -25949,7 +26099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aebf39ba386ddff6ce47f15663fe91d8", + "key": "33403e77bf0028dd1ef24d9a7107375e", "notes": [], "params": { "forceDirect": false, @@ -25981,7 +26131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "437c9a9f7fe9ad1a9f227a6658264172", + "key": "ee4c0b63070326dc10adbd487c4e80c1", "notes": [], "params": { "forceDirect": true, @@ -26014,7 +26164,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a6f7259e0c8768f21283bdea9dcfe52", + "key": "5cc0e080ee11226349fba477299eef8a", "notes": [], "params": { "correctionVolume": -0.40625, @@ -26033,7 +26183,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "881291d171ec4f032f15fa8eaeecce2e", + "key": "b720f0c87b6c9c1760473afdcc5716db", "notes": [], "params": { "seconds": 0.2 @@ -26047,7 +26197,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "255cce84e8184c80433868661e5a6871", + "key": "8c36373ee8a9dcb9550883e60b22581b", "notes": [], "params": { "forceDirect": true, @@ -26080,7 +26230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b14973a18cf59f08a952cc6a7da9146e", + "key": "888615de7569fa31926f59fabb775897", "notes": [], "params": { "seconds": 0.5 @@ -26094,7 +26244,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "792a0ca8a57c5a99298a132b4f7e0832", + "key": "2369ec2aa72891e1099bf97a8fae8959", "notes": [], "params": { "correctionVolume": -0.44375, @@ -26113,7 +26263,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af69919280dd0274a8e57657a873fb56", + "key": "0fd279a089512658a68c0150c43ccf44", "notes": [], "params": { "seconds": 0.2 @@ -26127,7 +26277,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "123f4c0692f05489905f7886a207f168", + "key": "b5a1fcab0279ca4174e5b1945917bb9a", "notes": [], "params": { "forceDirect": false, @@ -26159,7 +26309,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a705f5ac075b3aa7f0ce846638624c7d", + "key": "6ba74310582fc04c3cf704d999b667ad", "notes": [], "params": { "correctionVolume": -0.40625, @@ -26179,7 +26329,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1c2c697c781de443f081ccd7f8a19c9", + "key": "37a63e2ba076985da8b16348d7a1c826", "notes": [], "params": { "seconds": 0.2 @@ -26193,7 +26343,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5303bab1486bcd54d7a8340edaae143b", + "key": "ee3c9a60ed7849b3b13fc84a62e3c73c", "notes": [], "params": { "forceDirect": true, @@ -26226,7 +26376,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c6b6149b4bd5e57328c48f3c0a05b5d", + "key": "e195c07f01b38573f45b7f94fd2a92bc", "notes": [], "params": { "correctionVolume": 0.0, @@ -26246,7 +26396,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b78bca042afa9ff84fd4905e1e0a6f15", + "key": "cc43b6778a153756c9d12511805c5d7d", "notes": [], "params": { "seconds": 0.2 @@ -26260,7 +26410,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "088e02fd7dbbb410e81158f32587f25f", + "key": "3e245e06e4c9bae3ef86e63d7c89f064", "notes": [], "params": { "forceDirect": true, @@ -26293,7 +26443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c99d8bb5aa83123254035e6482e123b6", + "key": "5aa80adcd97e8b690934d7dd02b50c53", "notes": [], "params": { "seconds": 0.5 @@ -26307,7 +26457,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abfdb6eb1eac9c8cd5ff786cca8af04b", + "key": "e377f3fd2ef1058900732ebd2f6efc74", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -26326,7 +26476,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "47fecc158c23231e49345a7159d972c9", + "key": "45aca0b26971285b272bfc76ae89bd6b", "notes": [], "params": { "seconds": 0.2 @@ -26340,7 +26490,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6029d80e680d157daf7ef281bc43924d", + "key": "e646542ac8c072d2fef6d2e4d5dfd23b", "notes": [], "params": { "forceDirect": false, @@ -26372,7 +26522,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46ab8b638c9f379559ff8b996eb63816", + "key": "bfaefe25edafb61d49790764a031edd5", "notes": [], "params": { "correctionVolume": 0.0, @@ -26392,7 +26542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f32ba2cb3055003cb55a288f9ffd97c", + "key": "e7011b7b3098a0969331a2c631099b5c", "notes": [], "params": { "seconds": 0.2 @@ -26406,7 +26556,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "035d8271931cb95fd3011fcc87378566", + "key": "00924edd68ab89d7622cff0f2883fcb0", "notes": [], "params": { "pipetteId": "UUID", @@ -26422,7 +26572,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e28218d0cc5c0c659393eb2d0b9deaa7", + "key": "2f3e4c4efd32e0636eb8e11ae6085ecf", "notes": [], "params": { "pipetteId": "UUID" @@ -26436,7 +26586,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4928a3fd37bc252ae21ade02f5fb5a1c", + "key": "5daf81c415919b2231e7194fa51e7f25", "notes": [], "params": { "forceDirect": false, @@ -26468,7 +26618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffd06f2ce60130b5b4ca8fa30ca299e5", + "key": "3309b2b87d885a9f08690bd3b707132c", "notes": [], "params": { "forceDirect": true, @@ -26501,7 +26651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "800491b3b734a63b76b06aecc8ea3674", + "key": "a4ee6e71cfc18efaf5a864135e4b37f8", "notes": [], "params": { "correctionVolume": -0.40625, @@ -26520,7 +26670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c14d1fcb5f0ce3d915d3239e961c143", + "key": "767ad419462a79fe28e9b3a069702e09", "notes": [], "params": { "seconds": 0.2 @@ -26534,7 +26684,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3d03687d44f45111f162157fcaae0f6", + "key": "55dfad7f25c7c84eaa850727ca3c35b7", "notes": [], "params": { "forceDirect": true, @@ -26567,7 +26717,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d8abf24312f3b8b646f134c4423d66fd", + "key": "17b7114f081b0da2cfc1e1e1b0e38266", "notes": [], "params": { "seconds": 0.5 @@ -26581,7 +26731,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "444c6076c1e095c99ea041272c8f6b3f", + "key": "0c68cc97666048c751e5c39c0947786d", "notes": [], "params": { "correctionVolume": -0.44375, @@ -26600,7 +26750,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd15bde53cdc8c1510ab2e196703f846", + "key": "a1e3e753821d5f1f2ad2d5d35331d5e4", "notes": [], "params": { "seconds": 0.2 @@ -26614,7 +26764,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a9b0e97064c93c11e144687c0543b62", + "key": "b7e7cc38fc8c0b82341a56f14a8fd5e4", "notes": [], "params": { "forceDirect": false, @@ -26646,7 +26796,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "874a98edc6e7fbfb95168737a79c330f", + "key": "b7ac92248c0c24a50a309e37ee51a6b3", "notes": [], "params": { "correctionVolume": -0.40625, @@ -26666,7 +26816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1dd2d1ee9d0ca69987e1bfe447319063", + "key": "d9f7e46ab60c8de537c42e4907c038a2", "notes": [], "params": { "seconds": 0.2 @@ -26680,7 +26830,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9ff94e2ecfe00b9263100abd534de40", + "key": "29dd1b38b73c53ab82625607754d9ac6", "notes": [], "params": { "forceDirect": true, @@ -26713,7 +26863,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "019766aef7c73fb44ea9d301446af585", + "key": "dd2a39d05d0c08406640c8a4294b30fb", "notes": [], "params": { "correctionVolume": 0.0, @@ -26733,7 +26883,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a21e4cdd369e80d14fbb0db67221fd9", + "key": "4e5d90ccd2a86a5719fbd1e7c2650164", "notes": [], "params": { "seconds": 0.2 @@ -26747,7 +26897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae8b2413f8d628ce23de162d7ddde904", + "key": "5a7bd4e820dcb761cbb8e18199cfb227", "notes": [], "params": { "forceDirect": true, @@ -26780,7 +26930,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f1a37a92b030aaf3b604ceeeb0f370ef", + "key": "b384010c3e1426795f6f81766a0fbcd1", "notes": [], "params": { "seconds": 0.5 @@ -26794,7 +26944,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "570d57aa592ec0c7a9a8705b954018cf", + "key": "49746c1c977b322f7c48c8668b37886d", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -26813,7 +26963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0ace25c5726ec1a251afebaa6ffc3c1", + "key": "759d29835949bad12c745dcb9ae50904", "notes": [], "params": { "seconds": 0.2 @@ -26827,7 +26977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8823a707d97a1b72ac3a599fd61f624", + "key": "3f12d79439fd71463efa8f9606d0450d", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -26856,7 +27006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b251083f34efdffb59554cc9ad8dee00", + "key": "ea291ad1c3879b1d4a26a494edadd04b", "notes": [], "params": { "homeAfter": false, @@ -26871,7 +27021,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edc924e83e603785c16156957091a5e8", + "key": "1aae0190621732072cfa1f034b395cbc", "notes": [], "params": { "liquidClassRecord": { @@ -27246,7 +27396,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcbbf63ed103ab5c6e88886d15b65031", + "key": "ae19e3e6c73b1f891974192690cafb60", "notes": [], "params": { "labwareIds": [ @@ -27268,7 +27418,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c335c880d397fb4e139cbe31d9fbe07", + "key": "2072b1767d8c6b19c9b02d4b52a543b7", "notes": [], "params": { "labwareId": "UUID", @@ -27301,7 +27451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d8af0f13be344f4d919263b4582419e", + "key": "e9f6ec78debf7335c35fe3f04d7a95ff", "notes": [], "params": { "forceDirect": false, @@ -27333,7 +27483,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dfdff12ac6c0cf47dbafdf063c20e07", + "key": "18fb891bb39dd70d6f3bed799e7142cf", "notes": [], "params": { "pipetteId": "UUID", @@ -27349,7 +27499,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e9ebcd8ff24dbd9583bad9bb9a4bbef", + "key": "b32a45707137641953bd2ed0cc497f28", "notes": [], "params": { "pipetteId": "UUID" @@ -27363,7 +27513,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37a2539c8beb854b97a8bb3dfe430bcd", + "key": "7b73b37833bf985da10c29d016fcd4e1", "notes": [], "params": { "forceDirect": false, @@ -27395,7 +27545,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c71a5b77202724aa6af90d23a3066c1", + "key": "5c04d58d29933996efd388c09df8c9f5", "notes": [], "params": { "forceDirect": true, @@ -27428,7 +27578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b0a1296daa1c13dc71b43455eae3c35", + "key": "9d70ec5abe30561e4c92f425d51e346c", "notes": [], "params": { "correctionVolume": -0.10625000000000004, @@ -27447,7 +27597,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef0cf036f6bc1056c3191bb1445a3710", + "key": "e07af10841d3e08eda458f4dad0dd1de", "notes": [], "params": { "seconds": 1.0 @@ -27461,7 +27611,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c9fb2d72dae22bca6cfab5ab6330b15", + "key": "c8675e84c2e9e64cac4f557c36cbea67", "notes": [], "params": { "forceDirect": true, @@ -27494,7 +27644,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a6ba4cd0d73e3e40a2b3361721796a4", + "key": "3c256c70acdaef3af392bab61bc6ba36", "notes": [], "params": { "forceDirect": false, @@ -27526,7 +27676,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "51966c480614fe9065a7b42f85eea3f9", + "key": "8de9af58e5a1d8e50cec940f51dfd7bc", "notes": [], "params": { "forceDirect": true, @@ -27559,7 +27709,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b200ff9c76b1c845fb7ef1772fea381", + "key": "265042c473b87075343e5ef7681cdd56", "notes": [], "params": { "correctionVolume": 0.0, @@ -27579,7 +27729,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fbd6f58826b6c94224ffa8cb3047d8a1", + "key": "f1f72472041e756155f62230c66d2be7", "notes": [], "params": { "seconds": 0.5 @@ -27593,7 +27743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8df94b23ad492f67806e02477ffcb4b4", + "key": "d81df88c2d9d3f8eb06dee5837caee28", "notes": [], "params": { "forceDirect": true, @@ -27626,7 +27776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c3b5562ff8fd316e8ec1dc36c83d2c0", + "key": "928b608d627324b5de6729f131db8740", "notes": [], "params": { "pipetteId": "UUID" @@ -27640,7 +27790,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e4779f8c213984a01f1b239d27eb52e", + "key": "22d2bfa766bbb8d17510e1d5d847828a", "notes": [], "params": { "forceDirect": false, @@ -27672,7 +27822,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b767dab521b9b040b9040893d9c98ecb", + "key": "c9e78473dfab8c969f66ef38fd5f2b4e", "notes": [], "params": { "pipetteId": "UUID", @@ -27688,7 +27838,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "56ef52f8814af8e0318f1d7b38ddad87", + "key": "c19eb2834e87f7e716c6cdd6229d2ab3", "notes": [], "params": { "pipetteId": "UUID" @@ -27702,7 +27852,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa1c6e76201b9db5ab49e93cc1433247", + "key": "66e1fb10c43a68177d87c8923e7997a4", "notes": [], "params": { "forceDirect": false, @@ -27734,7 +27884,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "451ae0fb62ee2b8e6c1ad85c34ddb75b", + "key": "a5aa36492b1ac5ef2e88083aa3532ebf", "notes": [], "params": { "forceDirect": true, @@ -27767,7 +27917,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3899e5bbf4f39570bf4ea05b6691507", + "key": "0d12214862af0be07032d0b64db89adf", "notes": [], "params": { "correctionVolume": -0.10625000000000004, @@ -27786,7 +27936,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d387af817abe224bc32f3ac9ab4b5ba9", + "key": "466ece4c547c67b9c042e56313c6d345", "notes": [], "params": { "seconds": 1.0 @@ -27800,7 +27950,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ad24ac3339034016ea7cf4a1e86b831", + "key": "c401e6d11d64ad0395b3d3d8521314a7", "notes": [], "params": { "forceDirect": true, @@ -27833,7 +27983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a288f0ce364117ea4545c9e5a5c89de", + "key": "87e1fe45b7835cc80d1b6e92489e8126", "notes": [], "params": { "forceDirect": false, @@ -27865,7 +28015,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "834bfaae0b10d13ea1653f3fb32371cc", + "key": "a490aaecb1503905524d353a9d6a6c28", "notes": [], "params": { "forceDirect": true, @@ -27898,7 +28048,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ba617b7ff3f00da52695008644f8667", + "key": "f7c23105c35f9f4165979eaca4896ff7", "notes": [], "params": { "correctionVolume": 0.0, @@ -27918,7 +28068,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f56dbe674ee1e49e4739bb570dd93e4", + "key": "8a3d18baea20a21cc6e8bd8915f32d3e", "notes": [], "params": { "seconds": 0.5 @@ -27932,7 +28082,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60dc693b4160d034e212d412b683257a", + "key": "44f0fb938c48d3c0450451e82896df8e", "notes": [], "params": { "forceDirect": true, @@ -27965,7 +28115,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ced673dcf4a58a5ad4a46aa4d0d3f5a6", + "key": "e86f4623865940e701f997d62c10a353", "notes": [], "params": { "pipetteId": "UUID" @@ -27979,7 +28129,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74b2673630ef9d8bebd326d462922f86", + "key": "0478775d22743187b3b30a7296f818d9", "notes": [], "params": { "forceDirect": false, @@ -28011,7 +28161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28af22652de0b1cdc37b84a2b009eb99", + "key": "ed0cd296b4296f3595b54990451ce502", "notes": [], "params": { "pipetteId": "UUID", @@ -28027,7 +28177,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6685b5a796c96382df3fc6790805a891", + "key": "4464fd5f1bb8f7ab435bb3dfc83f9fa7", "notes": [], "params": { "pipetteId": "UUID" @@ -28041,7 +28191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fa6fc4ee8e3c59ec86dd92996cf1cbb", + "key": "c0c98f5d1efd8f00c63f8ef01e4fec4b", "notes": [], "params": { "forceDirect": false, @@ -28073,7 +28223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d2bb98740df80091fc6ce7079f2653f", + "key": "f38d980c2e915054b9085f2f24290571", "notes": [], "params": { "forceDirect": true, @@ -28106,7 +28256,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a2c634c30d3be9fce4d90e08c802e56", + "key": "6661e7585ae779070120f327bcab5434", "notes": [], "params": { "correctionVolume": -0.10625000000000004, @@ -28125,7 +28275,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dabe77dc8fce0ea4982d9e06bba3de63", + "key": "15b5e5c3b2eca2c9cbb08101633e07f0", "notes": [], "params": { "seconds": 1.0 @@ -28139,7 +28289,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "832d8e9c66b30aeb7db760dd96ca9159", + "key": "920bbc79325c207cdc7f9cc887a19d68", "notes": [], "params": { "forceDirect": true, @@ -28172,7 +28322,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a62d2948a2b741f0bf003b81c927de1", + "key": "4bbc453cf235e034362f0451999c55cb", "notes": [], "params": { "forceDirect": false, @@ -28204,7 +28354,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79a684a97065726ff57383e905f3b5d2", + "key": "4ebab340fa66a553b17b1784c9a2190d", "notes": [], "params": { "forceDirect": true, @@ -28237,7 +28387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "adb9bd41e76e87ed0c90ff5d5607d4fd", + "key": "57f2f1b736aecef599154993a08c90ea", "notes": [], "params": { "correctionVolume": 0.0, @@ -28257,7 +28407,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54810e4dce2476d46cec334209174b3f", + "key": "c450ed3fceeeb4672ce5c7eb40716951", "notes": [], "params": { "seconds": 0.5 @@ -28271,7 +28421,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9945b08bda49f680fb4d39e02d386ba", + "key": "8b3e82755a4ce27620dfb109680f4dcb", "notes": [], "params": { "forceDirect": true, @@ -28304,7 +28454,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6323c3eff5cd98fcba9967d95f20f91", + "key": "8f9c7aad5a430be9c4278799b9a9cda5", "notes": [], "params": { "pipetteId": "UUID" @@ -28318,7 +28468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c0806285a9ced98015b206003c81228", + "key": "c262b8b975fb5a3c802b4d0ecae31ed7", "notes": [], "params": { "forceDirect": false, @@ -28350,7 +28500,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d26123e29748ef179374f4b4cdd2de0", + "key": "1d4243c0290e7dc513819c3a95d92975", "notes": [], "params": { "pipetteId": "UUID", @@ -28366,7 +28516,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e7f29243661ca589a3ece1da0225db18", + "key": "0f0a33afe009610c7e0ff0f63d1e673e", "notes": [], "params": { "pipetteId": "UUID" @@ -28380,7 +28530,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae9db9fc43b70205a07e9c5a9e2123c0", + "key": "fdcea06324324f5775813a3e3b2b0e4a", "notes": [], "params": { "forceDirect": false, @@ -28412,7 +28562,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73ff2878a12485bdffa16128001646e0", + "key": "c40b937c677f88f4f5eacc967a993592", "notes": [], "params": { "forceDirect": true, @@ -28445,7 +28595,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "baf59dc128b603de8f3780142d7c2308", + "key": "55619c2fb081b1bb1a561db427fc5785", "notes": [], "params": { "correctionVolume": -0.10625000000000004, @@ -28464,7 +28614,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3491c213b8a648412197d4e91d46c9b2", + "key": "a1db46088417bcae4d02366a98b78426", "notes": [], "params": { "seconds": 1.0 @@ -28478,7 +28628,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f726b1df625c1738edaf4e10bc5ed73f", + "key": "d3a266497eb8a81ffa17b2669e29c1ad", "notes": [], "params": { "forceDirect": true, @@ -28511,7 +28661,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "522358b1aac72688fcc1b3c9230d903b", + "key": "5c4a244351f0d9156ae611386b5a4f2f", "notes": [], "params": { "forceDirect": false, @@ -28543,7 +28693,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70e231c73f6332d756bce0346ba32925", + "key": "d8de982edb2bbbfadbadcb6f242896c6", "notes": [], "params": { "forceDirect": true, @@ -28576,7 +28726,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25d734a5bc11fb8a90e6b186e108662c", + "key": "f01093ce64e0b8c9b34c8623f1598aca", "notes": [], "params": { "correctionVolume": 0.0, @@ -28596,7 +28746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04869d14064b48461f93ef0b92a95ea7", + "key": "069f6f886975849127b0f095046086ef", "notes": [], "params": { "seconds": 0.5 @@ -28610,7 +28760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85dcb33297c74c82eb6dba9cf97aed7a", + "key": "c6c17c1a393295e78fa95eff1c290e6c", "notes": [], "params": { "forceDirect": true, @@ -28643,7 +28793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34ce39f7236539da0eb06b7c03678244", + "key": "c7d40501c40baca3c3a7adf0ca78c1ac", "notes": [], "params": { "pipetteId": "UUID" @@ -28657,7 +28807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49e2b1563549cc345f51bfc08b92b316", + "key": "55f0e3fb10f846e5b2f0c9b03b57aced", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -28686,7 +28836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f54e55a3799eb1bdee15ee6145e93b5", + "key": "a4c49134141d8cefab7750154cab744d", "notes": [], "params": { "homeAfter": false, @@ -28701,7 +28851,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2d984277e495dd52d71eed21c656046", + "key": "6613df0e32cd6dc1c398f51aa77d048f", "notes": [], "params": { "liquidClassRecord": { @@ -28723,7 +28873,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -28755,11 +28905,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -28794,7 +28944,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -28944,7 +29094,7 @@ "delay": { "enable": false, "params": { - "duration": 0.0 + "duration": 0.5 } }, "dispensePosition": { @@ -28979,7 +29129,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -28989,18 +29139,18 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { - "flowRate": 478.0, + "flowRate": 318.0, "location": "destination" } }, @@ -29035,7 +29185,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -29060,7 +29210,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1cb11a2bb2d4e055974ef0b849a7b39", + "key": "5d73e858321c8e194819fa35bec41b57", "notes": [], "params": { "labwareIds": [ @@ -29082,7 +29232,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "815e977050199313a23bd4499dd1e6b5", + "key": "885636feba399e1da08266e190643c69", "notes": [], "params": { "labwareId": "UUID", @@ -29115,7 +29265,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9310b58f580f44a5479750f5860f3593", + "key": "b67d0d90d2395ebdfe0f72019536bc7a", "notes": [], "params": { "forceDirect": false, @@ -29147,7 +29297,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9da6a5b36eef54b4ee852e12febc5414", + "key": "34993ec7a1ee76bbcb424893abd0a6bd", "notes": [], "params": { "pipetteId": "UUID", @@ -29163,7 +29313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "874aa8cb7a231c78b2d40055226b4642", + "key": "599fb6a96524587555dd2f211a3410dc", "notes": [], "params": { "pipetteId": "UUID" @@ -29177,7 +29327,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ced6f373ac5d02a16ddfaa47beac5e8e", + "key": "b26899a857f21758e0e1df82bfc64bf9", "notes": [], "params": { "forceDirect": false, @@ -29209,13 +29359,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d927810237c67e071052c4a90f2af6fe", + "key": "bf22c76540a2231c90c0824b0ecf08ea", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -29242,7 +29392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e41072834964acee68f769420e1e3cc5", + "key": "b40cfda71581e5a84e07fb0fc2ed0489", "notes": [], "params": { "correctionVolume": 0.0, @@ -29261,10 +29411,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5a5457e7b250ff2d17de41d3e5ed178", + "key": "547c704401489086b80f1013b7864aab", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29275,7 +29425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db3b6aa5824d663d385381f642171465", + "key": "24600087355f734c7ebcce86744a6ff4", "notes": [], "params": { "forceDirect": true, @@ -29308,16 +29458,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a965d415191daa9387fd8e3daef9817d", + "key": "8e9f2bedde3f1de98ba41080c859d3cd", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29327,10 +29477,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c43bd98ef5ac6455b64b401e2569d51", + "key": "16a3f24962518c07a4c16f634a621b2e", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29341,7 +29491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ffe254cfc08246024256cfa3944ade4", + "key": "be5dc595d1d523b4ad7e65e43177c42e", "notes": [], "params": { "forceDirect": false, @@ -29373,17 +29523,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0340b8ff05a30e7f1c2e59bd1379672b", + "key": "759a6aa9267124e44937ad92d9620df8", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29393,13 +29543,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86f4323a04c8806c274d6b687366c082", + "key": "0f8018016534f9d9295ad5fe37f1ff7a", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -29426,13 +29576,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1eb7cbe53fb58f3450ff80f8e46f31d6", + "key": "d3e9d490eb409bc0b3665057e853d875", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 37.5 }, "result": { @@ -29446,7 +29596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1908ef7dc99c0adebc2f30de754449c", + "key": "15677453c55d08144d6ebface4e320cf", "notes": [], "params": { "forceDirect": true, @@ -29474,12 +29624,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec2b682022d0bac522d091741921d383", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9312a1b4a0497eb48ad863d41d901e22", + "key": "792d1b494da18fc1f70474f3d291bf72", "notes": [], "params": { "pipetteId": "UUID" @@ -29493,16 +29658,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "151bbde85680fef4281c4e0f5fc30da7", + "key": "6c6fb8b66a65b2b01ec7d052bd0d052d", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29512,10 +29677,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "713d39f987c12faa5b1c9e02b00f0c1f", + "key": "31baa9cd3b12a5135cf83480ccd3d898", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29526,7 +29691,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c75d21f36013b17d503fb316ae65c6e", + "key": "1cb8064b89f87652e6cf45d038c7a94e", "notes": [], "params": { "forceDirect": false, @@ -29558,17 +29723,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "925f7167762f4f862664078cfa445a0f", + "key": "f5a7f45629b78f6f57df67b3aeb3a630", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29578,7 +29743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07d220b85b499db5fb91896981ae7877", + "key": "86ae1926c6b13128d1a64ceb3a2a0f48", "notes": [], "params": { "pipetteId": "UUID", @@ -29594,7 +29759,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43f1f3025a7098843968229e4c2991c5", + "key": "2ac1a5996a57bf9674e35c09e9371368", "notes": [], "params": { "pipetteId": "UUID" @@ -29608,7 +29773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7037b21a347828fc5cbf7d325a24e305", + "key": "8bbe34f2a769ffadb041bb105f54e3e7", "notes": [], "params": { "forceDirect": false, @@ -29640,13 +29805,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3dd7aed6e35fb7c31945facbf1abf59", + "key": "3617784939c0bb85c3abc953cf2b70b1", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -29673,7 +29838,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2c97903a60b3b5410f683591c185452", + "key": "7a5ae58e46193fa0c44c93d8581c0911", "notes": [], "params": { "correctionVolume": 0.0, @@ -29692,10 +29857,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df9171eb7e4908991df1b6bab812b479", + "key": "8e36f5e03ae4696b762acdcf69478eaf", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29706,7 +29871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e83cb105b2b1b5d79b3a193d8d18c34f", + "key": "eeb25aa662a0a2f425fbc42a86bd2832", "notes": [], "params": { "forceDirect": true, @@ -29739,16 +29904,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23ea6e1522443ffd1d2bf37c68f80278", + "key": "fa144a52017c1576bd0640de2d670b4a", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29758,10 +29923,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "908b4eeae59be9ed6f457da2f734e224", + "key": "028002e7c160a1fa537823700060263b", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29772,7 +29937,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "68b2acf04b744d6fed38ae3c28335862", + "key": "acfbb202bcd0b1f08bc7ef91425e2c7b", "notes": [], "params": { "forceDirect": false, @@ -29804,17 +29969,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b59f16de4ef63c5bbfb4cd473e31415", + "key": "e9e0ebc7f0549c03e8592d665b828c7b", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29824,13 +29989,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80656d7f69a4b401ca5c9b9d5914813d", + "key": "5a5b1136c64374368bc708406597759c", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -29857,13 +30022,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef984f609f69611ed3a44fed744aa119", + "key": "5ac4d8057c62fd4a65c30533abb38bd2", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 37.5 }, "result": { @@ -29877,7 +30042,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b59cc3e49bb446b6546c49c6ce547f9", + "key": "04750f0e564c88404848573c191da32c", "notes": [], "params": { "forceDirect": true, @@ -29905,12 +30070,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d5148d91b817b072f6651e8d8b62cff", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c7f79505f7f56ad31f73f6b71da2ce9", + "key": "a4973fe9a97a88cc28b64ae32a947640", "notes": [], "params": { "pipetteId": "UUID" @@ -29924,16 +30104,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0e5dd8c8d962df436c73879f2bfe162", + "key": "807133e939984ad6a03f8c8d32b6d580", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29943,10 +30123,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e75892e92e237bba944ac875932752e6", + "key": "1e440767ca9df14ddde3c1e1428562c3", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29957,7 +30137,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0d25810e2890fca1b7a0b2b982427e8", + "key": "9693f7820f4ed5310304a9d65df99b49", "notes": [], "params": { "forceDirect": false, @@ -29989,17 +30169,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07087a6195538bf2c052a9fcbd7c5540", + "key": "626f99b84a835299182272416aa9838b", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30009,7 +30189,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffd242052897f4a87a9734feef6a0fa2", + "key": "c6b821ab7c267994b9aa86a168b10739", "notes": [], "params": { "pipetteId": "UUID", @@ -30025,7 +30205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6323b03dbfa03861c721280d66516def", + "key": "412525c0006fb901ad13c86cc531dab0", "notes": [], "params": { "pipetteId": "UUID" @@ -30039,7 +30219,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c65e5756395e72554d455af81ec1046", + "key": "ede78148182785a7438c8b5e34f97b36", "notes": [], "params": { "forceDirect": false, @@ -30071,13 +30251,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0238d2c21ba2d8d889cda1349c1c5db", + "key": "045595c318090cafa63adf031e2b4542", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -30104,7 +30284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e12fc194e3a2904e778845c16223dd55", + "key": "0b174ed20c81a7166103e618a096843d", "notes": [], "params": { "correctionVolume": 0.0, @@ -30123,10 +30303,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77104e8f80208e85262c0fb56c02fa42", + "key": "dc8daec5ad7420d8fad0ba4f0dbb78ad", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30137,7 +30317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "145e8cafc6ba37b9ee0ef988c6ce4637", + "key": "352a0a90822bf31143896abe19226f9a", "notes": [], "params": { "forceDirect": true, @@ -30170,16 +30350,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b76e3ff73350296508cdf8e73940f89a", + "key": "444c74cdb7c993af5b8ea347ac3dd527", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30189,10 +30369,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7871af47bda1fbf7f7bc7c95e781bb1f", + "key": "3c64bd30442c1eff96313170bce5e2c7", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30203,7 +30383,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "779974e3a810b35d5bf477a3f3009d38", + "key": "3b795184ffa030395d151283417f1a1f", "notes": [], "params": { "forceDirect": false, @@ -30235,17 +30415,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab401899df95588ff90d507464ff47e1", + "key": "26dbafd02eb8307247a83e1d821c2592", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30255,13 +30435,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89bd2b28d5ec6c40b2d3860d0a0875c4", + "key": "e3f7d7f3e0d1a4491afe1f37c36fa350", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -30288,13 +30468,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74471203d0e21489cd0a438cb3170dda", + "key": "a35cd21688a1b61046d7de21dbac840e", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 37.5 }, "result": { @@ -30308,7 +30488,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "76bd822600acbbb7411195021f4aa449", + "key": "df70790565be1fb11d883157e81d82d7", "notes": [], "params": { "forceDirect": true, @@ -30336,12 +30516,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d83b011a168a43c2e33c06d0eeb9156a", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7c856fe1c2c27168311d6289fb2905d", + "key": "b6b9e889cabd24f56203532bee8c2351", "notes": [], "params": { "pipetteId": "UUID" @@ -30355,16 +30550,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e990ed70dcb7387815ebde1d95043d6", + "key": "77465be7ba32c3eef8b5c8ef4c08e840", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30374,10 +30569,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9cff31f50a83104722bbcfba201dd99c", + "key": "c8989f13d84708958e8f3dd579f79148", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30388,7 +30583,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b809f9ac1f6633c8ed8f1e7248a1f88", + "key": "f319484f4efe772f1ee5b8838e93e869", "notes": [], "params": { "forceDirect": false, @@ -30420,17 +30615,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5588457c2ecc6fe1bbe662a64d8aa27", + "key": "8eaaec7273963862ddad15c1898f161a", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30440,7 +30635,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f90bef0f0e5b52a5e30126aa181043d", + "key": "4a093f038cbe672092349f6e225d03ca", "notes": [], "params": { "pipetteId": "UUID", @@ -30456,7 +30651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37de1fd599f5c8d37e0c7a12136a477f", + "key": "f94d81f3e16ea0b01f77cc7bc9ff7049", "notes": [], "params": { "pipetteId": "UUID" @@ -30470,7 +30665,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "38cf23029ecaeaeb6d31573595512cd8", + "key": "144af14f7bd1444fd431f58f92879eb6", "notes": [], "params": { "forceDirect": false, @@ -30502,13 +30697,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13c78c8a42d0491a6c9c8a55797c4c2b", + "key": "568c8ee0d39bea5e7ec74a56b88fa605", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -30535,7 +30730,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60c46aa450caf7fab59161ec068b462a", + "key": "5b402b9e9129b87d32a46ef12c5f2b41", "notes": [], "params": { "correctionVolume": 0.0, @@ -30554,10 +30749,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46becdf2a9e37ee573ac060b63a70999", + "key": "8a0585054d7cb4d732814dd05fae3bf0", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30568,7 +30763,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb9ecfcc04e9755b183138f285de3c1a", + "key": "7087102dae6b7cfc4b517af1b4601099", "notes": [], "params": { "forceDirect": true, @@ -30601,16 +30796,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33d356db651efd8d89960a947fad5661", + "key": "c66ead1a4452ef4148cc8d4deb0da436", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30620,10 +30815,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "35a82f7f876208521224052c6fcf13fb", + "key": "6b01e88a8d94f3d4d5a2208402f00332", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30634,7 +30829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd029c04e964ab33944f4793e0e019c4", + "key": "b09f571770d57b39d4a7378ca5e1f77c", "notes": [], "params": { "forceDirect": false, @@ -30666,17 +30861,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85909352532f795437fb7af6904ea6e8", + "key": "2725c8dbaed9b2f90fc572d2e20769b9", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30686,13 +30881,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3bef2ee1437c7b3f4447c7ec19f6bb8f", + "key": "c79f932696dfdcdf415c008f272706a7", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -30719,13 +30914,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3325924dbd79052d47660861ab0b966a", + "key": "6955fdeaeafbd40f9304982358902337", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 37.5 }, "result": { @@ -30739,7 +30934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7272513704e9a2c48e42c53bc53eaac2", + "key": "efd73dc0229bb4b421d6c7760f67dd56", "notes": [], "params": { "forceDirect": true, @@ -30767,12 +30962,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80b59190cb915023971e03464efe996a", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "270f302b9378d0ad7e019c8155ecd023", + "key": "309c6fa55b0d90e5676c0fe56861dcd6", "notes": [], "params": { "pipetteId": "UUID" @@ -30786,16 +30996,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dbf215aec333a2b83c5b9f069904952", + "key": "31e2296c63212b12b9164e1f47823365", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30805,10 +31015,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc86b2b0bfcb7999caa4ff1f8ed82227", + "key": "fab19fa0ecf3ff1846d020148f508aa8", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30819,7 +31029,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b8e8c376e6605bb4d13c28a69bb4b2bf", + "key": "ce6200bf9723f68ed2b2f31005b15a5b", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -30848,7 +31058,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b563f007fa3e4540192ca9bc7f6928ea", + "key": "1050368483f25405a2a978919b8b4e8a", "notes": [], "params": { "homeAfter": false, @@ -30863,7 +31073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c585db8f50fd6bd3b01a6dc90567b3ef", + "key": "90b15b9cff9c4f5cf09ad0bd683a706e", "notes": [], "params": { "liquidClassRecord": { @@ -31262,7 +31472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5832dba7c1346bb5e00edff68b4e5e12", + "key": "21d57dfbe64180b6baff49062fe541e2", "notes": [], "params": { "labwareIds": [ @@ -31284,7 +31494,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff16d28a5f56adca5ecb4151ac2f0c62", + "key": "4c9797e68be6ac6144ba688e0bed6a79", "notes": [], "params": { "labwareId": "UUID", @@ -31317,7 +31527,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a24e716789df00f5143d4df986b32a8", + "key": "7c17fd7d6e119114712f6869da6b41d1", "notes": [], "params": { "forceDirect": false, @@ -31349,7 +31559,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97043f3f7293118854630bcc315d4edf", + "key": "298bf0bcebfd7241e970328bcdf449da", "notes": [], "params": { "pipetteId": "UUID", @@ -31365,7 +31575,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "167dea1e15772e65a01a639637ab7f6f", + "key": "939b0ccbe54cc081620af4445a0b5308", "notes": [], "params": { "pipetteId": "UUID" @@ -31379,7 +31589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d42fed1e66de1cf1d28a87df12ce053", + "key": "5d58b112ec52b22084fbd580c8576512", "notes": [], "params": { "forceDirect": false, @@ -31411,7 +31621,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c209b902e196eed2429c478d1f7c7c9c", + "key": "8ffec4d7e143ba4245b862b67157542f", "notes": [], "params": { "forceDirect": true, @@ -31444,7 +31654,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "282e46aa96ce9113679c217336ade081", + "key": "e547a6f6a37bd410653ad093826779d9", "notes": [], "params": { "correctionVolume": -1.1125, @@ -31463,7 +31673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c22b87871a2191f62cb9a2a993bdd05b", + "key": "5236f313a42e2ae1c40c0f21ac7ce292", "notes": [], "params": { "seconds": 0.2 @@ -31477,7 +31687,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57496e56c70bdae8a12035450ebac176", + "key": "805e3bff83c3cfcc5c20d8932b37f6a2", "notes": [], "params": { "forceDirect": true, @@ -31510,7 +31720,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a841bd9021ed00daa8b1212345eb4ef6", + "key": "102f412074255b41bb049ca00183f19d", "notes": [], "params": { "seconds": 0.5 @@ -31524,7 +31734,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb23ab70b12960c4080dc554305e1d84", + "key": "268296d887eabb3980624e516862ab15", "notes": [], "params": { "correctionVolume": -1.1875, @@ -31543,7 +31753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0978a1ddd55d1084a283a2d142db1e3", + "key": "3b37d556af31182ab66171d7f28d450a", "notes": [], "params": { "seconds": 0.2 @@ -31557,7 +31767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55b0e082658d23c89724590392a31315", + "key": "3f949c1fd9cfe12abb5a7dbb2633131c", "notes": [], "params": { "forceDirect": false, @@ -31589,7 +31799,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "de24301bfe3f78a7194e4a93129978db", + "key": "d33d23aa314d1d8f21e8bf7654897b4b", "notes": [], "params": { "correctionVolume": -1.1125, @@ -31609,7 +31819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1c9ebcdb03a3a94aff22e782120caf4", + "key": "d9c1381a2a5046f7d4c41ba7e5a357aa", "notes": [], "params": { "seconds": 2.0 @@ -31623,7 +31833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a353c078f3fe59cb36f5035e04bce64", + "key": "67b692c09c115f02db6e16247d00cbff", "notes": [], "params": { "forceDirect": true, @@ -31656,7 +31866,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "787b06ea6d204fdc44d7de1ff67e9ef8", + "key": "318af03e65448ff1756da7e71b097b2b", "notes": [], "params": { "correctionVolume": 0.0, @@ -31676,7 +31886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4af1fd462512542a6021bb8c1f07b598", + "key": "53bd8623c1ac77344aab5726ac0add23", "notes": [], "params": { "seconds": 2.0 @@ -31690,7 +31900,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5806f0bce9abee867ceb79d9cad51df", + "key": "f864d496c4f41782dbfaf08d87c130c8", "notes": [], "params": { "forceDirect": true, @@ -31723,7 +31933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1fe77afe41641aa65fc26506b9108a3", + "key": "fbc0a72cf3578c4090b34b4dd9cf600c", "notes": [], "params": { "seconds": 0.5 @@ -31737,7 +31947,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27cabb796a776ed7d957836cfe332b2f", + "key": "23024c557dd799c5b39de626e4380d15", "notes": [], "params": { "correctionVolume": -0.75, @@ -31756,7 +31966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5298e6badd933ebfa27ecb8c8a62cf4d", + "key": "3d8f2ad5d037aa03f16f9ce60d08dbb0", "notes": [], "params": { "seconds": 0.2 @@ -31770,7 +31980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94d9856c1d582ebcc17f859726cad0e9", + "key": "a6c91432fbbaa000489c279f0f1be7a7", "notes": [], "params": { "forceDirect": false, @@ -31802,7 +32012,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0987ffd836dc0e2fedd4c34ddaa859c6", + "key": "298c25ae644ab61fd7b5983188fdc3c9", "notes": [], "params": { "correctionVolume": 0.0, @@ -31822,7 +32032,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28dafeac643afd04a3d859e5ac1bc12c", + "key": "76c50366f1744a9adf31f64de7ffedb8", "notes": [], "params": { "seconds": 2.0 @@ -31836,7 +32046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ed06c477885c09df11aa4b2f6265884", + "key": "9b75be9f2d9e03ca1acebce8648ae2aa", "notes": [], "params": { "pipetteId": "UUID", @@ -31852,7 +32062,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70cdc13e6dcfd0216658f29edd2178a8", + "key": "bf7be79fe6b2d63de343f07849efdd77", "notes": [], "params": { "pipetteId": "UUID" @@ -31866,7 +32076,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e04eb83741c1ea7ed730c3ec396e74ef", + "key": "88e1f9c888e3e8a41e862c5d67488037", "notes": [], "params": { "forceDirect": false, @@ -31898,7 +32108,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7b8f7db193ed64656c1aaefcccf8185", + "key": "c72d5db646a393a9e83ebbe1388f4351", "notes": [], "params": { "forceDirect": true, @@ -31931,7 +32141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d6a206613dd8042d67888475b490ea4", + "key": "229d0616be66099d460d7bfb9ef8f02e", "notes": [], "params": { "correctionVolume": -1.1125, @@ -31950,7 +32160,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b96930ae1960e6ed3ad3f7ccaeb111c5", + "key": "030e53d42ece9aaa070a219a83d94bd2", "notes": [], "params": { "seconds": 0.2 @@ -31964,7 +32174,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "191dc754a289d7476336cf5be82ab3d1", + "key": "0400c21ed6f781a35ee4f0884135e64f", "notes": [], "params": { "forceDirect": true, @@ -31997,7 +32207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10ddab354852204a1f0e4d803ca7f87c", + "key": "378c7669740d846f37d90fda248ee2f3", "notes": [], "params": { "seconds": 0.5 @@ -32011,7 +32221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5e1c5374098af72ee1f31277f4b2dde", + "key": "23efe58cc85bd04fd402ce41fb4ce5dd", "notes": [], "params": { "correctionVolume": -1.1875, @@ -32030,7 +32240,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "044415d4d331ac2827b253fa31f85d7e", + "key": "61b18d52b981e0a1e8e6be1ef86d2cb9", "notes": [], "params": { "seconds": 0.2 @@ -32044,7 +32254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9017db3a9285e406a1813a51f72c982f", + "key": "3d2964c2b6eea449ed74d2492994f015", "notes": [], "params": { "forceDirect": false, @@ -32076,7 +32286,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b9ea667398960351f718ff076d9d213", + "key": "efd11f21f98ae218b2d0a92b8f09a229", "notes": [], "params": { "correctionVolume": -1.1125, @@ -32096,7 +32306,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bebb579572a33ddea269915c899fc169", + "key": "d53cec0da8d1edfd3cd4ec3b7c5ebfce", "notes": [], "params": { "seconds": 2.0 @@ -32110,7 +32320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80b2394bdfcdced247382df1e5b0a900", + "key": "716ddafa845f9bd39e11f01bf25db2a2", "notes": [], "params": { "forceDirect": true, @@ -32143,7 +32353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9f5a9d481c9d01ce1d85b35e64bb203", + "key": "e3e78dd3835ef919e4d3b365c0bed749", "notes": [], "params": { "correctionVolume": 0.0, @@ -32163,7 +32373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "06ce0e517bff267ecb333c8bfa6ef38b", + "key": "2de3cf83b34f40ec25a44a8c9ab1e778", "notes": [], "params": { "seconds": 2.0 @@ -32177,7 +32387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29be12be64538b2dab0d3ed94469ab1b", + "key": "8f9556b2c77065c6f68ca1501e9fd63b", "notes": [], "params": { "forceDirect": true, @@ -32210,7 +32420,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d23d6146050bb3ddceac234e2b7157e4", + "key": "73fe28e0959ec6be546451e1072de022", "notes": [], "params": { "seconds": 0.5 @@ -32224,7 +32434,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59f7dd17bc59d8fbed3fc6503b6e92d8", + "key": "c5f901cc3b1dcd229338440f305f1398", "notes": [], "params": { "correctionVolume": -0.75, @@ -32243,7 +32453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc3502776b318fd15d42ccd477b6a3b9", + "key": "d7a2c7d65f1830750123f56e97b739d6", "notes": [], "params": { "seconds": 0.2 @@ -32257,7 +32467,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01296a49d6e3ae1c4ccb9031f8817644", + "key": "ce8625668631d6f439712a0d912329e9", "notes": [], "params": { "forceDirect": false, @@ -32289,7 +32499,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3f5d9d4fded2ebc8ec038b6bafd3121", + "key": "4058f7debd26ff0343a152a0755d6716", "notes": [], "params": { "correctionVolume": 0.0, @@ -32309,7 +32519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19cb068b96309b0a4d68905ee0b7cf01", + "key": "953333a2ad0ccd8bd56962785398bba1", "notes": [], "params": { "seconds": 2.0 @@ -32323,7 +32533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bd0d07b326dfade34b351130d0f4158", + "key": "ff88a774a65aab2b5ec6f6aa83b1a5ab", "notes": [], "params": { "pipetteId": "UUID", @@ -32339,7 +32549,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb795e6df7f00f63b46090fb4cace5d2", + "key": "d2ce4875b8d9cdd0c29e0bb35c89657e", "notes": [], "params": { "pipetteId": "UUID" @@ -32353,7 +32563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d0c9dae7a00046968b45a1e623450f8", + "key": "809188e608c30cdd4e8e5ca0e30dc555", "notes": [], "params": { "forceDirect": false, @@ -32385,7 +32595,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b804416dc93d4a7df3fd74e56baf1c24", + "key": "ca075c69eb2eafab4b860db8207ce37a", "notes": [], "params": { "forceDirect": true, @@ -32418,7 +32628,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2165f3bba5e7d439cca8ad726e3f640e", + "key": "912f8cb869e1d6741cd90612da2771da", "notes": [], "params": { "correctionVolume": -1.1125, @@ -32437,7 +32647,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7802cf1981bf4e969b84a61f845db86", + "key": "23daa8f94a836f530b4c6becc88efc9c", "notes": [], "params": { "seconds": 0.2 @@ -32451,7 +32661,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e715fc96763be06367331cde00105559", + "key": "6f7fc6fdb51a87046a07adc087a038bc", "notes": [], "params": { "forceDirect": true, @@ -32484,7 +32694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "572eff89e0cba64a81760272acade23c", + "key": "df3c30bee192971790abf42a38f82233", "notes": [], "params": { "seconds": 0.5 @@ -32498,7 +32708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac85e03e71ae4e78d65e971a7ef35147", + "key": "cf5c940127ba2f8b223bda10ef2511e4", "notes": [], "params": { "correctionVolume": -1.1875, @@ -32517,7 +32727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa3a96eefc4cccea1949e56ed622a5c6", + "key": "16259f559bcc2da6e459a5ba89d9559f", "notes": [], "params": { "seconds": 0.2 @@ -32531,7 +32741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e62c61f0ab4ec6066076638c3cb1265e", + "key": "4bf0bb0c23fa7af42a9f4ed9d49f6fce", "notes": [], "params": { "forceDirect": false, @@ -32563,7 +32773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec6b059bf7a01e1afe9587edf2217d80", + "key": "15255aece956cd946a68179b5cc0cb9d", "notes": [], "params": { "correctionVolume": -1.1125, @@ -32583,7 +32793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4a77b505c171405299453efb760da24", + "key": "95c5409b84f01c7b74af071b17f161ab", "notes": [], "params": { "seconds": 2.0 @@ -32597,7 +32807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df28f2386693f43793b20787dec17888", + "key": "23c3d14e4b631e241f9a997ede6cd19a", "notes": [], "params": { "forceDirect": true, @@ -32630,7 +32840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc805663b89f30f2e607dba5336dbbe0", + "key": "a3aab18f77bdefbfc701ec4e32ee26a6", "notes": [], "params": { "correctionVolume": 0.0, @@ -32650,7 +32860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "038ad572299c84182a3d11863798bd95", + "key": "cf3b040535b8a94549b73218e2dac812", "notes": [], "params": { "seconds": 2.0 @@ -32664,7 +32874,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef8ccf02545dda77062685e8c7cab447", + "key": "ccb1bf75d342a529c128cc3bffb8b9fb", "notes": [], "params": { "forceDirect": true, @@ -32697,7 +32907,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea0262b9bc0e0474482521ea075078cb", + "key": "ff1b7bc7708af02c9479efd3893dfda4", "notes": [], "params": { "seconds": 0.5 @@ -32711,7 +32921,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a38445728775e680914cf87ef0468916", + "key": "40fdeb47f3878f206337df4921f8cee6", "notes": [], "params": { "correctionVolume": -0.75, @@ -32730,7 +32940,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3055d7f05a23aa4504433092c143548f", + "key": "7797bd5f72e0a91fe66265947239462f", "notes": [], "params": { "seconds": 0.2 @@ -32744,7 +32954,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ad36296f0fba821c7cfd6eac73a3545", + "key": "3472696ca50c4f7c415cfbdbc3d64470", "notes": [], "params": { "forceDirect": false, @@ -32776,7 +32986,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6625f09ef54a42c687cd1066ffabd7fe", + "key": "66635d911476fd017be2d10795319d1b", "notes": [], "params": { "correctionVolume": 0.0, @@ -32796,7 +33006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a2ecd68de0e9d8cea537d9d9eb00735", + "key": "8d0437e521473982949f25e41b288b61", "notes": [], "params": { "seconds": 2.0 @@ -32810,7 +33020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6edee336b34617924cd5fcf15da1051b", + "key": "403a9eb7d2cce0770bd17ea437b4385e", "notes": [], "params": { "pipetteId": "UUID", @@ -32826,7 +33036,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "122b26b6d20b611f6d74444cd1781ca4", + "key": "3f39c37d99de9bc21691990c2785f7fb", "notes": [], "params": { "pipetteId": "UUID" @@ -32840,7 +33050,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d29ac94cc7ec54a987056c1c289a611", + "key": "cf7ef3467b826a9a36da281a59902bfe", "notes": [], "params": { "forceDirect": false, @@ -32872,7 +33082,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44cc7f4c56754483f6bb9d05f06142e0", + "key": "95af14c93ead6149619f7c3b501f91af", "notes": [], "params": { "forceDirect": true, @@ -32905,7 +33115,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab5d4686ba3cdd52a6650b6ab45eb36a", + "key": "6cce30267ae12eb659dc5b9901a392e5", "notes": [], "params": { "correctionVolume": -1.1125, @@ -32924,7 +33134,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ee6f8344c1edc896989b09252714883", + "key": "6b2fc37ab759932189a9a09d8abc03ea", "notes": [], "params": { "seconds": 0.2 @@ -32938,7 +33148,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5c5079f02712d7656131c4cfc758d20", + "key": "99bdc87a2180f1f61e5403d71a564d7d", "notes": [], "params": { "forceDirect": true, @@ -32971,7 +33181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24993d21c2514c40d255fda85593848c", + "key": "8afed95f8cad3e122eba61127071f292", "notes": [], "params": { "seconds": 0.5 @@ -32985,7 +33195,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e529bb5f24e5e825eb3b43bd901b6800", + "key": "304fe99f8d6adf4d58fa8f4ddb4b2423", "notes": [], "params": { "correctionVolume": -1.1875, @@ -33004,7 +33214,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ffcfb8f26264eca9632b36f643a0568", + "key": "1ad53c7c30930e2e6aca7ba3efd7fd3c", "notes": [], "params": { "seconds": 0.2 @@ -33018,7 +33228,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26c7ccb84f5b673a584f757fa20ab2aa", + "key": "a288c9ea292496c370a3c9735902005a", "notes": [], "params": { "forceDirect": false, @@ -33050,7 +33260,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f49d3c26a2a1d948182e1c17fbcb07f8", + "key": "96a30db7df0a8c5e52c1894e36e2a82a", "notes": [], "params": { "correctionVolume": -1.1125, @@ -33070,7 +33280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62b60683cee18e6b0624e67398f39720", + "key": "d44a6f922b8a0ac8456383f45a8c5682", "notes": [], "params": { "seconds": 2.0 @@ -33084,7 +33294,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b4a70b59b27f08796e8cf764fda8779", + "key": "c5258924403b319a62d2cd5ae9be57f4", "notes": [], "params": { "forceDirect": true, @@ -33117,7 +33327,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "746e4e322c58c1900ae2f823412f724f", + "key": "67c0937c48e0c02f2960e9163e9211e8", "notes": [], "params": { "correctionVolume": 0.0, @@ -33137,7 +33347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da3dd091a19b2492d1842286b983bc6b", + "key": "53bcff6ba5d7841d411adacce50b03c5", "notes": [], "params": { "seconds": 2.0 @@ -33151,7 +33361,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f20f6ab8630775824b460f14d6715fb2", + "key": "9f865d38023236862b024bbbe719e047", "notes": [], "params": { "forceDirect": true, @@ -33184,7 +33394,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2032cca5807469459c96bb697dc2cf9e", + "key": "eabf7e7d571e2af7654665b1bacbac8a", "notes": [], "params": { "seconds": 0.5 @@ -33198,7 +33408,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6172d4733882424d6df740356e521ae0", + "key": "6785b9c28cff0edecb514077a131ce07", "notes": [], "params": { "correctionVolume": -0.75, @@ -33217,7 +33427,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2cbc54146652645b9d8bde686529dfbd", + "key": "2139f3e33a873271c9452e54a36ef156", "notes": [], "params": { "seconds": 0.2 @@ -33231,7 +33441,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4086f4acb87dd61b9ce67484d7d891ff", + "key": "a949c57fe6b1fc4bb5821dd557788064", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -33260,7 +33470,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e6b5ac056b742cc235ac7a4fd30b741", + "key": "a92854d70eb6b06cf834facfa2c72fe7", "notes": [], "params": { "homeAfter": false, @@ -33275,7 +33485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a7a992426e6d594faded0a1c4b7c52f", + "key": "2bc1382d36f129106a9ece21c9ae190b", "notes": [], "params": { "liquidClassRecord": { @@ -33646,7 +33856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2412311c16a08ebe37805b7954acacec", + "key": "3d929728f1ecb638e4f8bcd7caa507c9", "notes": [], "params": { "labwareIds": [ @@ -33668,7 +33878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c71a869ef98e03a3b9d53248cee658dd", + "key": "a2610f4ed33fa48dfea0e2e54a5d31b3", "notes": [], "params": { "labwareId": "UUID", @@ -33701,7 +33911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3444b8a01c8f748e4ff26d8f5fcf805a", + "key": "1e6c8889e50d14f546b40b1e4a4e0dde", "notes": [], "params": { "forceDirect": false, @@ -33733,7 +33943,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2397fdcb031ded2bcc55834ac354ec3d", + "key": "b13881590401c3f51707c4fb0058016e", "notes": [], "params": { "pipetteId": "UUID", @@ -33749,7 +33959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41a0a14cdb0498e8e601fbb0abbfdc19", + "key": "dec493778ac8e612cde40b8679889d3b", "notes": [], "params": { "pipetteId": "UUID" @@ -33763,7 +33973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13768ac61ae314c8ba5efa970ed80d51", + "key": "8a29dbc2672f5cc1d997d6038b89e730", "notes": [], "params": { "forceDirect": false, @@ -33795,7 +34005,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7926894a3a10af4a5926f07c4addbe4c", + "key": "552d0647e3a294724550475340fda5d5", "notes": [], "params": { "forceDirect": true, @@ -33828,7 +34038,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6fa87b2eddbc66ab337ec9383b4a4e2", + "key": "8237606f0046fe6e26a76cf5172a85e7", "notes": [], "params": { "correctionVolume": 0.16875, @@ -33847,7 +34057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85f6c0cb2ce28a0b93c642e77d9767e6", + "key": "d959a6460380b5546c59131a59c9a9ab", "notes": [], "params": { "seconds": 2.0 @@ -33861,7 +34071,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "503bbdce86b3eb0497873512bd1deae9", + "key": "b69eb1bc28bf19dc9bb8bec7f39c9305", "notes": [], "params": { "forceDirect": true, @@ -33894,7 +34104,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5c967db33c6ca6fe061f9e7be5d314c", + "key": "6974028483c4e2348642fe99ed5d457b", "notes": [], "params": { "forceDirect": false, @@ -33926,7 +34136,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "35bc120744842033610c1ad5c109eb23", + "key": "929c9cd981523f2c5682761e720f6291", "notes": [], "params": { "forceDirect": true, @@ -33959,7 +34169,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5ab40dedb433fc028b2059f3516a3bf", + "key": "a42d23c15dabb6b86728421b7d2bccaa", "notes": [], "params": { "correctionVolume": 0.0, @@ -33979,7 +34189,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24b446dc2274836dbaa065cd3fc0ab41", + "key": "9fb4c40bdda547181cab267686f6115d", "notes": [], "params": { "seconds": 1.0 @@ -33993,7 +34203,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13d197fc3134bbcfb948ec02d6075e57", + "key": "0bb51ee52616749be1c8062bff15568a", "notes": [], "params": { "forceDirect": true, @@ -34026,7 +34236,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4d8193c192e8ee4241620268f529f63", + "key": "9cfdf5ee7b4f570edd5326e86c7a15f6", "notes": [], "params": { "pipetteId": "UUID" @@ -34040,7 +34250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ebb65b263246b5935d9271c9be5e1fee", + "key": "a2b09930fdbe018342e089a5d88b13bc", "notes": [], "params": { "forceDirect": false, @@ -34072,7 +34282,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b10cdec7b54bf7b6c0d478a4b12e5215", + "key": "3fe1c8e8c219f024d1ccb433c3a54869", "notes": [], "params": { "pipetteId": "UUID", @@ -34088,7 +34298,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "983163fd7164e5912eddf228e25f1dc4", + "key": "4dc2b2facc36a51c09ff423476435a99", "notes": [], "params": { "pipetteId": "UUID" @@ -34102,7 +34312,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15a3916de327b2eeab3040226e2b6b5f", + "key": "74031a64bf293676cab25b998194e30b", "notes": [], "params": { "forceDirect": false, @@ -34134,7 +34344,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a64ed5fd170a6f947d1ec4b713d40fb5", + "key": "fd05a9e7847ea2d824f1dc42c23aa120", "notes": [], "params": { "forceDirect": true, @@ -34167,7 +34377,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d9c373cfdd3bb7b6a3b9a4e48a9c423", + "key": "1104abba85925283473a3c0458c319d4", "notes": [], "params": { "correctionVolume": 0.16875, @@ -34186,7 +34396,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2fe8f3797b09e633fa16feb7815b8439", + "key": "fc819e336685b6721774ef48c8b46e71", "notes": [], "params": { "seconds": 2.0 @@ -34200,7 +34410,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "971dcbd19cdd1fd85e2be9eadb0763fe", + "key": "4e98cecd0462947ca65330e05d494e43", "notes": [], "params": { "forceDirect": true, @@ -34233,7 +34443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b4edfc31865dcfb6ef8cfd93e4ff076", + "key": "7a4e232d499d7ac59edf7b80cd61c30c", "notes": [], "params": { "forceDirect": false, @@ -34265,7 +34475,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "775587052015125910c9700dd66f4e3c", + "key": "b291b7deca05b8f3168b2ac954dc5703", "notes": [], "params": { "forceDirect": true, @@ -34298,7 +34508,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c01f5e13bc637f5aa9ec7bd31dba57f", + "key": "78e19e0e9041f5aa038232192a00c2cc", "notes": [], "params": { "correctionVolume": 0.0, @@ -34318,7 +34528,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e563ca319fa320e66c0e2d92e8f8330e", + "key": "ebc9ab0eed18c09de7325d655ecbfd80", "notes": [], "params": { "seconds": 1.0 @@ -34332,7 +34542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1aadeaf8f53dd554edb10f329662ba70", + "key": "ef5f2ffd506f43680922eec3d9f9bb4f", "notes": [], "params": { "forceDirect": true, @@ -34365,7 +34575,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "167347481b5a822f5affe6126bd41e7f", + "key": "b6bbcfe560405e8c280ac8b8a1f228ce", "notes": [], "params": { "pipetteId": "UUID" @@ -34379,7 +34589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3186683e7356a6c2b73af6c113978ebd", + "key": "76041030bb79aadd08d7851434a3c484", "notes": [], "params": { "forceDirect": false, @@ -34411,7 +34621,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a5abd9c9689b0adb5158b0c4a3f4e6bb", + "key": "e40d2f1b12484bb97235868adfe93aca", "notes": [], "params": { "pipetteId": "UUID", @@ -34427,7 +34637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b8e7efad6f834d6975c657ed6295a80", + "key": "55c36803fe5223bcbd1c45f41a88d959", "notes": [], "params": { "pipetteId": "UUID" @@ -34441,7 +34651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be3e52e521c277b7c349c9717a681f9a", + "key": "72fe1242e49e0c97a4a164a81056d7f3", "notes": [], "params": { "forceDirect": false, @@ -34473,7 +34683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a6cd7ef8e410ad76ffb729c087ae5fd", + "key": "7550fb4db2c54a529e143211bf179f3e", "notes": [], "params": { "forceDirect": true, @@ -34506,7 +34716,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "324346d623503f2d46ad05cec0ac3b60", + "key": "620da663b093417b63363ac26b0bd4bc", "notes": [], "params": { "correctionVolume": 0.16875, @@ -34525,7 +34735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e193bb7671b69888b9d3e1eb15b2162", + "key": "08adcb96ee413833dbde48dae249f778", "notes": [], "params": { "seconds": 2.0 @@ -34539,7 +34749,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cad63e048156903204568454423438c1", + "key": "ddeb60df203a0760ae01bf5df01e40fb", "notes": [], "params": { "forceDirect": true, @@ -34572,7 +34782,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89d4c29fd57943c25cf6096db261bf74", + "key": "0a9d75912dc0c690e2cdebb39db935d1", "notes": [], "params": { "forceDirect": false, @@ -34604,7 +34814,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ac6ef4413626d30047cbdac6e23bd4c", + "key": "ca3de41cf485bc6b72414107266223c8", "notes": [], "params": { "forceDirect": true, @@ -34637,7 +34847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e07b656168689985cb07ad975f235e5", + "key": "467bf7206c5eb0ca3e0d327b2d334906", "notes": [], "params": { "correctionVolume": 0.0, @@ -34657,7 +34867,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6bcb94692fe781bcd5b4720137c288ec", + "key": "430cb0b564764c0d613e571b39aa86cf", "notes": [], "params": { "seconds": 1.0 @@ -34671,7 +34881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a99e8bebb14fa19ae99090493e16cdd", + "key": "3ab3fb25ac6c0dcf21c7283444f392e2", "notes": [], "params": { "forceDirect": true, @@ -34704,7 +34914,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b7c04e6226ff6ffc6d70033db5c5682", + "key": "c57ad3be964b51eb30194e0f4e7f6e5a", "notes": [], "params": { "pipetteId": "UUID" @@ -34718,7 +34928,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d75d4de0ed1abe156dac0cf5c408a455", + "key": "594fe24ccc9a8d26d00fd66b9f5b5551", "notes": [], "params": { "forceDirect": false, @@ -34750,7 +34960,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb700326c2f63a71a37ae8fd8c93165e", + "key": "ace26d2544f27a8b69f8a20c9a479e06", "notes": [], "params": { "pipetteId": "UUID", @@ -34766,7 +34976,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91e4d61821dde3478c39e23a3cbb7e71", + "key": "ab7095c70cd2e4fcbd9e40a5bee012f8", "notes": [], "params": { "pipetteId": "UUID" @@ -34780,7 +34990,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8421f71f8f06178e93adf943d8bd63b4", + "key": "cf085454d780843b158efb5659c07cbd", "notes": [], "params": { "forceDirect": false, @@ -34812,7 +35022,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cad883eb60396fbd6e610c0d07374abc", + "key": "dd2e7582f6e074e208ff7afdbe3b9c37", "notes": [], "params": { "forceDirect": true, @@ -34845,7 +35055,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8aed0eff3b5eb95a131f205e48add66e", + "key": "381ec827fafe9389d2d44636c0a216ad", "notes": [], "params": { "correctionVolume": 0.16875, @@ -34864,7 +35074,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "baf27523ed76ebfc7e3ba93766f75061", + "key": "3bb140a13953f007c79400feec67a1d7", "notes": [], "params": { "seconds": 2.0 @@ -34878,7 +35088,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34f1d557b73a38f29059aaf68938dc77", + "key": "3d2dc1840b3ab15ed03879b108677ad4", "notes": [], "params": { "forceDirect": true, @@ -34911,7 +35121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d94b664e03ee2ca6023e3a317db896e3", + "key": "e9d9ec1b99b1359c51518760cc7a862e", "notes": [], "params": { "forceDirect": false, @@ -34943,7 +35153,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b818a15212db5564c7b6a0228c59561", + "key": "869ca5d6c318d4b30bbea3e8b6a3d278", "notes": [], "params": { "forceDirect": true, @@ -34976,7 +35186,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbcd558471a0d2cb0b46aa73ea66952a", + "key": "439077191cd894bf1e390791727dd5ee", "notes": [], "params": { "correctionVolume": 0.0, @@ -34996,7 +35206,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4047c9a173715d7321646eaccfc2a57f", + "key": "a7e8c9a05b43ba67110dbb4767cd3b78", "notes": [], "params": { "seconds": 1.0 @@ -35010,7 +35220,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdd50c4c1bee7a61a5a7f38f2ba1c6bb", + "key": "6dd55459d507bb6628051b6cd3edbdd7", "notes": [], "params": { "forceDirect": true, @@ -35043,7 +35253,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f8b99d064b42219f2bae6241aa2241c", + "key": "f632c965a811a58d485d8a078f6ccb9b", "notes": [], "params": { "pipetteId": "UUID" @@ -35057,7 +35267,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd5655f6c987bcc6495e07afa877c5cc", + "key": "d0a0be1d9f144c032bfb6dcfc8510759", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -35086,7 +35296,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abeff03eb2cb15a468f89a4a1d73977e", + "key": "5c993dfc4d38d7b88b6371123bec1e58", "notes": [], "params": { "homeAfter": false, @@ -35101,7 +35311,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3a60d72ce5a0cd99b61816cd774faa7", + "key": "493323e0acff76bb72d77d3dd7d29d03", "notes": [], "params": { "liquidClassRecord": { @@ -35460,7 +35670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c22d85b9ba8e0803b72ca96c3c227637", + "key": "7f553674671c6e1845b5c11dead3e7e5", "notes": [], "params": { "labwareIds": [ @@ -35482,7 +35692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cba87beb9736e92652d72acfd2ab4575", + "key": "8f1d0a40caf8cc56a6a26cec165c3ae4", "notes": [], "params": { "labwareId": "UUID", @@ -35515,7 +35725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e59895631a6738ef48fd1c8639b909d5", + "key": "712998efa1c4bf17186646582f0ec146", "notes": [], "params": { "forceDirect": false, @@ -35547,7 +35757,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "823d565d468c5f24393b990bf9fde2be", + "key": "2c975526658f4d795e96394548b23c67", "notes": [], "params": { "pipetteId": "UUID", @@ -35563,7 +35773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "031d385bf40a05ad54c6d26792e1fee1", + "key": "47fa25f5f36813a1aa0484ca5e02c217", "notes": [], "params": { "pipetteId": "UUID" @@ -35577,7 +35787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d7fa79fd493f02a51c5739c8d823a73", + "key": "503e6fea2b27c1cd866d1d9eb146fc93", "notes": [], "params": { "forceDirect": false, @@ -35609,7 +35819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "071ca585e6adfcd8caaf08f7ccd8a3fd", + "key": "eb3781c51d526f4ae07031e1989f345c", "notes": [], "params": { "forceDirect": true, @@ -35642,7 +35852,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43a774b9c0d3ce8db0b13e102ebc1cf0", + "key": "bba287c43598adc76615187cfccb378e", "notes": [], "params": { "correctionVolume": 0.0, @@ -35661,7 +35871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb8654213ac13373d1c3e99e8ca589f3", + "key": "701ac1a3d8922b7cdc325c8c9a4c513a", "notes": [], "params": { "seconds": 0.2 @@ -35675,7 +35885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c93f43f51dbf8f9a3b5e4e9d2991662a", + "key": "e6fb976b48ffaebc43470bc71e04d073", "notes": [], "params": { "forceDirect": true, @@ -35708,7 +35918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a006cc686c310965bf90474250a1158", + "key": "af9923b12f093516294c2422146c9812", "notes": [], "params": { "correctionVolume": 0.0, @@ -35727,7 +35937,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "316cf23735e04d87d749d85a102c4b39", + "key": "b3fb9763befbaa409dcbbd743cc9fd2e", "notes": [], "params": { "seconds": 0.2 @@ -35741,7 +35951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c8d575a0a6b2aac89d3ccf149004a5e", + "key": "4646204575275626fa98c9ac78e59eb0", "notes": [], "params": { "forceDirect": false, @@ -35773,7 +35983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "68a39b7acbe728f8e98338e1f1f55c03", + "key": "cc9da77f938efc80e8b122f71e90fbea", "notes": [], "params": { "correctionVolume": 0.0, @@ -35793,7 +36003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5b66b86dc84ad00421e8a15e5f9f591", + "key": "c9e37aaa30b5d1ec94adacd0c1f50a4f", "notes": [], "params": { "seconds": 0.2 @@ -35807,7 +36017,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55f85f05cead4d5be1516d6f493267c1", + "key": "5064c312d88fe070b4dbbe5bd00ed3ed", "notes": [], "params": { "forceDirect": true, @@ -35840,7 +36050,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bb6c2e92c7528bf884f44ef7a2cd9fb", + "key": "df0d5d3d32a3d3cdd443c854d59a914d", "notes": [], "params": { "correctionVolume": 0.0, @@ -35860,7 +36070,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9ca04c4da0444ff7be589157d23debbc", + "key": "43d19112da858b899ef246cf8ace4262", "notes": [], "params": { "seconds": 0.2 @@ -35874,7 +36084,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c0b539e7bee9b73d434b1883f94b086", + "key": "8bc1ba68e1d39a547324e07bb8798873", "notes": [], "params": { "forceDirect": true, @@ -35907,7 +36117,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b522c285617481dfc832e516658e2b85", + "key": "f1308a4937de05fad72e66bdbb22133f", "notes": [], "params": { "pipetteId": "UUID" @@ -35921,7 +36131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33b95bcaf20f2549721d851aaa7e5eef", + "key": "d821cebadc5177a80327b5f07f771cbf", "notes": [], "params": { "correctionVolume": 0.0, @@ -35940,7 +36150,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29db9ab399838c855a70f105013b2265", + "key": "d14117af37827d4be98ae2720cbdfda0", "notes": [], "params": { "seconds": 0.2 @@ -35954,7 +36164,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b578ccbe85296c9a7939c2066f9c45cd", + "key": "171c7dcc0b1636f509c8ca3a9022d123", "notes": [], "params": { "forceDirect": false, @@ -35986,7 +36196,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "38f0f7eb64baf7ae92f0c6026b421dfe", + "key": "fa07b6d12648dce1e859ebf934dd6c4a", "notes": [], "params": { "correctionVolume": 0.0, @@ -36006,7 +36216,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9644a9ad19152f0e54f8956ef9dc6196", + "key": "15d3cd1214e11777e71c90e1dccb2eea", "notes": [], "params": { "seconds": 0.2 @@ -36020,7 +36230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83f4b4de3d1a6f2d3008931707dc3519", + "key": "b177ffebdccf957deb2eacc6d25fed12", "notes": [], "params": { "pipetteId": "UUID", @@ -36036,7 +36246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19f2d85c2f16e99ecfd655ca303d90c0", + "key": "8c4d4e18a3656acac3bba7989e293044", "notes": [], "params": { "pipetteId": "UUID" @@ -36050,7 +36260,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0af9519fd5801001760cfaa6c6e63eb9", + "key": "a4d531bb7fffc43b03c4d0912c3dfe18", "notes": [], "params": { "forceDirect": false, @@ -36082,7 +36292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fcf1dc078413ec573f474ddd88b97adc", + "key": "2a67cd4cd2abe8916ce8000ed73966b1", "notes": [], "params": { "forceDirect": true, @@ -36115,7 +36325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e9de35a7cd39072d40f527c7dc57ee2", + "key": "e8f807e003859cd3b5c9e3133680fac4", "notes": [], "params": { "correctionVolume": 0.0, @@ -36134,7 +36344,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1afa4961e7bd7d367b6f37de0d80af2d", + "key": "e6ca1718c5d84ad3dc14eacb3ffa3bf1", "notes": [], "params": { "seconds": 0.2 @@ -36148,7 +36358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a51840c685f761c5a4b032dcbc098d3", + "key": "e59395980a2b083502e49a72464d6744", "notes": [], "params": { "forceDirect": true, @@ -36181,7 +36391,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2e887528edbd543c8992810440c4969", + "key": "504edb8a80f4adad049b763ee3d7b7b6", "notes": [], "params": { "correctionVolume": 0.0, @@ -36200,7 +36410,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f407508c9712c4bb514257c39ba285c7", + "key": "0f18dd6f1f3b5767b8127e79df75f3aa", "notes": [], "params": { "seconds": 0.2 @@ -36214,7 +36424,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "203662ff00ff55245b1c1dc71f54054d", + "key": "1d4109eb748e54fd1ea297622973b216", "notes": [], "params": { "forceDirect": false, @@ -36246,7 +36456,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61552537354984d75fa35e40ed8efcb5", + "key": "e435cea8d45689ef9b61f187fb2fe979", "notes": [], "params": { "correctionVolume": 0.0, @@ -36266,7 +36476,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0960b3948372bd9f3365ebb0406dc85b", + "key": "77c36d215293b7e185b5ffdff29c0198", "notes": [], "params": { "seconds": 0.2 @@ -36280,7 +36490,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5a51624c1b573dedc18d859e4787be8", + "key": "7e5b3fb3db72a860ba91828d22c0ab5f", "notes": [], "params": { "forceDirect": true, @@ -36313,7 +36523,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dad3bedf1f5ebb9e1f925b439c14cadb", + "key": "6293685db9d96ef8c59ec09155d99f50", "notes": [], "params": { "correctionVolume": 0.0, @@ -36333,7 +36543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "569136e3e74bff43ef7a0865b7b7f463", + "key": "47684e2007203d761db61d8a6c44d859", "notes": [], "params": { "seconds": 0.2 @@ -36347,7 +36557,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd5262dc70ebb1cd467684d1c1922c7b", + "key": "a88462b7620f689d58b14c2b2de223e0", "notes": [], "params": { "forceDirect": true, @@ -36380,7 +36590,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea0f5937da012412561673e241316b95", + "key": "4672ab90e53cd6fd22c3922794fa284e", "notes": [], "params": { "pipetteId": "UUID" @@ -36394,7 +36604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b09208fe74c0c9d9889406c3cbb194f", + "key": "16441c5d48db4058057d56858bb8f4fe", "notes": [], "params": { "correctionVolume": 0.0, @@ -36413,7 +36623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16525d89e701ce92a45b548fb1b7aa99", + "key": "ed9f7e913141f145e6bdec78dd755e08", "notes": [], "params": { "seconds": 0.2 @@ -36427,7 +36637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6db29e6b19acfb1c46f1a757f51b5b5e", + "key": "72a714eae925ef3b6ed615fc90323258", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -36456,7 +36666,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb38bb5d5bddf573b32613f0ef65022b", + "key": "6d512ce8e1d35719c59fd0858d353140", "notes": [], "params": { "homeAfter": false, @@ -36471,7 +36681,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "473691ec29284f61cf6bb245d88d60b8", + "key": "ee128b59841e3884480af916a15ecd61", "notes": [], "params": { "liquidClassRecord": { @@ -36858,7 +37068,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "053364627c200bc930685308284c58c4", + "key": "75b73d912e183cecee5bab94e9ba8a89", "notes": [], "params": { "labwareIds": [ @@ -36880,7 +37090,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "801543f551ef4566350d39be360a31f9", + "key": "76a393cc472c443f33398f9423794ac1", "notes": [], "params": { "labwareId": "UUID", @@ -36913,7 +37123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e1de529ae70453ac135d056b13594a1", + "key": "b3c8a60f5fb631e61011ea33275a6af7", "notes": [], "params": { "forceDirect": false, @@ -36945,7 +37155,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea6b1fe93f50a39197a4b8b5e65264b2", + "key": "e76e10c1b1f35d63d6d6a48a126410fb", "notes": [], "params": { "pipetteId": "UUID", @@ -36961,7 +37171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c242dade3b211a99f31a949cc7c1a0de", + "key": "8c44afb7dd9902aa70b16104675a4560", "notes": [], "params": { "pipetteId": "UUID" @@ -36975,7 +37185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c4a89b6710853cfd40eeed88b3c46f2", + "key": "a0a7ee396f517273751a8b14be98cd94", "notes": [], "params": { "forceDirect": false, @@ -37007,7 +37217,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b59b0e64c0df35efb17efaba226b99c", + "key": "df56d477495cdbc72773c7361621ae30", "notes": [], "params": { "forceDirect": true, @@ -37040,7 +37250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "adb5252da413dd255b6fca6652cfcdc1", + "key": "ef060d16c93c756d6b6b4bfe99eeadc4", "notes": [], "params": { "correctionVolume": -0.3725, @@ -37059,7 +37269,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed14f3cebc3b28ebfb687da8ec5a52dc", + "key": "5717351d4f0043bddb7080a48d52f48a", "notes": [], "params": { "seconds": 0.2 @@ -37073,7 +37283,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e16eb03481d84fa792e116d7e4b9a0c0", + "key": "7ae2c32ea0175705f55910d1722d5a04", "notes": [], "params": { "forceDirect": true, @@ -37106,7 +37316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14523cabe3c06c24c58283f63d5e64d9", + "key": "0443e8cbea9c8578c9c087b2ef077e76", "notes": [], "params": { "seconds": 0.5 @@ -37120,7 +37330,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "499d22097db9e874dbc88e8254577343", + "key": "b1f2d791ec50a76c2e3bc928d9945abc", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -37139,7 +37349,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf6fa5025106a7dce7413e5fa5624c82", + "key": "2dfa24e8e13ce20196fd423eb1959f18", "notes": [], "params": { "seconds": 0.2 @@ -37153,7 +37363,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbdb46ae9c70d19c8cc5c8da3aa8c496", + "key": "e5cd82d2f66c7bb85c4b3abc0200658c", "notes": [], "params": { "forceDirect": false, @@ -37185,7 +37395,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4cecb4f709d343edd3c339b2e9876824", + "key": "9a3e2efd1d69cf67539b431fe624ddad", "notes": [], "params": { "correctionVolume": -0.3725, @@ -37205,7 +37415,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4bfc510d9bbed9d45259e86e9da15807", + "key": "e01a7f930dea58eb3af63f860e49583f", "notes": [], "params": { "seconds": 0.2 @@ -37219,7 +37429,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "522a12b41f171526e29df2093cb76c4d", + "key": "2f77c8f2b73b5f84c33235dafed6b7e3", "notes": [], "params": { "forceDirect": true, @@ -37252,7 +37462,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5fd733c17ccbb8fa238971f4f770c6b5", + "key": "b5e6d0f15cb944e4c7e9def59e32122a", "notes": [], "params": { "correctionVolume": 0.0, @@ -37272,7 +37482,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f708e5355878b0937b2bfcef5dd11f93", + "key": "0126661a81c726793bdc3cb94d5f707f", "notes": [], "params": { "seconds": 0.2 @@ -37286,7 +37496,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19bf793525423c64a252b6557a22f099", + "key": "0aa80dea60205d0f52d716baa46e4d86", "notes": [], "params": { "forceDirect": true, @@ -37319,7 +37529,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f3cff3581356c8eeb844e856d6685eaf", + "key": "f88568d5d44f0b1395604da4fc4df786", "notes": [], "params": { "seconds": 0.5 @@ -37333,7 +37543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af1b2e014aba09638c47b1ecacc22b6b", + "key": "1f39dc1a6a5104d867c4387be2e3f119", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -37352,7 +37562,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb24f85aecdd0c288eef3188e7500462", + "key": "66d95ef29a6787ff7354df14192b55a0", "notes": [], "params": { "seconds": 0.2 @@ -37366,7 +37576,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b61f1058382ed1dd9eb799accb90e21b", + "key": "076e474a7308e1eac45477266e6dcdd4", "notes": [], "params": { "forceDirect": false, @@ -37398,7 +37608,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1311c617bbb1102ae2fc00396fda424a", + "key": "9de484df1ae5fa3623cca026386712a1", "notes": [], "params": { "correctionVolume": 0.0, @@ -37418,7 +37628,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e247b379f2dc04f2342a8072da98c79", + "key": "0ac4ae7728704b3beb4f9ecf6849cffe", "notes": [], "params": { "seconds": 0.2 @@ -37432,7 +37642,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf84d6e350c3bf7dc638317706369769", + "key": "a4b96c55d4f7ceb3197afb96de0a1c5b", "notes": [], "params": { "pipetteId": "UUID", @@ -37448,7 +37658,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "808291b6d34001468dbf4377e9f8e4da", + "key": "dc94027c8b1112ba07d731b20aa13ab6", "notes": [], "params": { "pipetteId": "UUID" @@ -37462,7 +37672,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b1dbcace94b1942e32c83e38170a1c7", + "key": "a7e056dd3a6e329e81ecdfb673f8a3cc", "notes": [], "params": { "forceDirect": false, @@ -37494,7 +37704,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1cbc480281c1d2051abf304a6d0d38d", + "key": "ee1437e8896dd6bb43ba7f1ff4c598a6", "notes": [], "params": { "forceDirect": true, @@ -37527,7 +37737,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "38752988545eac8966a641d8204b2d28", + "key": "020bae20644ae338074bca295c97677f", "notes": [], "params": { "correctionVolume": -0.3725, @@ -37546,7 +37756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2a3c884b4f4e5390cbb4312975f4555", + "key": "827f552d56959762347f46bce29c2c93", "notes": [], "params": { "seconds": 0.2 @@ -37560,7 +37770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d8c380656f7902fdebfe9b778978d91", + "key": "87e1104c0bde1991509a22b1b9b565d9", "notes": [], "params": { "forceDirect": true, @@ -37593,7 +37803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "989aa86059c19fdda445cf6c8400018d", + "key": "e46788d7e86d330829ee98e636df430f", "notes": [], "params": { "seconds": 0.5 @@ -37607,7 +37817,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4ba2a2415155511b03668ae12bb7c77", + "key": "de1cdaa822293080d14008fec17798f4", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -37626,7 +37836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b17b7b4627dd37ecfb9845218e7829fe", + "key": "da2db95badbd074005408f85284abbd0", "notes": [], "params": { "seconds": 0.2 @@ -37640,7 +37850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4025ccb0cd920fbe2fc20dd2f23f4f3", + "key": "a6f58895ff84145c2126428e12e52c6c", "notes": [], "params": { "forceDirect": false, @@ -37672,7 +37882,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "475b89239ea5df84d9f15c7bc86bdcbd", + "key": "e63ffc50a715f72096ef3427d7735912", "notes": [], "params": { "correctionVolume": -0.3725, @@ -37692,7 +37902,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93c7d8591baec71c9229e05716d291d1", + "key": "5baeb010df303fd6b28ce2e72193d085", "notes": [], "params": { "seconds": 0.2 @@ -37706,7 +37916,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dba7a766ee9441ea243855e3144293d7", + "key": "94830d1dff7c1ac6dd2e1d5cfb0590d3", "notes": [], "params": { "forceDirect": true, @@ -37739,7 +37949,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "679d3336902b3c07e9e4a475a051c141", + "key": "6e83e2b3672c8eaf0217b7627e58ccdc", "notes": [], "params": { "correctionVolume": 0.0, @@ -37759,7 +37969,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "997c8ff79bcf0c354d985255c7e7a6b9", + "key": "7af0080ac8f03208985bdf2e16cb6977", "notes": [], "params": { "seconds": 0.2 @@ -37773,7 +37983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7dd475db041aaf6872677d98de28e881", + "key": "458e09acfcbc834d27f4ef07ae44e5d4", "notes": [], "params": { "forceDirect": true, @@ -37806,7 +38016,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "efeaef3cc58fe38670cb58b17275d71f", + "key": "3c09bd16dc332ef23f0ee1845fc4a676", "notes": [], "params": { "seconds": 0.5 @@ -37820,7 +38030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78d749f857c08caf3a92bd28ba61f8ac", + "key": "1aa87c4a8e707f27c97c57d1a7cf0067", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -37839,7 +38049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73817034927144b98da30a4cab48f56f", + "key": "8eeae5e1aa684092898748d8758dd48c", "notes": [], "params": { "seconds": 0.2 @@ -37853,7 +38063,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "581ee3f0d0e6a122952b62a1809efb8f", + "key": "6215821f0a5d50cb4fd4f8807bb77ea3", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -37882,7 +38092,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "736008947c6cc4d2bba60a7506236bd3", + "key": "34fa300e639a34f726b47c9ce7e75f3b", "notes": [], "params": { "homeAfter": false, @@ -37897,7 +38107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2cd7bfee2aa61775c4c88094df792c7f", + "key": "84f5b479c8079970fa75524e1d9ee822", "notes": [], "params": { "liquidClassRecord": { @@ -38272,7 +38482,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3459be6caffdf8ba3e4c37d51a8d8a06", + "key": "2edd45f264a5530300a1a3c8ce6380ce", "notes": [], "params": { "labwareIds": [ @@ -38294,7 +38504,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9be8c9ccbe098888f1cff39c3aa8765e", + "key": "c13d9801a158e5c46004aeb7c3e0b9ee", "notes": [], "params": { "labwareId": "UUID", @@ -38327,7 +38537,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58712d24372c5a3a50a3972694a3c4d9", + "key": "2102bee176a76aec698d33b59673b167", "notes": [], "params": { "forceDirect": false, @@ -38359,7 +38569,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "824b126fdec16e02aeff4c2d53e43abd", + "key": "fea228a7d30f88f14e06b0de4b8b94da", "notes": [], "params": { "pipetteId": "UUID", @@ -38375,7 +38585,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e4b354f1541132f9a74784fd7757193", + "key": "272543baba0bd0d93830b4e8ffcab62b", "notes": [], "params": { "pipetteId": "UUID" @@ -38389,7 +38599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd2c243bdcb3a537de7c16f049d51260", + "key": "f66cee83a2e929565293151ab95d6901", "notes": [], "params": { "forceDirect": false, @@ -38421,7 +38631,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9fec535c49a53274c4650f141178b74", + "key": "a8f43fb29c154c47f0eeda3dc68010b5", "notes": [], "params": { "forceDirect": true, @@ -38454,7 +38664,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45cb8e1a3570aa8fc32ae4f0f624af76", + "key": "53f3e45116fc6a64291ef239249be89d", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -38473,7 +38683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ce93f04f3740d255b27bd77ecccc9a6", + "key": "6fa17e3ccfac6028b915cd308a8ad81f", "notes": [], "params": { "seconds": 1.0 @@ -38487,7 +38697,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6f6ae4e1d53185b7a3fe1f8bdba11f6", + "key": "763ab41468b414f1306d0076b8614204", "notes": [], "params": { "forceDirect": true, @@ -38520,7 +38730,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c69961dbd7eb1d43a171e3b8f4c1e261", + "key": "6c4346c6402990716bebb56699597516", "notes": [], "params": { "forceDirect": false, @@ -38552,7 +38762,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1159c9cf54c88ff5f9c01ce606f0e41", + "key": "7e5e4a820c51a15688fd4b9fe65e2d5e", "notes": [], "params": { "forceDirect": true, @@ -38585,7 +38795,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64bcb5016a19abfb6b77d29b468edba0", + "key": "1b035dfdd3e37f37705d020e68e96763", "notes": [], "params": { "correctionVolume": 0.0, @@ -38605,7 +38815,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c3346a215d488af49a96cf8e99eb6ee", + "key": "fb9c690ba28d3d304c857cc892a547bc", "notes": [], "params": { "seconds": 0.5 @@ -38619,7 +38829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3990df3a506840856243cec83ee40f6", + "key": "6e09d28a0c7e7b24533604918e6288c0", "notes": [], "params": { "forceDirect": true, @@ -38652,7 +38862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c7771ddf652b7958ecaf9fb1530ffb6", + "key": "8d632a2720b282045c7644bfffad2c27", "notes": [], "params": { "pipetteId": "UUID" @@ -38666,7 +38876,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db097def00d19f250e9aa749b4af18b3", + "key": "b45ce1ba8f30ad5bafbb0b31f13ad646", "notes": [], "params": { "forceDirect": false, @@ -38698,7 +38908,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4f74807b87dab34202d1c49b6098402", + "key": "8d933f325fefaae18205bf49639ab19e", "notes": [], "params": { "pipetteId": "UUID", @@ -38714,7 +38924,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7da55eff3ef1893fdbaa92056e155727", + "key": "9b5391670cc80cdedd22f1010d2b80ec", "notes": [], "params": { "pipetteId": "UUID" @@ -38728,7 +38938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5d35a5ac74c167cfc46cc50c4e729c9", + "key": "6c8c2190c25c1ab59629496c9005889c", "notes": [], "params": { "forceDirect": false, @@ -38760,7 +38970,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "843ad9f71a23d271c31d3bf5b642c647", + "key": "c996ebb12319ca7ea8cb1dff2873f687", "notes": [], "params": { "forceDirect": true, @@ -38793,7 +39003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e759f29289b51a908515d829681a942d", + "key": "6396ea3989df163e1e409e2da5dc48be", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -38812,7 +39022,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e65847e55501706dcd6bcc7996b81d4", + "key": "5518400c5480ce0c5accc66bfbde90df", "notes": [], "params": { "seconds": 1.0 @@ -38826,7 +39036,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "981569376584b483e4de3b334de722b4", + "key": "8925ebd4f33957a85084b0966cd408ef", "notes": [], "params": { "forceDirect": true, @@ -38859,7 +39069,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41703955a660a96683ecda9731b41d73", + "key": "c1e2a390498f5a6006ad7b73e546ece9", "notes": [], "params": { "forceDirect": false, @@ -38891,7 +39101,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b9b61c7287132a84181d67eb33f52c5", + "key": "f342a39981895d481a0d31e32b970725", "notes": [], "params": { "forceDirect": true, @@ -38924,7 +39134,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3eb876fb1d5a8dfa4b317fbc370381e9", + "key": "2ed7b20da4ab5722f30c5b918dca22f4", "notes": [], "params": { "correctionVolume": 0.0, @@ -38944,7 +39154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4baa48ef73dfaea9f7e9597ece9b80b", + "key": "bae32099682268446f65acd5f78143f6", "notes": [], "params": { "seconds": 0.5 @@ -38958,7 +39168,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4ac1fd9a711b37dfc08eadadd5fcbe6", + "key": "6880844b18de5db6d8b469bf09c6c0af", "notes": [], "params": { "forceDirect": true, @@ -38991,7 +39201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc07642872c3cf5744c5b07640ea02c1", + "key": "ef60a5abe3adcea3c161e3d2778a20ed", "notes": [], "params": { "pipetteId": "UUID" @@ -39005,7 +39215,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "313d3269f89cbf11a697189f2c6666d8", + "key": "1bd33dbfc2ea3be69bb9299e5681ddd0", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -39034,7 +39244,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c518c46400ff5a2bfb5aa9f79724be3", + "key": "e2a221eb94deed8e2d34e3ad5e916f27", "notes": [], "params": { "homeAfter": false, @@ -39049,7 +39259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71f027868b2df475469389eb73a898b5", + "key": "a2aabf709cf447a1be46851cb9cbe5d7", "notes": [], "params": { "liquidClassRecord": { @@ -39103,11 +39313,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -39327,7 +39537,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -39337,16 +39547,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -39408,7 +39618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80a0c97253a4e991849836d9d4c79150", + "key": "7a841b2c0bcf7683d66bd1e466d381f1", "notes": [], "params": { "labwareIds": [ @@ -39430,7 +39640,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "652bee9b6c9fb596d88eacf2dc62bc7c", + "key": "3a56cc7535164682a88167460a43ea83", "notes": [], "params": { "labwareId": "UUID", @@ -39463,7 +39673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4318edc02cbb1b6ac2413777b23f2c05", + "key": "b0a2815c90ec50cae0757e8af3b2c918", "notes": [], "params": { "forceDirect": false, @@ -39495,7 +39705,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13a43571a9a897357cc9bbc807856e2c", + "key": "836a04ae502548fd61b65702c26705b8", "notes": [], "params": { "pipetteId": "UUID", @@ -39511,7 +39721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9ed080b5b3efc32d35336b5880a0cdf", + "key": "91394d1ec501edc9c856a7b63fc7f3f4", "notes": [], "params": { "pipetteId": "UUID" @@ -39525,7 +39735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8672358981f75627b071d8b6c35f7745", + "key": "7ef5f2140a422305ca1bd9a77e7a872d", "notes": [], "params": { "forceDirect": false, @@ -39557,7 +39767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13988e31434516feaa46523fd95efe98", + "key": "065773df7c92e785056dd6dc1a939055", "notes": [], "params": { "forceDirect": true, @@ -39590,7 +39800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f319b2951ceb180163f8fa3cd639204e", + "key": "c9a0f6b0429634032cbd1bec3c140bec", "notes": [], "params": { "correctionVolume": 0.0, @@ -39609,7 +39819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d710753d2c54098a1c7b682330ad5c97", + "key": "5b21a57aa9ad253344f40c88ab88a149", "notes": [], "params": { "seconds": 0.5 @@ -39623,7 +39833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71eaae006bdf45e067dc2c6733a1eec8", + "key": "30890b05688e029f3bdf8ffd1840d41d", "notes": [], "params": { "forceDirect": true, @@ -39656,16 +39866,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db6e000f9f88c5200db5d429bd9e4c46", + "key": "acf5aa4568875d3146efbef1f7e8e465", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -39675,7 +39885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26bf9b70a95bccc600b1eb532251d2d0", + "key": "8c917323c615a0f3b7a5502247fcf941", "notes": [], "params": { "seconds": 0.5 @@ -39689,7 +39899,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9edc3d540e2e1e71a9f657ae779fe92d", + "key": "561e59ab3e522effedf6aef65727b39c", "notes": [], "params": { "forceDirect": false, @@ -39721,17 +39931,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "413b5efc0e34125f93210b3886772c17", + "key": "f0df086b6f45bb52806a327a4ab1d5a2", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -39741,7 +39951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98c81680627e11953b25e423fd41eb03", + "key": "a9d8d82e9440aa1ce4ec651ebea987f0", "notes": [], "params": { "forceDirect": true, @@ -39774,13 +39984,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c754163b0f27742229b198e8fc532afb", + "key": "88070514cd2d651a8daa3f76f9ec63f8", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -39794,7 +40004,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0938ce5a7b0f501757ebfd419bb3171c", + "key": "4e4c028615109318f5120bfc8884d29b", "notes": [], "params": { "forceDirect": true, @@ -39822,12 +40032,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c36d83676a3dcf71e106bf349e86210d", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b91a21a1eeb79b02e69d3a8671681e8c", + "key": "403ac14a87d698a1fb798510ed77e449", "notes": [], "params": { "pipetteId": "UUID" @@ -39841,16 +40066,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e570cc380a56ed034a7779d09db86bf", + "key": "fa665effe16650cecb52372d1772f6d4", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -39860,7 +40085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "acae0769f41a6f82b6a88b7d939ec1ae", + "key": "a1b163b08a6f801f28ab53c2bec256dd", "notes": [], "params": { "seconds": 0.5 @@ -39874,7 +40099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23e7267c4a0ff3b3b5783e1e0005d90c", + "key": "038397ba7dc08b32bde70387273aafdf", "notes": [], "params": { "forceDirect": false, @@ -39906,17 +40131,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d7bae85075fbbdd9cacc3650ef58cdf", + "key": "e4d4404b6e89391c3ac0d2e9ce187594", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -39926,7 +40151,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b97c0876bee37b9821dc230041bab91d", + "key": "1a406156dd28260f0841ab71f16aa140", "notes": [], "params": { "pipetteId": "UUID", @@ -39942,7 +40167,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0a3ef86c22e6dca62ea8948676035e5", + "key": "8c7e4e0cef6e1cc7c73a9c4d2a15c3fa", "notes": [], "params": { "pipetteId": "UUID" @@ -39956,7 +40181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c1e312b629ab96ba45ece921de29f31", + "key": "e79a6f2890e41479c83cf4b402c12cfd", "notes": [], "params": { "forceDirect": false, @@ -39988,7 +40213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "720416e289e25e9e0d50b52696db89ea", + "key": "d5821f9d6fb934c14ffcee72a771afe5", "notes": [], "params": { "forceDirect": true, @@ -40021,7 +40246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "725cf4735d7243f4c20dfcaad6f58795", + "key": "292ae13baa2ab4b609eb8aa125654ca0", "notes": [], "params": { "correctionVolume": 0.0, @@ -40040,7 +40265,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48154613fb6c24e3cf45f621b1a5a9e5", + "key": "68bcb489d46c2987618b205500d9f6c0", "notes": [], "params": { "seconds": 0.5 @@ -40054,7 +40279,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "319cef856bb503330cde13bd352cc19c", + "key": "4c7a3c9f0c31acf1c217088ad1997cc1", "notes": [], "params": { "forceDirect": true, @@ -40087,16 +40312,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e8214fa030248c80c6af0029dab48d2", + "key": "691460f440f7fff28bd2643ec4b9f3d0", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -40106,7 +40331,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "151f15fec817fe7dad160369ba495c0f", + "key": "156f8cb7710a5f8bd5b773d67da9249f", "notes": [], "params": { "seconds": 0.5 @@ -40120,7 +40345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc188a2661a7cd7fec6290e10003a916", + "key": "9d5e58952a28d1ef6dc3f8660829cb9b", "notes": [], "params": { "forceDirect": false, @@ -40152,17 +40377,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b8d41e00a351a2909dba8f1611a9e01e", + "key": "c37f1bc04fe0e8b4d57c49b9be839cda", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -40172,7 +40397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f294c67ca4ddf3a617ea98c11cc8e480", + "key": "d44d8d5f6f81d6f37871e1a2ae7b8bda", "notes": [], "params": { "forceDirect": true, @@ -40205,13 +40430,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eaa1ee06a934cea4398fd7d7d3bceb33", + "key": "7674de971fc5ce435033cd73ef2aad60", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -40225,7 +40450,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "380b2cca0ad0793acb7ae027987df97c", + "key": "0a03f163457735ec813386ea0a3c2b30", "notes": [], "params": { "forceDirect": true, @@ -40253,12 +40478,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14b2c7730fe7de0f240d73ea9db84b57", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34c25b221640f2f81c55735ed60d5ad5", + "key": "857f123171e76f7aa03394a6d835f637", "notes": [], "params": { "pipetteId": "UUID" @@ -40272,16 +40512,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "08ebb5d83595cbbe9c1425e4d88b1ac9", + "key": "e84c944f35ef80c2f616d12f619f2da7", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -40291,7 +40531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f63998e425295c7cbf90aab1e070fc6", + "key": "dd6754d493386787d3911098afb6b2d3", "notes": [], "params": { "seconds": 0.5 @@ -40305,7 +40545,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95ce5f0a8a645480cdadf74272820858", + "key": "d829ceee7b10782840412a3796d9cbe6", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -40334,7 +40574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41c79d06373b3e7ae741e02d5f872668", + "key": "75947d9fedaac3956cced2c29f10bda7", "notes": [], "params": { "homeAfter": false, @@ -40349,7 +40589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da51602737ed77faef07cbc91e0c44c1", + "key": "afde02bae8498cdd6413ec8fe5ca85c6", "notes": [], "params": { "liquidClassRecord": { @@ -40748,7 +40988,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fba55dc5c744d7fcea03c6a0e50ceb28", + "key": "0d6f7eb32f4d4976d10e5431f5290c9c", "notes": [], "params": { "labwareIds": [ @@ -40770,7 +41010,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34316292a1f5fee6e5880cf7d852bab0", + "key": "5d8568a5df8e3f32d81d8723d5b0ff5d", "notes": [], "params": { "labwareId": "UUID", @@ -40803,7 +41043,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5cafa36f56714835896f63d1169264fe", + "key": "2df33ebc0c502309a170102e09649d56", "notes": [], "params": { "forceDirect": false, @@ -40835,7 +41075,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "833c390c628cee41ba32c12aeecf8612", + "key": "9771018d900cca44bcbc8ee5e9367c62", "notes": [], "params": { "pipetteId": "UUID", @@ -40851,7 +41091,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9d87ebbdee1f70a48ab75ec24f8b551", + "key": "5198a2474190be5e8fe2f0f55743bced", "notes": [], "params": { "pipetteId": "UUID" @@ -40865,7 +41105,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "414b1974a30664493868c319a1f202d8", + "key": "944622b2de8371774d26e6fbf3e1e048", "notes": [], "params": { "forceDirect": false, @@ -40897,7 +41137,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37cf8ad40f208ffb2a02dc6a45649250", + "key": "17bcd40d04b9e01c6495dcd35e3ea4f4", "notes": [], "params": { "forceDirect": true, @@ -40930,7 +41170,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd929301edf6d083201945ace0c4c532", + "key": "7301a4fd96af781ffaaccd1395449ba2", "notes": [], "params": { "correctionVolume": -1.045, @@ -40949,7 +41189,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52e5b1ec0426f5b4dcd9f2bb127c1fcc", + "key": "d6e4593cadfca367a6f17fbe8735ea10", "notes": [], "params": { "seconds": 0.2 @@ -40963,7 +41203,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c1f6958cb6402118c12bc4e79eae7b0", + "key": "9725459ea469b7f5fcd092303a62ca55", "notes": [], "params": { "forceDirect": true, @@ -40996,7 +41236,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3fe281d3fb7a8b07688e9aec61737d12", + "key": "a883cc2db8ca08aee33a81f02125ac85", "notes": [], "params": { "seconds": 0.5 @@ -41010,7 +41250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1b7029ebd4702b6e13c2575260ad126", + "key": "5a1a1c00507358a705793a1b66950d14", "notes": [], "params": { "correctionVolume": -1.12, @@ -41029,7 +41269,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "310aa3ec0ad0225989e67f87d93aa105", + "key": "dfbc5d9d725cad560214169fe463df61", "notes": [], "params": { "seconds": 0.2 @@ -41043,7 +41283,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d8bf3de11b75c102ba7e46ac07278383", + "key": "ab624d30ba761334d13a6a0a4f01588f", "notes": [], "params": { "forceDirect": false, @@ -41075,7 +41315,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a43492eb09908e5585201cf9d7e835bd", + "key": "a0bea0219363a74f7100004f4a26fa8e", "notes": [], "params": { "correctionVolume": -1.045, @@ -41095,7 +41335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9ceddeb89cad225117aa8560af150d4", + "key": "985fc1f8bae3fb43bf584f4a5e9dad4c", "notes": [], "params": { "seconds": 2.0 @@ -41109,7 +41349,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8587525a169c3e5c89f732ed8ccb95e", + "key": "061adad76280693e2dc096137dd4e140", "notes": [], "params": { "forceDirect": true, @@ -41142,7 +41382,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ceef66dbbd4c8240ea66928abb05e2cf", + "key": "161562b994e87b53d96c0060579fb714", "notes": [], "params": { "correctionVolume": 0.0, @@ -41162,7 +41402,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb71a906ff4f8206d3d44553534c7fb9", + "key": "a6808dbd2e076be541f1c858193a188f", "notes": [], "params": { "seconds": 2.0 @@ -41176,7 +41416,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1b08d086fbf2f5ae8e7313869acdc70", + "key": "a36a8e94d3e96bebb48c44efd22f3ae5", "notes": [], "params": { "forceDirect": true, @@ -41209,7 +41449,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6822c79c70dbb5019cac89ae027b1c2f", + "key": "8a836b7f15be59c992a31e9e32b9e062", "notes": [], "params": { "seconds": 0.5 @@ -41223,7 +41463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd4842fea8fd14206a54cf1611a46b4b", + "key": "5dae5e4945bcaaadc50217ba9de87fb2", "notes": [], "params": { "correctionVolume": -0.75, @@ -41242,7 +41482,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c263bfb2097f9aeb384e8bdf86bd5dce", + "key": "6896348eeddf8d22fff6b5c742e55625", "notes": [], "params": { "seconds": 0.2 @@ -41256,7 +41496,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0c7140582fcb613d2f5a9abb94d2b89", + "key": "eb7f0ec61da9879423837ead107589bc", "notes": [], "params": { "forceDirect": false, @@ -41288,7 +41528,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "570e64796ec758e32847cedff2beaca3", + "key": "cce837b7a5e92dc7b7299f896bc91f08", "notes": [], "params": { "correctionVolume": 0.0, @@ -41308,7 +41548,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "026666619df0ee0904b5799bc2500fdb", + "key": "dad90d0bb3ae31557d21f7382af1bc44", "notes": [], "params": { "seconds": 2.0 @@ -41322,7 +41562,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa7bbae91c5212ef3e02bd6ee2a3a170", + "key": "5191c66aea2c2212b710ca04de431e59", "notes": [], "params": { "pipetteId": "UUID", @@ -41338,7 +41578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b8b5523f064c59fbc9be97c2ace9d009", + "key": "c082115e0e5d8c2d7f20fe5d692cf12e", "notes": [], "params": { "pipetteId": "UUID" @@ -41352,7 +41592,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1aae973ecbdbb296874449f8bfe6afb", + "key": "134eb400458205629a2eda20af683e99", "notes": [], "params": { "forceDirect": false, @@ -41384,7 +41624,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9cd273afd3865c512e461615300847c", + "key": "2e3e7cab4bd150a278af37882eefcb97", "notes": [], "params": { "forceDirect": true, @@ -41417,7 +41657,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f7f3ae5591cd5778be435d4974d4694", + "key": "edf2ae8448c5b3fe520c8fae6d60ee24", "notes": [], "params": { "correctionVolume": -1.045, @@ -41436,7 +41676,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84398740b71c3fd864cd855ad20e6b37", + "key": "bc51ebc3eefed031aab28953f22f5bdb", "notes": [], "params": { "seconds": 0.2 @@ -41450,7 +41690,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6eb42ae8db4fa78542d405122551e24", + "key": "aa45a38a85c12c41d406a5bd471ee65f", "notes": [], "params": { "forceDirect": true, @@ -41483,7 +41723,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4475b69ed6f5627de22460e274f2a736", + "key": "b1acf35be675e78eed2c63f73923b834", "notes": [], "params": { "seconds": 0.5 @@ -41497,7 +41737,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "189ec7348da08526f28c4823c5f6ac61", + "key": "fedd1bd6c787c70793c860a40912db15", "notes": [], "params": { "correctionVolume": -1.12, @@ -41516,7 +41756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdd81f3e48042788288a518574382b8b", + "key": "9920d5559ba133092b6a789e83f7a1a9", "notes": [], "params": { "seconds": 0.2 @@ -41530,7 +41770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "67931d03a100a42cf0e2271697354f56", + "key": "e177e0766788118d699f1b73a194bbef", "notes": [], "params": { "forceDirect": false, @@ -41562,7 +41802,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb1cf3b3921eb8950e4211afea329f36", + "key": "1b780b64e74d0b74998c6601884f3891", "notes": [], "params": { "correctionVolume": -1.045, @@ -41582,7 +41822,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e39d7f707e925988d2f8ed5c899b42cd", + "key": "7c8004382146758722c9273f1b457457", "notes": [], "params": { "seconds": 2.0 @@ -41596,7 +41836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e2ff1d5bcc330a1612d89ca2b8b2a6c", + "key": "e5f3d8826829b37fe53ec4ff92f4245c", "notes": [], "params": { "forceDirect": true, @@ -41629,7 +41869,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d68533343ea914137b90bbe016684dbc", + "key": "acc0dd35a86edc086d017737b9d12575", "notes": [], "params": { "correctionVolume": 0.0, @@ -41649,7 +41889,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f30fffc1980d034707bfc91406642941", + "key": "863995a1fb8762c47c50b67f0b2d8470", "notes": [], "params": { "seconds": 2.0 @@ -41663,7 +41903,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e88be83c74f60ffb1249cc72ebd1d61b", + "key": "8117277db6703222e96dd760f37994bb", "notes": [], "params": { "forceDirect": true, @@ -41696,7 +41936,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be332f2525916dbf6bc7bd0d45dc546b", + "key": "f20be5ef09dae9d826a113004e28bdb0", "notes": [], "params": { "seconds": 0.5 @@ -41710,7 +41950,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3666eabfb23cd5a43841d1951e7be7ef", + "key": "26324cb765e44f06b33011eed6df6e90", "notes": [], "params": { "correctionVolume": -0.75, @@ -41729,7 +41969,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2da4b01cf1020d0ba54e1f8e89c516c3", + "key": "8e38a9fc9048bf9a27d843ca8340f081", "notes": [], "params": { "seconds": 0.2 @@ -41743,7 +41983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c279291e71c29ca523f99f2fe1c872e", + "key": "bd42a6a295a7ebf5be5c9739db22ab1e", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -41772,7 +42012,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "684b0febbbdc253c364084a1c342cda6", + "key": "4a9e4ea2a81d1d7789c9848b0efb94c0", "notes": [], "params": { "homeAfter": false, @@ -41787,7 +42027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6aed01a59dafbfbb88224623ee24150d", + "key": "1b24f7ac5f19157f36a847771967446e", "notes": [], "params": { "liquidClassRecord": { @@ -42158,7 +42398,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8bd416293c403913e4cec15ba8e0377", + "key": "d08ee88b1f4bb63b275a1a2c8971a3f6", "notes": [], "params": { "labwareIds": [ @@ -42180,7 +42420,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b31e1a03b9ecb71b471f6cf0aecfadf", + "key": "621a5ce83ae0de91a6217503c72482fd", "notes": [], "params": { "labwareId": "UUID", @@ -42213,7 +42453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "123db73de37a522b5d9adaefdc1f87e4", + "key": "1aaa8b1b67bb27fa98809ad36935bf68", "notes": [], "params": { "forceDirect": false, @@ -42245,7 +42485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dde49215a6c7a066429555a70b22703a", + "key": "f5cd2e135ac23170276aa5403dd0313c", "notes": [], "params": { "pipetteId": "UUID", @@ -42261,7 +42501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e30768e9783034aa186d38a2cc6bc89", + "key": "a23fd718a9910b6f22a2bb66b69f8142", "notes": [], "params": { "pipetteId": "UUID" @@ -42275,7 +42515,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0bf94d3618dc1e4b2b0ac8a8526b2ac", + "key": "e12e63e463aea4c6cb74c0129795149e", "notes": [], "params": { "forceDirect": false, @@ -42307,7 +42547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e7b61ad67655f5a8222734ac12b2d7f", + "key": "dc04f8cdddd24b04f390686b70523097", "notes": [], "params": { "forceDirect": true, @@ -42340,7 +42580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90d798adc8fa0c8b684b3c2d48211822", + "key": "18eaee14e69dbd3c1d6cf5049b8fd83e", "notes": [], "params": { "correctionVolume": 0.1575, @@ -42359,7 +42599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77935fdf1776404012f23bac529768b0", + "key": "79fd6d7ba976d55519788b025f16ce46", "notes": [], "params": { "seconds": 2.0 @@ -42373,7 +42613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14b358a5e34142d7a59c1348af8f97a8", + "key": "3e3fa7ca7c0ad1480edc06cff7d4ae0c", "notes": [], "params": { "forceDirect": true, @@ -42406,7 +42646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe2f4d6832e8c69c934753aa50826e0e", + "key": "f8a72c74cc92420a1e9433b07bb5aa13", "notes": [], "params": { "forceDirect": false, @@ -42438,7 +42678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a152d196f6d64c9b6e8785e671fe3742", + "key": "cbdc50bf3caa91bebc084bec1563225c", "notes": [], "params": { "forceDirect": true, @@ -42471,7 +42711,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15c6b3ff9511f85d7ce1f751e138b26c", + "key": "f859ff049d4c531ec7f82706d8d572bf", "notes": [], "params": { "correctionVolume": 0.0, @@ -42491,7 +42731,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48514181fe808b5e367c9528ba935348", + "key": "9a1d7ae245346f535690f5f1d82f4b2d", "notes": [], "params": { "seconds": 1.0 @@ -42505,7 +42745,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d44042e859bd55be89ee8425ad59c589", + "key": "07d2e0029594d1619c2502bc6003e973", "notes": [], "params": { "forceDirect": true, @@ -42538,7 +42778,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5903ed3412a42860a9b09aa96971cd4f", + "key": "16981a013c12a65dd09fc70f32f98b49", "notes": [], "params": { "pipetteId": "UUID" @@ -42552,7 +42792,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0716443f7796156db046590679cd76f0", + "key": "2d7b88c4ce5db6707c47542d942d0514", "notes": [], "params": { "forceDirect": false, @@ -42584,7 +42824,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd56b0432fb134be8ba8705290f6702d", + "key": "7ca3b8661273a191f5abeb1ed6b2f438", "notes": [], "params": { "pipetteId": "UUID", @@ -42600,7 +42840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1917ef348821b90546ef8f6d433dcdf4", + "key": "8eb587bfb4b0895d06b0c53d83fbbbd7", "notes": [], "params": { "pipetteId": "UUID" @@ -42614,7 +42854,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b635a07f8b8db319350f903a2ba4c02f", + "key": "9fe28e0d220da5f207704f7fb409ac91", "notes": [], "params": { "forceDirect": false, @@ -42646,7 +42886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "900505d7ddaf0e8cf740aa96fd4c90b9", + "key": "adbba191454be5799ef60e50873859fa", "notes": [], "params": { "forceDirect": true, @@ -42679,7 +42919,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab510807203fb8352635a5e345d1db0c", + "key": "280451c899e75d32f696363c2dc6a690", "notes": [], "params": { "correctionVolume": 0.1575, @@ -42698,7 +42938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45cd1e1cbe8d74cd6de98d03d5a79b99", + "key": "f3b20238d786ac692d259fb654183e1d", "notes": [], "params": { "seconds": 2.0 @@ -42712,7 +42952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfa9884207568f27c2b9b94c0136509f", + "key": "5f4a05ce1a0f5c4b955a6d15e31b955b", "notes": [], "params": { "forceDirect": true, @@ -42745,7 +42985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77e69543d2ef0c741190bfad6b71a027", + "key": "6a55fdaefc84c0eb5960f4be7f3766d9", "notes": [], "params": { "forceDirect": false, @@ -42777,7 +43017,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ae8fd49aafb633c2a118c2767541f67", + "key": "94c3af5089f86e09a1e274c9b7f4d6b0", "notes": [], "params": { "forceDirect": true, @@ -42810,7 +43050,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33846e2aff340460f43954d3a6241f7e", + "key": "c872550373e91189d466a88746e6965a", "notes": [], "params": { "correctionVolume": 0.0, @@ -42830,7 +43070,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d08bc757d0ea04dba5d2eeefad5880f7", + "key": "a531c3c6be08fcbeb2b102ae8416834a", "notes": [], "params": { "seconds": 1.0 @@ -42844,7 +43084,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc584d9504c9f6531d91d6c79a1f84a1", + "key": "b38594aaf2480414f8adf2e4f77bb499", "notes": [], "params": { "forceDirect": true, @@ -42877,7 +43117,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48832f563ea97e63c155dac7cab89a32", + "key": "a6ef99a4ce6870f0fa43bfe8a3241645", "notes": [], "params": { "pipetteId": "UUID" @@ -42891,7 +43131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54a665ba71353c52a40e4aaa7b8da2a8", + "key": "33ba0767702eb69a0dc9cadec5b31f94", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -42920,7 +43160,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b56ab42d3f1298b804fdb42b9bf6384b", + "key": "d79b9158528b51f86e7e1c158bb3ea60", "notes": [], "params": { "homeAfter": false, @@ -42935,7 +43175,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b89039ba66d05325ffeb881b337e3e3", + "key": "95f6bc10b361edccfb1d614acab0eca7", "notes": [], "params": { "liquidClassRecord": { @@ -43294,7 +43534,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fc7c1281fe1ddbf802e2fb3ed1759b2", + "key": "b39ec0c99706599f1f6a992b972d9740", "notes": [], "params": { "labwareIds": [ @@ -43316,7 +43556,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60af40ea2ef98c7139c2f12c4c548ba5", + "key": "4cc61c69dd15b4b90df2c684a5eaa4ab", "notes": [], "params": { "labwareId": "UUID", @@ -43349,7 +43589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a3fa6bda324e32fb74ea3b07957d7a6", + "key": "781437def20247a5930c8d42304e71da", "notes": [], "params": { "forceDirect": false, @@ -43381,7 +43621,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd36e3eb9dba76a070a6d47a533e795f", + "key": "ab7e184dc0a273d0ff53e0a246c55943", "notes": [], "params": { "pipetteId": "UUID", @@ -43397,7 +43637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4c36b141eb4702d30424747cecbcc08", + "key": "fc90e4c599a92367eff7c33bbe430d09", "notes": [], "params": { "pipetteId": "UUID" @@ -43411,7 +43651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "607bd426b38317dc8220afc12058ba7b", + "key": "eef9aa8110a1faa85c9c1481154607d3", "notes": [], "params": { "forceDirect": false, @@ -43443,7 +43683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5279343dbc950a3b031b5886dcd58974", + "key": "6ee3b34641ca3dd9994674c5c56393b8", "notes": [], "params": { "forceDirect": true, @@ -43476,7 +43716,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dfbacf1508c0f4c8d52c7743ea65fd9", + "key": "b3d6793888d160970b7c83b999f6dc28", "notes": [], "params": { "correctionVolume": 0.0, @@ -43495,7 +43735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "500421809a90c661d0a362ba4b5452ff", + "key": "b04bf74b6500faa25254008a9d3ab2da", "notes": [], "params": { "seconds": 0.2 @@ -43509,7 +43749,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fec0ebbe1acc37988541fcd8e4026650", + "key": "78524a978abb1698f8392a6f4ac6cfab", "notes": [], "params": { "forceDirect": true, @@ -43542,7 +43782,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43402d4f9789d1cbca0a263ed360575d", + "key": "8c1bba0685c70cd8da0b190697a2b339", "notes": [], "params": { "correctionVolume": 0.0, @@ -43561,7 +43801,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba8dbf77b36f6b4882cf383ea38bf413", + "key": "e8be6cfb6d4c21e567f5e11d51bc00c1", "notes": [], "params": { "seconds": 0.2 @@ -43575,7 +43815,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb9c3993662242930dc71e5243d86f60", + "key": "4edbeb0918b73557d6bc1ac48191feb7", "notes": [], "params": { "forceDirect": false, @@ -43607,7 +43847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c967d3b8d35dcf8aaec126418430e80", + "key": "0764b1fca04e9ac49b5e951d22eddb02", "notes": [], "params": { "correctionVolume": 0.0, @@ -43627,7 +43867,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1cce26e7359de6d83eacde8be1d7f19", + "key": "a8cfdf36d474ceee1ae814639b2c2908", "notes": [], "params": { "seconds": 0.2 @@ -43641,7 +43881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "138d55ce8f37d76a2607c4e64759c64a", + "key": "c565f3fd82ced9bb4f07523464a395a4", "notes": [], "params": { "forceDirect": true, @@ -43674,7 +43914,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5a4db5e2aa62c8ddd5c5c57768b3181", + "key": "4015d20e4d3e84fb63d73183ebac7a0f", "notes": [], "params": { "correctionVolume": 0.0, @@ -43694,7 +43934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20cf463cff4ba39c3fa1022c6d817b18", + "key": "f14b9d526c35dfc16d1edb1446edafbf", "notes": [], "params": { "seconds": 0.2 @@ -43708,7 +43948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30e91fe605301da4a317725707d09dff", + "key": "eb0102c0ed0350c49b1ac40a80d14bd8", "notes": [], "params": { "forceDirect": true, @@ -43741,7 +43981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a3788a5d68a09419531e73384a713c8", + "key": "387e0d2c8d6534069a7a7ed5b18b7693", "notes": [], "params": { "pipetteId": "UUID" @@ -43755,7 +43995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d621a2cad73d84acf14ceaa56731944", + "key": "189519a6dc5263705b715ae318873ff7", "notes": [], "params": { "correctionVolume": 0.0, @@ -43774,7 +44014,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f51151f895da4f45846c70f23c55195", + "key": "381d17b8f1aa23093d42d23b5bd6ae38", "notes": [], "params": { "seconds": 0.2 @@ -43788,7 +44028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca7488daf635a6cac7e9ae111479d308", + "key": "f92c3e2695316bf22c4a7a812330450c", "notes": [], "params": { "forceDirect": false, @@ -43820,7 +44060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a3047aba4df8a5365acaa4eea7de3c5", + "key": "033e13a7b5a3b48f9c5790151e3b9c03", "notes": [], "params": { "correctionVolume": 0.0, @@ -43840,7 +44080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9370c00c9d9050c9c5e6536d8f3bfec8", + "key": "6dfb592a965d4c93394c519dcf9b290e", "notes": [], "params": { "seconds": 0.2 @@ -43854,7 +44094,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c7ddc1695e673f711c03b0e8cc1c1a0", + "key": "e0f8ae8eb95f86652f15818dd48a7b51", "notes": [], "params": { "pipetteId": "UUID", @@ -43870,7 +44110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6aa1fd3cd20a58f97541714b8b92be8", + "key": "f56ed98b0a98da56503fd1ad590c5feb", "notes": [], "params": { "pipetteId": "UUID" @@ -43884,7 +44124,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26b037c6b8eada45e3ccac36c95ea328", + "key": "f26073b8602badcfa51603ac3edd327d", "notes": [], "params": { "forceDirect": false, @@ -43916,7 +44156,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3dd461d1248e14f2ad51b15b570235b9", + "key": "9d198d70155da69c5db77e7f1dbafe26", "notes": [], "params": { "forceDirect": true, @@ -43949,7 +44189,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa0fe311a2d51a5024608965910521cf", + "key": "105aa9e109837c4940a92865b53d4c05", "notes": [], "params": { "correctionVolume": 0.0, @@ -43968,7 +44208,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e0fcce7e3660d770a71a39e71028fab", + "key": "ac6390717c6399f148ff934473f0cc41", "notes": [], "params": { "seconds": 0.2 @@ -43982,7 +44222,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4722d8bea02cb0213fe4f351adfaa96", + "key": "a7a8c5c459abaec243ebf45fc873fae9", "notes": [], "params": { "forceDirect": true, @@ -44015,7 +44255,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1aff8f5565112cc383715b275f365dfa", + "key": "9756f66121d0b11685fba663cbc9f16c", "notes": [], "params": { "correctionVolume": 0.0, @@ -44034,7 +44274,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff7eacc2ae6f30bde65edc70e555fb24", + "key": "1f167edbdf79568d95b57d1b07619fd8", "notes": [], "params": { "seconds": 0.2 @@ -44048,7 +44288,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af976b32b52ded2b0cfe65eb595c04e3", + "key": "0b8ee882ce61435711d721f55a7600ac", "notes": [], "params": { "forceDirect": false, @@ -44080,7 +44320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31979749e2ca08205d9e7cb3c97fba7b", + "key": "b8f69fba0a16859157510b93bf0c52e0", "notes": [], "params": { "correctionVolume": 0.0, @@ -44100,7 +44340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ce2c5ad924b3dafc20f6e2a25bcd6c6", + "key": "6a8d9d2cbfc048d0e49d2d9aeef15996", "notes": [], "params": { "seconds": 0.2 @@ -44114,7 +44354,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6993cbfa3fb42f698b4874724cdbbcad", + "key": "e36999be78afa390e60a81b9412d4ca0", "notes": [], "params": { "forceDirect": true, @@ -44147,7 +44387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54b68f7a00ebc65defcf325968ab7ffe", + "key": "c83d8a8427644dbc8c9349eae5765635", "notes": [], "params": { "correctionVolume": 0.0, @@ -44167,7 +44407,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "787d95fc5cdaaa093ec817f087ce4be5", + "key": "3788bf7a77982350defdfa13267fc723", "notes": [], "params": { "seconds": 0.2 @@ -44181,7 +44421,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c37410696f996c52d14635731c13c472", + "key": "764ee3c1172ce80c5661af72c1bb159e", "notes": [], "params": { "forceDirect": true, @@ -44214,7 +44454,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0a1ccb105d6bf1b00143bea0b05120d", + "key": "c6e5abb8dcf1d13cb405253042604599", "notes": [], "params": { "pipetteId": "UUID" @@ -44228,7 +44468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "802ce1b4311e0494a266829df8ba9117", + "key": "ada3598940794ecb4ae9e0906d8bc657", "notes": [], "params": { "correctionVolume": 0.0, @@ -44247,7 +44487,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "832d5eed6001279e099ad896ae7b120b", + "key": "ee05df941701939d34e4d2abf35de037", "notes": [], "params": { "seconds": 0.2 @@ -44261,7 +44501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e515b023122a692058c9029c65f8a88", + "key": "2bfd78932737d06fd6d3d3ef327362b7", "notes": [], "params": { "forceDirect": false, @@ -44293,7 +44533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73e98ae8d13714d8726d47455aa01c3a", + "key": "9175d6274940d135087433fb97696229", "notes": [], "params": { "correctionVolume": 0.0, @@ -44313,7 +44553,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0224ace625aeb97f29fc0d7639928f6b", + "key": "ab4f24edbf50752ef393ba5189d7c967", "notes": [], "params": { "seconds": 0.2 @@ -44327,7 +44567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e344b656756ae7933668643f13aca05", + "key": "bc985bf013037777be6408c3346040aa", "notes": [], "params": { "pipetteId": "UUID", @@ -44343,7 +44583,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d9364d4a120292e566623bc7a8b22ba0", + "key": "39898690c8e8da57e3e9647b8e11df62", "notes": [], "params": { "pipetteId": "UUID" @@ -44357,7 +44597,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19e9f5d8f0864dca6b1093633f7f7d8f", + "key": "5956afb98a79c15e3f962b290cd7677b", "notes": [], "params": { "forceDirect": false, @@ -44389,7 +44629,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5764a14dfb91712ba8e28c0066fcb76d", + "key": "f698295ca8b3f1901599c5b175a1b51e", "notes": [], "params": { "forceDirect": true, @@ -44422,7 +44662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46dc6e09aaed3a104af6eb364889bd12", + "key": "13054243b993d2d78c8c54a6bd89af65", "notes": [], "params": { "correctionVolume": 0.0, @@ -44441,7 +44681,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6c3e481c8bb38e70966631070879568", + "key": "bf6e47aefcaebce76c0ebd8a31d09e90", "notes": [], "params": { "seconds": 0.2 @@ -44455,7 +44695,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d87be1714a03f379fd73ba0f3f8fdec9", + "key": "b433e735069686589d794853343a9d0c", "notes": [], "params": { "forceDirect": true, @@ -44488,7 +44728,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96baddbeb39918ab8ad6700c33ee5f75", + "key": "23c04a1175852e69036d45e58656c130", "notes": [], "params": { "correctionVolume": 0.0, @@ -44507,7 +44747,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9b6f1b07b369a89ba0bdd37f347d53c", + "key": "40c1141e28855a1c9252cd0a9d9e9013", "notes": [], "params": { "seconds": 0.2 @@ -44521,7 +44761,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c559a0a94b6fa7670b7e1e64dc23086", + "key": "7947687e6f6d6f9fef017af17a2e0d57", "notes": [], "params": { "forceDirect": false, @@ -44553,7 +44793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "482203b80cea56158151ea668471c50d", + "key": "b8f3f87f68f8a12140825fb5c0ea8a40", "notes": [], "params": { "correctionVolume": 0.0, @@ -44573,7 +44813,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "216709391b200032413e030b0eec043e", + "key": "8ebd68c42dfe89be8e02b34901215675", "notes": [], "params": { "seconds": 0.2 @@ -44587,7 +44827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7c126a36f64046e9ff21fca62f28931", + "key": "f2a7a81026eb4d8c8093b230138a0a3f", "notes": [], "params": { "forceDirect": true, @@ -44620,7 +44860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dff599d56001ea36a680bae03fec6d4", + "key": "e3c32aa676b0b9c0530522706b75272b", "notes": [], "params": { "correctionVolume": 0.0, @@ -44640,7 +44880,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43391f6e8dab45e2d51c9304d56b0739", + "key": "f3e5a985633675d9317e013689bb4b04", "notes": [], "params": { "seconds": 0.2 @@ -44654,7 +44894,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a697e7d810d0dd9ea78138b075f31ad8", + "key": "43b85893b83b75340fd72e9fd0fd1018", "notes": [], "params": { "forceDirect": true, @@ -44687,7 +44927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f3a8a8034a271aeab4230263723bb9ca", + "key": "c3565f276d522cff4923e16b0e994b40", "notes": [], "params": { "pipetteId": "UUID" @@ -44701,7 +44941,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d75a6dbb387e7e37d8fc56bdf5e6656", + "key": "f35449cba7bcaa7c4003fc3da3d37b84", "notes": [], "params": { "correctionVolume": 0.0, @@ -44720,7 +44960,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a35a8287ee32da45dc01828de8dc575e", + "key": "737799d2be801172cd500772c8bf170a", "notes": [], "params": { "seconds": 0.2 @@ -44734,7 +44974,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ddf32e2fe658dd6d3fbe9dc6c38bb390", + "key": "06baa8498c647fa8eac4a711766b7100", "notes": [], "params": { "forceDirect": false, @@ -44766,7 +45006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0439e9a1f5373b928834a9cea055dde4", + "key": "0a34e188dfbb039b81939f87d93ce7b0", "notes": [], "params": { "correctionVolume": 0.0, @@ -44786,7 +45026,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "749a0cc23df613e2a2803d39faa2877a", + "key": "50e8920522381dec59355e18f8ab4bbc", "notes": [], "params": { "seconds": 0.2 @@ -44800,7 +45040,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ceb9b80558e87228f05c5df325a11bef", + "key": "52be94c1b4e7610aca0c798dcdb75dac", "notes": [], "params": { "pipetteId": "UUID", @@ -44816,7 +45056,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4490f81de10687aa7b4e22fe57980b5f", + "key": "2274b98033a23bc7ac4f9474aaacce7e", "notes": [], "params": { "pipetteId": "UUID" @@ -44830,7 +45070,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4068b8e8bdff571c63203c24780d8350", + "key": "0c7e2094a6d855076d18dc25a20df023", "notes": [], "params": { "forceDirect": false, @@ -44862,7 +45102,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57457add2d2438c205bac4e3861a4fcc", + "key": "c3d5300248da9899fcd3b73bd9b6e776", "notes": [], "params": { "forceDirect": true, @@ -44895,7 +45135,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3cb97b87755e2d180b0b3c633e53596", + "key": "ddb4d93cc4b26096990299ae8b759716", "notes": [], "params": { "correctionVolume": 0.0, @@ -44914,7 +45154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1bb804a8bdf7da7a790cfc4da669664", + "key": "d92e72f2fc7c8f6a96da9c8b7a71afdb", "notes": [], "params": { "seconds": 0.2 @@ -44928,7 +45168,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0fe46f4ab247ae82d916d5e7eb7ce189", + "key": "f6d3e9f9cee56f2d88e98ad75f273367", "notes": [], "params": { "forceDirect": true, @@ -44961,7 +45201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "197d7444d834a7fa3c10ccaca34990d2", + "key": "f1ca891af875dd739274e58c54f5e79f", "notes": [], "params": { "correctionVolume": 0.0, @@ -44980,7 +45220,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f08d06c4e6857350383c228fddcc46bc", + "key": "4a25ea353b2128d40a194a012118285a", "notes": [], "params": { "seconds": 0.2 @@ -44994,7 +45234,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abd5c82a4695a106ba3cfff8e138b866", + "key": "2c2c2b9a45850642a9a25d8920d89c1d", "notes": [], "params": { "forceDirect": false, @@ -45026,7 +45266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da5db425758f3fd245e9819bc8662c65", + "key": "149fc9ce38e7348f3d6c9e6e862b2faf", "notes": [], "params": { "correctionVolume": 0.0, @@ -45046,7 +45286,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1090c81b8a4fdd5dc1fc74e49e6aa3d8", + "key": "26d17f07b0c80e5cb596f6b42ccd6db0", "notes": [], "params": { "seconds": 0.2 @@ -45060,7 +45300,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd7af14a701491efaaf767dff4eac528", + "key": "abbbddee82b15bd404eee5c171da84ff", "notes": [], "params": { "forceDirect": true, @@ -45093,7 +45333,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "084da5a574d91a45f46b5955288999c6", + "key": "1d5317db6da76d6c79f8fa4c0c670779", "notes": [], "params": { "correctionVolume": 0.0, @@ -45113,7 +45353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b42b4dc5a7554ad2edf9a05bcdf58a9", + "key": "d7af567bc0e9e8bf5828c1b554e62d13", "notes": [], "params": { "seconds": 0.2 @@ -45127,7 +45367,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a636898002d0adbd9e1b47805e17a17", + "key": "e47b9178b66edeb406caba43a09f0705", "notes": [], "params": { "forceDirect": true, @@ -45160,7 +45400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe9220557e5d02611013c3e6492741a3", + "key": "5c7877db4040fdff1e7cd49f59953cdf", "notes": [], "params": { "pipetteId": "UUID" @@ -45174,7 +45414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1bb6db6902196e7591e37ab9085e8af2", + "key": "0d2e3ad044c2dbcbf411b9c8fccc89bd", "notes": [], "params": { "correctionVolume": 0.0, @@ -45193,7 +45433,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2808a8c0593cddfb637d9298d2c3136d", + "key": "05e2f24c0f8bfe6706d39c7675ecafe7", "notes": [], "params": { "seconds": 0.2 @@ -45207,7 +45447,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3a0590df90ec7a6bcbd6aceb9fb5e88", + "key": "65785fd6c2fb8364473ddc625c95e038", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -45236,7 +45476,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ca19eb07347f1a0b85d4ba851ab3dc5", + "key": "7bf61c3ff9c8fa93235c8324ea96ed1e", "notes": [], "params": { "homeAfter": false, @@ -45251,7 +45491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9cc680d5c5237b461d2d7822f1789df", + "key": "910623a076867311c4b9b2af0b765664", "notes": [], "params": { "liquidClassRecord": { @@ -45638,7 +45878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7704ddbf2dd4e1c82544931ac1714048", + "key": "2b01f43469b9b199066a48a65ac04150", "notes": [], "params": { "labwareIds": [ @@ -45660,7 +45900,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d56e0aef66617b0644da2e8c1f8ef8b", + "key": "d936f0d1d2b99c2e7427edaaa2d1fe12", "notes": [], "params": { "labwareId": "UUID", @@ -45693,7 +45933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21e9aead356a6bec8d03654f22965b70", + "key": "0181e0d615900ca856e10cb7fe10185d", "notes": [], "params": { "forceDirect": false, @@ -45725,7 +45965,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "76d4e349c3b98779664972ced72977d1", + "key": "abd779935efe31b102d72c64bd33f270", "notes": [], "params": { "pipetteId": "UUID", @@ -45741,7 +45981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af3a9a6f86098c94898985e249251f53", + "key": "8cdd723491d7aec5241d6d1166493f1f", "notes": [], "params": { "pipetteId": "UUID" @@ -45755,7 +45995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e330c9bd91980789d64456aefed0812", + "key": "d879d03bd8527b42351e0f7183901f01", "notes": [], "params": { "forceDirect": false, @@ -45787,7 +46027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10083bb9888d2dbf9b27b273a26d9567", + "key": "4b55b83dc5cab920dfbb96c406216263", "notes": [], "params": { "forceDirect": true, @@ -45820,7 +46060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4467d03c9c4f81d6a97931b70d40df6b", + "key": "afb5bc5f9087ca89bde0bec4ad3d2022", "notes": [], "params": { "correctionVolume": -0.3725, @@ -45839,7 +46079,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "51c8aa1b8d6219596a459205369c03a3", + "key": "e618ed480b7179db0999ead7cd8f093c", "notes": [], "params": { "seconds": 0.2 @@ -45853,7 +46093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8897b7374ed18a9ad554e045d70997de", + "key": "3c562c80268e63c13f23005528eb005a", "notes": [], "params": { "forceDirect": true, @@ -45886,7 +46126,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c7c6d4efbb3a86778e6dae637ce79ce", + "key": "f75f3408a5e8e3b84a8eba5a25aa2b44", "notes": [], "params": { "seconds": 0.5 @@ -45900,7 +46140,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df4d6d472225d900ce3f61a014247a0a", + "key": "b3b4b64722877cefa7bf0c0be29b6753", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -45919,7 +46159,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a0c7be756a4f8a93eb01f7f704402af", + "key": "d7b3730101ea129ca46c049e0c5690c3", "notes": [], "params": { "seconds": 0.2 @@ -45933,7 +46173,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "256b5d9e7b88fd20a95549df07b74bde", + "key": "0a4fc483f518ccd89ad69e087b090bf0", "notes": [], "params": { "forceDirect": false, @@ -45965,7 +46205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ee0633f87ebfb2e9beb4e784f90b24a", + "key": "83f7d32417e1a4aee9caa6fe95f5b184", "notes": [], "params": { "correctionVolume": -0.3725, @@ -45985,7 +46225,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a74f1018f2bcfa9d02544d865ba89cb8", + "key": "532fbd21e8310f22161dde46bc6776ef", "notes": [], "params": { "seconds": 0.2 @@ -45999,7 +46239,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "902ee78cb6279a8997f6eee6c79d6c33", + "key": "0c536e81b9ab59537fe326f19f12c47f", "notes": [], "params": { "forceDirect": true, @@ -46032,7 +46272,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "985df29e110dd4e422f5d5a0bcc293fb", + "key": "1109bad0f020f874974ce5dbda0e0d69", "notes": [], "params": { "correctionVolume": 0.0, @@ -46052,7 +46292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b024e70b760e2bb9701c55a7a52f87f9", + "key": "676fd8ed94d072c3ce3c5bd6c7b6a9cb", "notes": [], "params": { "seconds": 0.2 @@ -46066,7 +46306,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "468f5432ebc6f150f5dcdbd1850fc595", + "key": "c20661062bc63257985093ba43b68e41", "notes": [], "params": { "forceDirect": true, @@ -46099,7 +46339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "82f4241dc72cc013c11b60fc352108e2", + "key": "acfcfd406169fbfd6fb8d3b179a95614", "notes": [], "params": { "seconds": 0.5 @@ -46113,7 +46353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbd450374af22d6a69845676f370bdcb", + "key": "24c3db619e5dea1265904f45d8d42626", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -46132,7 +46372,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d06b521e8e15e721c90b76e5a80a384", + "key": "c0be7f62d4de2501c594a092b27bc0bb", "notes": [], "params": { "seconds": 0.2 @@ -46146,7 +46386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab3c93ffe92ecbefbbad42cd333f0e4d", + "key": "ac4c36af5900025d7dd3b2d1eb79eff1", "notes": [], "params": { "forceDirect": false, @@ -46178,7 +46418,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d42fdfcc94062690dd2ec857b7ab1dd9", + "key": "2b92f3cff40315f113d5ac7111a673fa", "notes": [], "params": { "correctionVolume": 0.0, @@ -46198,7 +46438,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98b2bea160fd48f956e564ade4314622", + "key": "4757b099df8f2afb117986d362a2f496", "notes": [], "params": { "seconds": 0.2 @@ -46212,7 +46452,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8e001ed1ea430c578aba092a0f43b50", + "key": "562383050b0606d9ecde0e2f62639508", "notes": [], "params": { "pipetteId": "UUID", @@ -46228,7 +46468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be1e9bd393b8ad6412e12c0134845b39", + "key": "56a7931f8c9d08ad6e6f56ec1c709436", "notes": [], "params": { "pipetteId": "UUID" @@ -46242,7 +46482,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b11dea8ee7aec0f1b9829de11373085a", + "key": "2ea4d558d2cb13b4cbb7cdbc59f1a3f3", "notes": [], "params": { "forceDirect": false, @@ -46274,7 +46514,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aebd0a2c3bae4a542bd844ef51ed1c81", + "key": "8c3ec93833da589fb410a6962a0accf0", "notes": [], "params": { "forceDirect": true, @@ -46307,7 +46547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2ba34da716c6480e56e5a1778372c92", + "key": "66f50d402f68c61008263df64fb23cb6", "notes": [], "params": { "correctionVolume": -0.3725, @@ -46326,7 +46566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c6158da38714aeeba5d7a0e0a932494", + "key": "5f15df32c25c20742773589fa53bd8b6", "notes": [], "params": { "seconds": 0.2 @@ -46340,7 +46580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "195dbf604a9f9f2bcb9335fc912feaea", + "key": "2e17e6f89385cfe86e230cb41bd6792e", "notes": [], "params": { "forceDirect": true, @@ -46373,7 +46613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18ae8b10f6ef697e942447fe3bec53c2", + "key": "0bf1440473e314587da6063dbfbee726", "notes": [], "params": { "seconds": 0.5 @@ -46387,7 +46627,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "512271b2b1d4e226cc6d111a7d37eb98", + "key": "0785c42e898e7a4b08e641ec9e93308a", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -46406,7 +46646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "016daf641721b5de761be384e0ff003e", + "key": "e97fdb14963efa5759eae23126f2666d", "notes": [], "params": { "seconds": 0.2 @@ -46420,7 +46660,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92e80547cba71ac1ccd852b69d2881d6", + "key": "4dad7948194d94d91b6aff1d3377848a", "notes": [], "params": { "forceDirect": false, @@ -46452,7 +46692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ebdafe4b99f29e33b494f987ef9c3dde", + "key": "dcc8847b883848f30001b9f0bd5a41ff", "notes": [], "params": { "correctionVolume": -0.3725, @@ -46472,7 +46712,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa3e77c3eefe58e85121bc70ff734f83", + "key": "f99997836c8140f6cc0f27c488339d6f", "notes": [], "params": { "seconds": 0.2 @@ -46486,7 +46726,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f03b5569312062c70f1bd44caca99f2", + "key": "13d0869f906ce248138df3a04d3bb68d", "notes": [], "params": { "forceDirect": true, @@ -46519,7 +46759,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30d0c7a2da54266b2bb14bd9a5c45746", + "key": "6db5c92ada1184c1f5bf49e2c5f35146", "notes": [], "params": { "correctionVolume": 0.0, @@ -46539,7 +46779,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80d9afd336c01cfa3fd82f70d4e729ec", + "key": "d6001c36f742bc75ea7ebf06f5dd343b", "notes": [], "params": { "seconds": 0.2 @@ -46553,7 +46793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77638d4a8057174b200f381fc6f27120", + "key": "4b9dfed2c5be2b81515d1c9214192ab4", "notes": [], "params": { "forceDirect": true, @@ -46586,7 +46826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef7a31b70e673a6eb6589eb6d479b9a8", + "key": "c1213a03b3038a3fb6a2351f95fb792e", "notes": [], "params": { "seconds": 0.5 @@ -46600,7 +46840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2c857c842c531a97e09e150a7ca4ce1", + "key": "5804b2b1c45d146c268247b60d55343b", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -46619,7 +46859,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a5598bfde59c3bd4b6a5ce0c4aa253e", + "key": "e23f3fbb9cd1048538b99b34f7daf989", "notes": [], "params": { "seconds": 0.2 @@ -46633,7 +46873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9609616fefc5323cb0cbb27f951c96e", + "key": "9a964cad5b594d7957ca50c32dcfc1ad", "notes": [], "params": { "forceDirect": false, @@ -46665,7 +46905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cbe85fc6560a765867348d7806f8526", + "key": "1bdf6c79c273fa7f2ce45752b13cecc2", "notes": [], "params": { "correctionVolume": 0.0, @@ -46685,7 +46925,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55817319e3b303a6e42902e148b1b941", + "key": "3a15fd08ef2e52d0dc84e905e702eaae", "notes": [], "params": { "seconds": 0.2 @@ -46699,7 +46939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "559ae52311b67c168ff266bc4ebec76f", + "key": "a7bad7c0be3287c3abb110c0a2d19b89", "notes": [], "params": { "pipetteId": "UUID", @@ -46715,7 +46955,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d313242ce0fd1301a62f96620930dfb", + "key": "debe507970827c253a7c8a70001b9a52", "notes": [], "params": { "pipetteId": "UUID" @@ -46729,7 +46969,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f02d18b8ad52934f297da66e4c017ea", + "key": "319b81e35dc9d2dc0612360f07b6b8ce", "notes": [], "params": { "forceDirect": false, @@ -46761,7 +47001,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a93874f8b9e761c0b0ad8db24cf7923", + "key": "404441fee1590fef232be7bbc5ae3249", "notes": [], "params": { "forceDirect": true, @@ -46794,7 +47034,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b25dd343d77040c79f529329791def3a", + "key": "a57593c7d57299555a989235bde5afe6", "notes": [], "params": { "correctionVolume": -0.3725, @@ -46813,7 +47053,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8c7fd6b7b1c507fec8618cff644cb98", + "key": "7e4bd296e42649a3f35050b1e115387e", "notes": [], "params": { "seconds": 0.2 @@ -46827,7 +47067,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "936d4a5f28812733c93810f3ed5b5632", + "key": "08e3527e59226d536e87b223932a9682", "notes": [], "params": { "forceDirect": true, @@ -46860,7 +47100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8dc5e6f67c73aa21bc2369d346c5eb26", + "key": "55d9bba614bce5f7d12e398fef3c71c9", "notes": [], "params": { "seconds": 0.5 @@ -46874,7 +47114,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d9f625efdb4c4b2e996eb713455b589", + "key": "6a1be4997d75ad8a454f9710c28697e7", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -46893,7 +47133,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b70a96a1d9656946b872fbfd9fb1157", + "key": "0e0e42adeeb924b3c5ea5917b10f3dee", "notes": [], "params": { "seconds": 0.2 @@ -46907,7 +47147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f41e187ef9c7ae8555d49bf97e844063", + "key": "f2e2f5afa13817a607b63a5b77e724c9", "notes": [], "params": { "forceDirect": false, @@ -46939,7 +47179,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "09da1223c0f3bd4450abb32b296f2fdc", + "key": "81c133b6d13dc0e5c879ac65f36d2df3", "notes": [], "params": { "correctionVolume": -0.3725, @@ -46959,7 +47199,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b773f8414c35e16118563bf4400ea15", + "key": "ef4bd95d3259bc4af589ceb8ee3e5d6c", "notes": [], "params": { "seconds": 0.2 @@ -46973,7 +47213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6b5ce75a08487e76da7894aaef1c93b", + "key": "e05149038f3b415f6e45bff98e9b12b3", "notes": [], "params": { "forceDirect": true, @@ -47006,7 +47246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e469c1f24b4b036fbfdf55786da9b8e", + "key": "90643741dab16b32a28f3ec5f3cbdf77", "notes": [], "params": { "correctionVolume": 0.0, @@ -47026,7 +47266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b29d19575bfd7a6b576daa27211fab08", + "key": "75f2cd91cf22ce81088482e36fc205c4", "notes": [], "params": { "seconds": 0.2 @@ -47040,7 +47280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c666e23b945edd2e125ae87b6455397d", + "key": "32a6c21ac7875ce1b162a830f2d7f8c9", "notes": [], "params": { "forceDirect": true, @@ -47073,7 +47313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ab994d8f47f531290b44fdd02af324f", + "key": "eac0e49c54480e8a09710eaa222af9ff", "notes": [], "params": { "seconds": 0.5 @@ -47087,7 +47327,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "700ceaf5a29fcb18e85fda4249200c56", + "key": "587fe32dbd0d96a89545ed61abffc41f", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -47106,7 +47346,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32116f6af74164fa3df96c5569d03dd1", + "key": "f2c64f09ebef8551ddbb3845ada06ecf", "notes": [], "params": { "seconds": 0.2 @@ -47120,7 +47360,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c28415516795183dc1198fd32e1432a4", + "key": "be87b0b438d6c96d3aa179fc4c7f6fb1", "notes": [], "params": { "forceDirect": false, @@ -47152,7 +47392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29a43bf23c5c37829bfa17a5cc853a7e", + "key": "1088cfd6afb69fc8530fc9ec6796b903", "notes": [], "params": { "correctionVolume": 0.0, @@ -47172,7 +47412,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4dc08d5a300d2ba9f7f56fd59d58d5c", + "key": "919017052c801e8dcccfcd30df2c6994", "notes": [], "params": { "seconds": 0.2 @@ -47186,7 +47426,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "276fa6a872125e0720f1539fd92a52c9", + "key": "957076a4591be32492b23121aca8c94b", "notes": [], "params": { "pipetteId": "UUID", @@ -47202,7 +47442,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d05810a61e5d6e7f9225637bee51e5dc", + "key": "77b9fe0156b923ccffa71e7ce0f26ff0", "notes": [], "params": { "pipetteId": "UUID" @@ -47216,7 +47456,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5aebc4636bfd5f845ed5d28beb1dd4c7", + "key": "58ebe8549282655d4c5f561ecc9e13af", "notes": [], "params": { "forceDirect": false, @@ -47248,7 +47488,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "551cc60349fe96ef0e1d038940428048", + "key": "f238bb1afd293f9eeab8ed409bf1c85a", "notes": [], "params": { "forceDirect": true, @@ -47281,7 +47521,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58e341b4b7c897ac1908d46f720e412f", + "key": "31d62c7c3a14dbd6adc852968a3a19ad", "notes": [], "params": { "correctionVolume": -0.3725, @@ -47300,7 +47540,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc45abda4a72321e00738789c8e01904", + "key": "89d4057d3d5567daf752e8ed281878cd", "notes": [], "params": { "seconds": 0.2 @@ -47314,7 +47554,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e41d1109c65a781eea7dc0b558d770a", + "key": "62dc5e82635db852ef7d46e756dac4c6", "notes": [], "params": { "forceDirect": true, @@ -47347,7 +47587,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7fcbb2258176e725c726170695f31315", + "key": "0e368793247abbc3b350d6b21fc49295", "notes": [], "params": { "seconds": 0.5 @@ -47361,7 +47601,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44d01262a3e0d1b3c2828ab08ffa1a2c", + "key": "150e5258ee3b98572bf772f409cc673c", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -47380,7 +47620,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f6235f2fb512b88bad3eceeed71f9a5", + "key": "956e0599ef2f7eac3265b78f9a5a6d20", "notes": [], "params": { "seconds": 0.2 @@ -47394,7 +47634,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "550e40384fc783ad78b495593585d321", + "key": "6fd0c7619d065809b20f7b3a2afad5a3", "notes": [], "params": { "forceDirect": false, @@ -47426,7 +47666,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2c6e0b5ae8ede72520d5504a2d989d2", + "key": "92b878d4fb5f7c3cfb09312b178ca5b3", "notes": [], "params": { "correctionVolume": -0.3725, @@ -47446,7 +47686,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "721dd55a9ed25371eedc15fec86cd4b9", + "key": "da8223558759897c4b3d3287a6a2c6a9", "notes": [], "params": { "seconds": 0.2 @@ -47460,7 +47700,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb8ad8d56b9e513ae277ad528738d07a", + "key": "1efb3d83ad2ae6a9502a3c9073a9b228", "notes": [], "params": { "forceDirect": true, @@ -47493,7 +47733,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31ce06154f432827ec2115649bc8e963", + "key": "00b4b698e3402e34a5e9f8d3c544ed71", "notes": [], "params": { "correctionVolume": 0.0, @@ -47513,7 +47753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c9c78dbf4afb12b7371841bcc928199", + "key": "64d49bf8d98c63442fdb4cf67e7cb8f4", "notes": [], "params": { "seconds": 0.2 @@ -47527,7 +47767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e1f4bccce1dc7be9aa862a672d30307", + "key": "74176bb0dfb34a4a98b03a03c9c6daa5", "notes": [], "params": { "forceDirect": true, @@ -47560,7 +47800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74c83515b3f159e54bd43a9114a99556", + "key": "19de4f128c52c0f7ba0aa55b00afb14d", "notes": [], "params": { "seconds": 0.5 @@ -47574,7 +47814,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e076ff067f76a98c1cc217af685e60e2", + "key": "75ff3a8b2bae5807e28083022d419ecc", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -47593,7 +47833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58cced42321ed6e8abbbe695bfa7dc7d", + "key": "82b8a6b54ce0227ab1091b9ca43176d3", "notes": [], "params": { "seconds": 0.2 @@ -47607,7 +47847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a23256d21796edce8dbf82590d7c0945", + "key": "2c6d2b4d5eb7afebbdcf92b4ad71989f", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -47636,7 +47876,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "954f65a629bcdeb5ced003942a8c529c", + "key": "0b7b462a7a163a0bb65048eebe5040d2", "notes": [], "params": { "homeAfter": false, @@ -47651,7 +47891,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "176e6c8943caf15775283e829d5ffb12", + "key": "8d80b881c01c9ada6aecb00444820deb", "notes": [], "params": { "liquidClassRecord": { @@ -48026,7 +48266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b01fcc93679ae42e18eb8da1052dad90", + "key": "d46f3fa6b05cbfb6163496ebee8307f0", "notes": [], "params": { "labwareIds": [ @@ -48048,7 +48288,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "efd92efd8594bb8e5de9034072ff9833", + "key": "05eff745126ed3666ec5699e23def05b", "notes": [], "params": { "labwareId": "UUID", @@ -48081,7 +48321,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "40d9f6c4d3e160c0dc60942cc351da15", + "key": "227416ca8f93559bd74126a6b05b89f0", "notes": [], "params": { "forceDirect": false, @@ -48113,7 +48353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81bf33969665d666456a2235c2f146d1", + "key": "0d3050a6e517463740e5d82b8f787595", "notes": [], "params": { "pipetteId": "UUID", @@ -48129,7 +48369,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edf52bbd3ffe957659e38cfc571a8d04", + "key": "fa76fe9d2edd55b57f1c61b356b53181", "notes": [], "params": { "pipetteId": "UUID" @@ -48143,7 +48383,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eaa0eecd9f3cfceadf37b934ecff0085", + "key": "0f3ce72741b512362ea10eb88672e56d", "notes": [], "params": { "forceDirect": false, @@ -48175,7 +48415,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dda0b6cf3e04592f536413005d7dc82", + "key": "7c6d0c39fef71041b6a098138e5710c9", "notes": [], "params": { "forceDirect": true, @@ -48208,7 +48448,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9183b62a5c0d52d2766ad6beae4fc4d7", + "key": "de65d91ad8f550be9401803a78605d5c", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -48227,7 +48467,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "201308d6e5900885b0742a605755fbff", + "key": "f8b5f9c1c5a059f807471e34634fde5a", "notes": [], "params": { "seconds": 1.0 @@ -48241,7 +48481,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "080db38e95a9991c6d5478ddc1a136a2", + "key": "7987689aa4685a3fba9e34a50af955b6", "notes": [], "params": { "forceDirect": true, @@ -48274,7 +48514,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52bf29969d278452a6914ea5039fecfb", + "key": "c3cdb5fcb1fbe1e8892b5dbe9a3a2270", "notes": [], "params": { "forceDirect": false, @@ -48306,7 +48546,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3646795db81da4e627c8685b0399ed5", + "key": "2af8eaabd1ad4af6ba98504515d881f7", "notes": [], "params": { "forceDirect": true, @@ -48339,7 +48579,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b5c6f80c48f993c32c54eccc8a8636f", + "key": "f8d78ed73e9fbfcd0fd1b144bf8e8461", "notes": [], "params": { "correctionVolume": 0.0, @@ -48359,7 +48599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b970b7232651d4709f9467405d8ad8a9", + "key": "e20488ef9afcdc40012a97804d1f8337", "notes": [], "params": { "seconds": 0.5 @@ -48373,7 +48613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7111e3e060a7ada366fc7a54f90460ec", + "key": "5607bebd8d7b1c727e9b7eaca5e393e9", "notes": [], "params": { "forceDirect": true, @@ -48406,7 +48646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d04cbc922d9e939b25665a953d3d4fb7", + "key": "388f6bcc1ade56429a8a97acc0c2c6bd", "notes": [], "params": { "pipetteId": "UUID" @@ -48420,7 +48660,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "740783aba03df1993bb12a2241343d56", + "key": "0f02d40314f15b4f5ae50d618e9540b9", "notes": [], "params": { "forceDirect": false, @@ -48452,7 +48692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d2465c3217cb0f93adbf1fe358c5e84", + "key": "7c9cfc8c1ef759c66f5d2b4982e3ab81", "notes": [], "params": { "pipetteId": "UUID", @@ -48468,7 +48708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30eee71c8d623fcace0429bb21095f64", + "key": "e9e28cdba885673b38bab4ffd038a2c4", "notes": [], "params": { "pipetteId": "UUID" @@ -48482,7 +48722,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60e01de420b5836759f30498593a8e88", + "key": "64cbb698e7d0d38cff290c9fcccf6cd4", "notes": [], "params": { "forceDirect": false, @@ -48514,7 +48754,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f665ee132b4ab2736fbdc134f1c0bf2", + "key": "2f682b27286e838056e6a4b10b65a05c", "notes": [], "params": { "forceDirect": true, @@ -48547,7 +48787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6dcf1700d780d9b179d346e8650f154d", + "key": "a0e4ebfc96df11ca3e1a8ab5a9596262", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -48566,7 +48806,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0e8179ad8d52dce8cb4da3371162e2a", + "key": "42961a5a8acd3034077693492b8d20f9", "notes": [], "params": { "seconds": 1.0 @@ -48580,7 +48820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c533430f7eced518c7250601a052319e", + "key": "7c7bbc8e9e21eae0a370b2e8fb6ecc9a", "notes": [], "params": { "forceDirect": true, @@ -48613,7 +48853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55f6245ae446a564a2ca4ca51f7d085d", + "key": "4f5fc3d7c597a8baee18f1becd92c18f", "notes": [], "params": { "forceDirect": false, @@ -48645,7 +48885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca0b99c3a7745c58893dccd88ea5ff2b", + "key": "5539e5ba9468e30201ab4f1e7eca9389", "notes": [], "params": { "forceDirect": true, @@ -48678,7 +48918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10ee64352c44b220a7e441293f86529f", + "key": "c9d246ef170cf67a9fe73cc58acaa766", "notes": [], "params": { "correctionVolume": 0.0, @@ -48698,7 +48938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5d28d92af4ac3c85d771359c406a7f9", + "key": "4dc67e814c2bec644ea57bd1465afddd", "notes": [], "params": { "seconds": 0.5 @@ -48712,7 +48952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d2cf5c07aecf254e32c274a45d747fa", + "key": "3f015ec55306a0a72e5736dfa90a3f63", "notes": [], "params": { "forceDirect": true, @@ -48745,7 +48985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4fc649436f42c25fdd41a1b94d7f7d08", + "key": "7b1fd24f38362f0555cb8600a50a9e75", "notes": [], "params": { "pipetteId": "UUID" @@ -48759,7 +48999,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "041b97054e19e996ded18743f53b3673", + "key": "db3575581b958827e98e3a7d0ea11521", "notes": [], "params": { "forceDirect": false, @@ -48791,7 +49031,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8ef6037a061cb8f2df5cb67c9eb5178", + "key": "0e1a387e27eed388373cf6c1ee819f6a", "notes": [], "params": { "pipetteId": "UUID", @@ -48807,7 +49047,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb21d289b6e2c955f2e549dc42f9d76e", + "key": "90e616abd698a63d6a58d8e794baa4a9", "notes": [], "params": { "pipetteId": "UUID" @@ -48821,7 +49061,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcbc0047af71e601639648fa6ab092f3", + "key": "0fc5b23fdb797bcb2880cb82d770392e", "notes": [], "params": { "forceDirect": false, @@ -48853,7 +49093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f639aa613a0a6c30a005f1edb4323518", + "key": "e8ebde0c4d25d92d16c1aa76a115d5c5", "notes": [], "params": { "forceDirect": true, @@ -48886,7 +49126,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85e8d3292e2f9f3217248d650a9cf3df", + "key": "c94e3fd662a4bf3c5e4342d813c2fe8a", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -48905,7 +49145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e12312893f24ff13fa9de3c540a5e5ee", + "key": "2274709c22991c6528ebe749d80686ad", "notes": [], "params": { "seconds": 1.0 @@ -48919,7 +49159,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3d050ed9788ee6978ffde1f5fcff677", + "key": "5189b9e586dd5896a3dbe8a136a212b0", "notes": [], "params": { "forceDirect": true, @@ -48952,7 +49192,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e154064686c53e93c528624edd3c7c8", + "key": "1d1113aed4ccc9001ae381fa7eb71b92", "notes": [], "params": { "forceDirect": false, @@ -48984,7 +49224,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d32eead39b7b98f6e8aa7c2bba924885", + "key": "f20875304457e0518e6de751ed478fb9", "notes": [], "params": { "forceDirect": true, @@ -49017,7 +49257,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "613c379132908e72149ecb85aa8cba6c", + "key": "d4bd431f5b88103008e56f3c9cae4bd1", "notes": [], "params": { "correctionVolume": 0.0, @@ -49037,7 +49277,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0e7307484bfebe03f9164c8088ec206", + "key": "170a966d08c39ad8ec82c2bb98a8eedc", "notes": [], "params": { "seconds": 0.5 @@ -49051,7 +49291,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfb20f9dbef9da00c2e4e622a65d4151", + "key": "683ac02afdce7da4e327445a34d0ff9d", "notes": [], "params": { "forceDirect": true, @@ -49084,7 +49324,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e959b6d53919aee836b5f33259d5117f", + "key": "0602cf3185301a38cb98643ca99401ab", "notes": [], "params": { "pipetteId": "UUID" @@ -49098,7 +49338,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11f29793a4f6f711426cbea0d9ca6e5f", + "key": "360c62d485aab2d8dfd699575d9a5e2b", "notes": [], "params": { "forceDirect": false, @@ -49130,7 +49370,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d7d17369660c719f9fe784fd630b925", + "key": "cf987e69d4a148e61a84959f9682a857", "notes": [], "params": { "pipetteId": "UUID", @@ -49146,7 +49386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c266670d5d94f5db41a7169cdf39909", + "key": "ae2883c3a8bdacfc2af73070f2490520", "notes": [], "params": { "pipetteId": "UUID" @@ -49160,7 +49400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd117678fbe76d43412b4d6c6b1ef3e4", + "key": "3a855375b64b8280a898d2af637af7d1", "notes": [], "params": { "forceDirect": false, @@ -49192,7 +49432,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba77e3108a89b05e678b25d29edaa903", + "key": "6104846623513d00eae76d819108a7c3", "notes": [], "params": { "forceDirect": true, @@ -49225,7 +49465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c6e16fec4ae61d3bf23035e672da6d95", + "key": "e5eafdc549ba4167e69046e8b62e19d5", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -49244,7 +49484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "253ed7313f470505685f91bea1a7fff2", + "key": "412d241b6b12017636368af7792c620d", "notes": [], "params": { "seconds": 1.0 @@ -49258,7 +49498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0d1715aed2f6572242068838d116bb2", + "key": "c3e98adb0f6a5c482cc83ff20e650788", "notes": [], "params": { "forceDirect": true, @@ -49291,7 +49531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6a0f1f0ca1cd4aabaf7efc894b05084", + "key": "34727e49f833f062deefbbb11fa1b363", "notes": [], "params": { "forceDirect": false, @@ -49323,7 +49563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86fac745720ca979af0edbf444f13bb9", + "key": "d1087a3b165f469f7ccdf9d7ba238379", "notes": [], "params": { "forceDirect": true, @@ -49356,7 +49596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92e4a7b4ce085435b74a536cdab9eecb", + "key": "0a0021375461deaf6d063d121c8f267f", "notes": [], "params": { "correctionVolume": 0.0, @@ -49376,7 +49616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e94225b8cf79e24933b9eb922223290", + "key": "cf04e99a8484a0e2083c205b8073a608", "notes": [], "params": { "seconds": 0.5 @@ -49390,7 +49630,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8284f61c6280cdae72bb43dc31812d53", + "key": "a766b0bd23f60c375a51fbfe01df63d3", "notes": [], "params": { "forceDirect": true, @@ -49423,7 +49663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93099296c7608c9646ef521792baaffb", + "key": "1f201d30f00eb40bc330983a74edd49e", "notes": [], "params": { "pipetteId": "UUID" @@ -49437,7 +49677,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea1bb6634750d4e58d8a84b214458a20", + "key": "4c6ea0ee23a45640f8ca785b16529ea0", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -49466,7 +49706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72c75f8681209618093cbe4bdffba4a8", + "key": "bc2bfb8b31b01a1e13060c49deda1853", "notes": [], "params": { "homeAfter": false, @@ -49481,7 +49721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b74c059506b81fec9ac7bdc75683637", + "key": "2418172ecdf1fc58d1a02f452f319feb", "notes": [], "params": { "liquidClassRecord": { @@ -49535,11 +49775,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -49759,7 +49999,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -49769,16 +50009,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -49840,7 +50080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b40a2a3b9002b1dfca369daf6c8e8c8a", + "key": "e78fde2854ba1b2dfc6cae13e1d47125", "notes": [], "params": { "labwareIds": [ @@ -49862,7 +50102,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1bd3eb585a82b12004cf9f1b404b8ed7", + "key": "23a349ba96a19c277afd769411db5c6b", "notes": [], "params": { "labwareId": "UUID", @@ -49895,7 +50135,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1e3aa67323375355790702f6a7925b7", + "key": "222afba46b90066c6a0bf071c6e94e19", "notes": [], "params": { "forceDirect": false, @@ -49927,7 +50167,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "484a9285220be26fc0fac3a22f23cded", + "key": "f1d1e8c9b44a2d592a1b017774b5826d", "notes": [], "params": { "pipetteId": "UUID", @@ -49943,7 +50183,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3cb40c1dd69a4f7cf15370a8dd1cc45f", + "key": "3a010be1ba867842226f0bba27144336", "notes": [], "params": { "pipetteId": "UUID" @@ -49957,7 +50197,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b21f552b35c908117881348b44fb6fe0", + "key": "095aeb6217c90ac68ca7baf272f6840a", "notes": [], "params": { "forceDirect": false, @@ -49989,7 +50229,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28556fcb3bf55f87e2028276225e8e46", + "key": "c4dd2c68ff47edb75ab6498416926844", "notes": [], "params": { "forceDirect": true, @@ -50022,7 +50262,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e7ad6c53e3d7061e0b819921a410a7b", + "key": "3a94dda82ba83b9996d1a0d97cfa2043", "notes": [], "params": { "correctionVolume": 0.0, @@ -50041,7 +50281,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24bb16fec20b10290652452b6b809e69", + "key": "283ff7eb36e659f92080a9af27b85c3b", "notes": [], "params": { "seconds": 0.5 @@ -50055,7 +50295,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d18085c0201ad6f98886d9bf88f79191", + "key": "50942b75afc3814e12fbeace1d1fe675", "notes": [], "params": { "forceDirect": true, @@ -50088,16 +50328,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1192209e4ae2ac98c237856f59bc0957", + "key": "2406ef60fefa00dd0051ea88a39a33f4", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50107,7 +50347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a731e9efedec02385a3f9e542ef06abe", + "key": "66debbf0047a6c0820da3b767aa5f641", "notes": [], "params": { "seconds": 0.5 @@ -50121,7 +50361,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "323ed29e55f0ad6797b6379533bf2529", + "key": "8bd98a4dc700f418e4d04cab50086bcf", "notes": [], "params": { "forceDirect": false, @@ -50153,17 +50393,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7669d00049c53222b643b8f34e4faf0", + "key": "e9c225fc0b1aed7b2d30523ef521b1c3", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50173,7 +50413,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0481105e34eea2923031d6ace559f131", + "key": "466234918b9bd06cc89e6943303eba4d", "notes": [], "params": { "forceDirect": true, @@ -50206,13 +50446,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bde7cabfc128191aa54ba1f2ece9533e", + "key": "25314e402ca3bd4ef1988ed4d1129939", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -50226,7 +50466,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "578a3d881809541afe8ac165a76dca49", + "key": "5e2e7d63149bde8a1d74fc8d518241a0", "notes": [], "params": { "forceDirect": true, @@ -50254,12 +50494,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdcaef143bc43b02dab2eab536f76a7f", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b2bce209eef8cd0329fb287d617e673", + "key": "8f990c507e12638ee74493672f7cd383", "notes": [], "params": { "pipetteId": "UUID" @@ -50273,16 +50528,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fce54f112d358bb4b355832ce7c9b3b5", + "key": "e8712413b76268ecf936e3aa45f6e852", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50292,7 +50547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3bf846c44fec09ed88fa6ecfdda03e11", + "key": "e93516e909c1da5e0851264a0d31f333", "notes": [], "params": { "seconds": 0.5 @@ -50306,7 +50561,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6d015372d5f60b4b3bbe828fabb7f3e", + "key": "6c621bd61bf4ce2504aab25f283e5125", "notes": [], "params": { "forceDirect": false, @@ -50338,17 +50593,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b36f3d23d1e77cc3ffa9927bdd3388f", + "key": "e004bfe6455e34b5c2afcf41a924a960", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50358,7 +50613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ac794f73341132a80dc67f371a930a0", + "key": "2c981247b5c934771c1b71ece74133bb", "notes": [], "params": { "pipetteId": "UUID", @@ -50374,7 +50629,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81a525a20eabd096232b8e121ddaf8f9", + "key": "93387918674961faf1c95c16642db096", "notes": [], "params": { "pipetteId": "UUID" @@ -50388,7 +50643,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32f481b7b3563cccdd18c4d92f4ab6e6", + "key": "72866bdffca777c4af01444e050ce207", "notes": [], "params": { "forceDirect": false, @@ -50420,7 +50675,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2f2b221c76ea5a78d76e77ad0176185", + "key": "bd6d4168dd29fd13d9a978d382b913f9", "notes": [], "params": { "forceDirect": true, @@ -50453,7 +50708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e407dc6a63664d8ae4c6371f425570d7", + "key": "d892e7f43b2ada47f95cc3082cf6023d", "notes": [], "params": { "correctionVolume": 0.0, @@ -50472,7 +50727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "422df93c3c5471f6b01c2561faaa2c40", + "key": "de6fef9d2555e364ac4e1e678006fad2", "notes": [], "params": { "seconds": 0.5 @@ -50486,7 +50741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c70fc8ecfc00cdefe92a8e7d33446fe", + "key": "c1707747f477d194c45010622b09bcfe", "notes": [], "params": { "forceDirect": true, @@ -50519,16 +50774,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1010300152fb451f85748b40f7ed9e22", + "key": "0eeb33f2801cb6892e682d73a8d40602", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50538,7 +50793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e82ea630460b8900a82d3174a38cba57", + "key": "d7cffc6a32e2d5028aac5714e1b0590f", "notes": [], "params": { "seconds": 0.5 @@ -50552,7 +50807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb41de812b23d7df6e1b70fa32a7daa4", + "key": "6b034faa25a2a1cdac04154f808309f1", "notes": [], "params": { "forceDirect": false, @@ -50584,17 +50839,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b6c45b2922743bdd3f803aa6de513d4", + "key": "8cfe2288131527a78bc46a0324606b17", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50604,7 +50859,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae4fc0a7e9e4d6e4c8fb89267f976dbe", + "key": "69ecaa898cf8a603f844118de64a74dd", "notes": [], "params": { "forceDirect": true, @@ -50637,13 +50892,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c324e5574dccfe4f86bb3e559dd4ff3a", + "key": "6050d16d9867153a5f62b1dae54b5929", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -50657,7 +50912,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8b7e335f11f3821c4bb27d5b01e6dc23", + "key": "ce69eb6f243c6d892e9d7f6a74bf02df", "notes": [], "params": { "forceDirect": true, @@ -50685,12 +50940,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34d1014119b60a53235cf49fdd6c0921", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4e8e54fd366be9296f088ff45a7f0a0", + "key": "efc417678c7c17da3db1346e2e71d111", "notes": [], "params": { "pipetteId": "UUID" @@ -50704,16 +50974,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c14171039692a6a75896c88d9217b0ad", + "key": "1f5012aa7e04b83a2a9c49e8c1928e85", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50723,7 +50993,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e168084dca12dec9c338a53fbebeb4eb", + "key": "4edb0326f0d1896ff5e9607eff0d2399", "notes": [], "params": { "seconds": 0.5 @@ -50737,7 +51007,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "51bf4c2a87ec558b24f24fa9da5d963e", + "key": "4914c49ea53e9962c45ef37bbc5b54fb", "notes": [], "params": { "forceDirect": false, @@ -50769,17 +51039,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d915a06e0e5e3f0021bea9212666948", + "key": "7a5cca713307053290e59d5b830a68ef", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50789,7 +51059,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "482dd9e054354f2266c68359c1d86306", + "key": "88749aa59f3d97d9928c3b4081abc2fb", "notes": [], "params": { "pipetteId": "UUID", @@ -50805,7 +51075,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb18d46e7d84465abb5d3c2feddb9aca", + "key": "37f0b55fdbc88481c0a5388105be36d1", "notes": [], "params": { "pipetteId": "UUID" @@ -50819,7 +51089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6752a9f9c6c42a71c33931595edfff6", + "key": "d941b9356892e7dbb9a029e9d502f7fd", "notes": [], "params": { "forceDirect": false, @@ -50851,7 +51121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab82da39b9ee8f518971c0ce6d6e669d", + "key": "5f7461b21fc742ecbd18faa7f2039569", "notes": [], "params": { "forceDirect": true, @@ -50884,7 +51154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a508a2ad174f9f4604e0bb762eccde8", + "key": "bcb2133da41ce4d464871af3de616901", "notes": [], "params": { "correctionVolume": 0.0, @@ -50903,7 +51173,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2b1a35ed1465108b9ec7003c006b5694", + "key": "8c2fa192d23d9730e2d38a60d5afe2c4", "notes": [], "params": { "seconds": 0.5 @@ -50917,7 +51187,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e66f10ceed143d9e8c67053917bc7939", + "key": "adc3da77575d09e4e9a8f83741d709e2", "notes": [], "params": { "forceDirect": true, @@ -50950,16 +51220,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a178b45909e33b5203cecc3371c3dc5a", + "key": "9f6fed1ceedecd1160844b4712b6bc33", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50969,7 +51239,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f57e0166db69621ad594ea9aee903e7c", + "key": "1c1200b2704beb14217ce6c3d7736fa5", "notes": [], "params": { "seconds": 0.5 @@ -50983,7 +51253,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edf599d21c645eac22423023a2707d8a", + "key": "d7d6cbe2c0f29fb1bdff892ae1bacc59", "notes": [], "params": { "forceDirect": false, @@ -51015,17 +51285,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4de9beaaeea54900288b53a5b0c1406a", + "key": "0e29df265b161ed425fc84bfe1f3a1d4", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51035,7 +51305,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2177c2be3873dd483b0ef17cfb124dde", + "key": "8191280fd7568b5ef84295cbbb122fcf", "notes": [], "params": { "forceDirect": true, @@ -51068,13 +51338,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "579b19e859ffa3b96e0b3bb6fcf21a6b", + "key": "8b07faf9f44f81ca5e51136e74610c08", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -51088,7 +51358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7fc2792632d34180a81787df3fd251fd", + "key": "9b1dcbaf9cef212565c66385e2213d44", "notes": [], "params": { "forceDirect": true, @@ -51116,12 +51386,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e61f3dd77e5b9254d997e33ed7587823", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1587786171c2b982b3ce3c9cbc9b9818", + "key": "b9e3ea49cfef61ab292e20c872f5bbcc", "notes": [], "params": { "pipetteId": "UUID" @@ -51135,16 +51420,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e205714de85c2ae9710d4057d3c2d198", + "key": "d5dae629fbde944ecbb151b5a9ecb3f9", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51154,7 +51439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e27da55226068ee1ce4818ca37d27d1", + "key": "f4dfbfc6b92ccb97c15e30442ff0c9e8", "notes": [], "params": { "seconds": 0.5 @@ -51168,7 +51453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83dd401567be1c6c9b867d8cfa9a3d28", + "key": "4d39c33c54009c1abe64f99f102e8b60", "notes": [], "params": { "forceDirect": false, @@ -51200,17 +51485,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "925338d8dd8b78a3fbb1ef465fe413f6", + "key": "8022f8ae74d9f0aff322f5824a05f870", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51220,7 +51505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1dc97b6ade93d0331e01644aedde005d", + "key": "19f57c722c48eefafd9e55aab4419a80", "notes": [], "params": { "pipetteId": "UUID", @@ -51236,7 +51521,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "235e1c0803d069eccced5bdbd42f59eb", + "key": "693fa48d00c50646657b2f0b5dcd8c27", "notes": [], "params": { "pipetteId": "UUID" @@ -51250,7 +51535,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cdc001d1c5a85b167e5f4ddba5afa9ea", + "key": "9700872f95cbae49b085ba73fe9b1867", "notes": [], "params": { "forceDirect": false, @@ -51282,7 +51567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50c9b3dabc56b073104ad4729eceb33c", + "key": "29c7517440551a0c9aa492e004cbe590", "notes": [], "params": { "forceDirect": true, @@ -51315,7 +51600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36104375fea63f17beac3f8aa53a5956", + "key": "b9e3c5442c9531cf0e9b64043f9702cd", "notes": [], "params": { "correctionVolume": 0.0, @@ -51334,7 +51619,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7ada49a8d8cf669346c07ce85a5882a", + "key": "1a8b2b1407911a77c91e56513c7177ab", "notes": [], "params": { "seconds": 0.5 @@ -51348,7 +51633,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ac55e5c96d9ffb8824c336e9b0f6fa0", + "key": "dfa233c4cd1364cf5882c585315e480e", "notes": [], "params": { "forceDirect": true, @@ -51381,16 +51666,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2b5db34c00c91e0d0e84d10fb72daff1", + "key": "6ba830e8b2bffa3b10b94ed298dae332", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51400,7 +51685,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4fb47e43622ffbf924b6c6ef5023de43", + "key": "2a04f295f105137108a0af40f55b37a0", "notes": [], "params": { "seconds": 0.5 @@ -51414,7 +51699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2030718f3e548dfc5c15ea6a97c292ee", + "key": "9243860d1b11350b452e087759acc48d", "notes": [], "params": { "forceDirect": false, @@ -51446,17 +51731,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73a5a36213b723522eba1a14c0a25c19", + "key": "fffc1d235c672d898e2ffee7fdb0921b", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51466,7 +51751,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbf82129ecb2ec330448284dbefca340", + "key": "e71138437e142c92030cfebff331d078", "notes": [], "params": { "forceDirect": true, @@ -51499,13 +51784,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62749cca65ac560322d2f5affb706948", + "key": "8a059c7e9d3d060b05ac585c91e9e9be", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -51519,7 +51804,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53212998aad95a75cba0ad55aafacbba", + "key": "27af7176cc99d4a418511e9759796686", "notes": [], "params": { "forceDirect": true, @@ -51547,12 +51832,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88068bef3ad0d0b33b9f03d01768b167", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe252d72f0b999eb4861c6e4a7a6b605", + "key": "bfe327fb3fe18d23738c140b6a74abf8", "notes": [], "params": { "pipetteId": "UUID" @@ -51566,16 +51866,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6aac36e2c3419799b734588106ab0da5", + "key": "cff28e0e06260076bc0f5f9dd7de6ecd", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51585,7 +51885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34390ff769e0d1f8c68924e60f4439ca", + "key": "db08213d3b38724e1c3d2f2c46e58101", "notes": [], "params": { "seconds": 0.5 @@ -51599,7 +51899,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f09bb84bda6b72855c0a6db9d77dcc1f", + "key": "9f02ac7de482982e3904a8894f2d4939", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -51628,7 +51928,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a026c24dddb8656d23df9f6eba6b2557", + "key": "792fdb806fd8aef17bb54b3233e6716d", "notes": [], "params": { "homeAfter": false, @@ -51643,7 +51943,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f33742a192b10d2c7d9f539004cff1b", + "key": "989cb0cc2325f6f0acfedb40aac1299c", "notes": [], "params": { "liquidClassRecord": { @@ -52042,7 +52342,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79a3b16aed701dc2213cf03ac07e0f2f", + "key": "b83816c490ff25f257c70a3bf965fe9e", "notes": [], "params": { "labwareIds": [ @@ -52064,7 +52364,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "daae33dfe7819a0f31c69a61ac17fb4a", + "key": "e243129ca4052c1a1206bdc67c161440", "notes": [], "params": { "labwareId": "UUID", @@ -52097,7 +52397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b70912d9d42a8c415ca68acee332832a", + "key": "4793cea3382eac0822722cdbef5cc167", "notes": [], "params": { "forceDirect": false, @@ -52129,7 +52429,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78b18a4eb06441b4355917afc96e2f76", + "key": "e34508eb5f89f599fccbd45077648c58", "notes": [], "params": { "pipetteId": "UUID", @@ -52145,7 +52445,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e490cf60d1ed97857fd80fa1856058d", + "key": "1c40baea0e7186efbea9b2c12fe9bd20", "notes": [], "params": { "pipetteId": "UUID" @@ -52159,7 +52459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b8732cade697d4ec893b652d7ad008f", + "key": "f378637405b49cbadbcfc54c65728e73", "notes": [], "params": { "forceDirect": false, @@ -52191,7 +52491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbf950a5f1d8ec8741dbf9c650dfeec9", + "key": "ba8d43302880e8318e2b534fcb9139cc", "notes": [], "params": { "forceDirect": true, @@ -52224,7 +52524,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb500eb992a983adeffe9139395a5433", + "key": "cc2914dbc3e60863c25f3d6e0e9d3600", "notes": [], "params": { "correctionVolume": -1.045, @@ -52243,7 +52543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f84f84eda88acfbebb27390942fe54e", + "key": "ef7cdfa348a2d6cf92772415b8d10235", "notes": [], "params": { "seconds": 0.2 @@ -52257,7 +52557,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dade6b301d5a5201781bf2343bb497fa", + "key": "f8f5ae51031072389f6aac417773a7e8", "notes": [], "params": { "forceDirect": true, @@ -52290,7 +52590,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d48352ce0450648397fb52e9863ba16", + "key": "bd7156982f8f124a42e26facca529841", "notes": [], "params": { "seconds": 0.5 @@ -52304,7 +52604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "524231da4d2b29505a71b127a5159244", + "key": "d0ef2ad5c9918d398e43004a188da236", "notes": [], "params": { "correctionVolume": -1.12, @@ -52323,7 +52623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9aad163236f0e5b9f5381a0ff3b83db2", + "key": "062d89e50e3b3feb1a1ab63640236bf2", "notes": [], "params": { "seconds": 0.2 @@ -52337,7 +52637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97ac565e2f70efc6bd6802647e195e0d", + "key": "711619dca982638bea619de087edd716", "notes": [], "params": { "forceDirect": false, @@ -52369,7 +52669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "244e234b8b4d816781112024f6769e71", + "key": "6e79231928a5ef59fdd0ada9c9fa8890", "notes": [], "params": { "correctionVolume": -1.045, @@ -52389,7 +52689,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce4de285002719d913acb54bc50b4424", + "key": "e3eabad9efddf32403bd403f1a51cf87", "notes": [], "params": { "seconds": 2.0 @@ -52403,7 +52703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bbe97ecf131e7679e26733efeda8fe5", + "key": "ca881388af92cfe957898218f0890458", "notes": [], "params": { "forceDirect": true, @@ -52436,7 +52736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "950c330d4ca21ae735d051a16c06d9ff", + "key": "cdb48ff9315c34d0dd9399b6497ba124", "notes": [], "params": { "correctionVolume": 0.0, @@ -52456,7 +52756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a6f6f6e64b782f6f936edcfebe7e938", + "key": "acbb5cc0dff52ed44a3c4c5bf974cc78", "notes": [], "params": { "seconds": 2.0 @@ -52470,7 +52770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96338e9862cc33f7f6fe62a50ba98774", + "key": "0985ac2c5a8f076a11f3df6137e81a32", "notes": [], "params": { "forceDirect": true, @@ -52503,7 +52803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdb16610779c9bd46d99a7ea5ba11182", + "key": "1ae881022f2d9243bf1b4459cc4729ad", "notes": [], "params": { "seconds": 0.5 @@ -52517,7 +52817,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8b149c66b2185c7cd5c7d234f144c75b", + "key": "a34eb5180304502418f5a6381a30e4a7", "notes": [], "params": { "correctionVolume": -0.75, @@ -52536,7 +52836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abc9c56680a392cdcb4c9d1cfc4cb392", + "key": "f33ab5fa226debd838edbef1f009c267", "notes": [], "params": { "seconds": 0.2 @@ -52550,7 +52850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ddabb6d117452cd8f2c38ed92edceea", + "key": "3c5f52eccc5b9009405591d8d6686be6", "notes": [], "params": { "forceDirect": false, @@ -52582,7 +52882,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6a7d36c1b043b512e1edb20f65abf5b", + "key": "218b13608f07e9740d7ec284640aedd4", "notes": [], "params": { "correctionVolume": 0.0, @@ -52602,7 +52902,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb8e25fc118bd3fa21353b41a550af19", + "key": "de62c70d3927ee2610c91226aa02f3c6", "notes": [], "params": { "seconds": 2.0 @@ -52616,7 +52916,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cceaea2149ad7741e2a2977ca3ab75a3", + "key": "dfe9d1fe2664f4b683f470c6f8a755b2", "notes": [], "params": { "pipetteId": "UUID", @@ -52632,7 +52932,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c7b8eef889b6f0d9b43da54df4325765", + "key": "22abeda76bdb40544ef1dc9fd5a145fa", "notes": [], "params": { "pipetteId": "UUID" @@ -52646,7 +52946,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ddb86b36708cf77210fb3fd70a25307", + "key": "2f810e06bf2e90081edef03d39d2dc0f", "notes": [], "params": { "forceDirect": false, @@ -52678,7 +52978,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "459ab851465fb97a6b08262a541b84c8", + "key": "4b24a5b37afbd7466ed5f83efc67ac6b", "notes": [], "params": { "forceDirect": true, @@ -52711,7 +53011,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a2322a5cc37c94d6a6e202b6023ad3c", + "key": "17826015dcc8a1305ac7bd2a96ec501a", "notes": [], "params": { "correctionVolume": -1.045, @@ -52730,7 +53030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7586e7c6f830cc07183336a6d266411", + "key": "822eac4b314b17f5aa2da542ad1203be", "notes": [], "params": { "seconds": 0.2 @@ -52744,7 +53044,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "649fc11014b08007cd4053f0650cf5df", + "key": "81274d1fdf08f2b7b324ba3601efd930", "notes": [], "params": { "forceDirect": true, @@ -52777,7 +53077,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f15878e9f304ec22c74227f927aec8fa", + "key": "282efc28480276746aef60d6883e5cb6", "notes": [], "params": { "seconds": 0.5 @@ -52791,7 +53091,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d637277553eed6b70362d33ac341726", + "key": "a04aa8c7542457ad1724d324ceb83137", "notes": [], "params": { "correctionVolume": -1.12, @@ -52810,7 +53110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "88aa8a467d927d2a9abdd6facf78b1d2", + "key": "8aa3996ab2e219a3421d903aa8a1f90b", "notes": [], "params": { "seconds": 0.2 @@ -52824,7 +53124,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3e0b0e5eca049c7c2d8631a6ced567a", + "key": "b2fb0dee0405153341c660764c03aea2", "notes": [], "params": { "forceDirect": false, @@ -52856,7 +53156,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45284c6b15393a046cd1f5c3e4024b89", + "key": "2e481ee4804f2b8865d2aaacf9a8ab34", "notes": [], "params": { "correctionVolume": -1.045, @@ -52876,7 +53176,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5ccd23619b49c493d7034ea45b33401", + "key": "d1eea0d52f85a01d338899be02110bf6", "notes": [], "params": { "seconds": 2.0 @@ -52890,7 +53190,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "313e5cc4084c517eda8a423c7a096610", + "key": "97ea708c1eb7340d45446841363d95d2", "notes": [], "params": { "forceDirect": true, @@ -52923,7 +53223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "809b47f3506915c24c0b25c295628f9d", + "key": "5156c3e0dfc3e65d4ece192ac5d0793b", "notes": [], "params": { "correctionVolume": 0.0, @@ -52943,7 +53243,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b95019cd1ae2c0974001f9c84703659b", + "key": "1a12dc6a871818cb8a1e96913506b3c5", "notes": [], "params": { "seconds": 2.0 @@ -52957,7 +53257,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7705f45277190b3538e37f31228c1d5a", + "key": "9bfdb526030000b32c35021ce7020b32", "notes": [], "params": { "forceDirect": true, @@ -52990,7 +53290,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "099d58906478d35f9ddf51e0e231db7a", + "key": "527123e1ccc5418397b18433d9839e60", "notes": [], "params": { "seconds": 0.5 @@ -53004,7 +53304,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5bdfc11301983a39dd6e510edeb6342", + "key": "412c943e5698c033d32b309a14dc6c55", "notes": [], "params": { "correctionVolume": -0.75, @@ -53023,7 +53323,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19c7e75eebecf11862c5b02cfe7aaa35", + "key": "bafc21c89f4f460c86c540f8f29226dd", "notes": [], "params": { "seconds": 0.2 @@ -53037,7 +53337,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c6d01d32baf916cd707ac9bfec4bcaea", + "key": "6ce925d1565798209ce292bc0460d66b", "notes": [], "params": { "forceDirect": false, @@ -53069,7 +53369,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b323971f8cee8f4e0cad7f7e026837bd", + "key": "b03116d752c7314623bec0a6991e3aed", "notes": [], "params": { "correctionVolume": 0.0, @@ -53089,7 +53389,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77a994cf36142b9f70879910c5e47761", + "key": "9df87dcdcb2be09e16cf110ecd38ca08", "notes": [], "params": { "seconds": 2.0 @@ -53103,7 +53403,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21466db1f45213a7201d58377a9a88e5", + "key": "b79513027469e0f82b4de082acc632aa", "notes": [], "params": { "pipetteId": "UUID", @@ -53119,7 +53419,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe9142b531071aebcba9aca775f7d76b", + "key": "117e80e8092769ca674dac85d836d40d", "notes": [], "params": { "pipetteId": "UUID" @@ -53133,7 +53433,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4201d2564e24a6bef00862ca3717832e", + "key": "f6c9ce8b4824e5b48eb935b8a6efce59", "notes": [], "params": { "forceDirect": false, @@ -53165,7 +53465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "201173f35e084aed60f0a767f724de92", + "key": "0c780e1d461c6b22da97f4cfee9cc12f", "notes": [], "params": { "forceDirect": true, @@ -53198,7 +53498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2849cbcf1bcea5ceecb0049aed5655b", + "key": "0ab4ae1aa1766ce15a565cb31bf6d87d", "notes": [], "params": { "correctionVolume": -1.045, @@ -53217,7 +53517,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "780b52c34b3a448836ae4d011cfda1dd", + "key": "10b7a93634191a54b811645a282d483a", "notes": [], "params": { "seconds": 0.2 @@ -53231,7 +53531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1dd8b596bd6839e384eb65cd01806fbc", + "key": "954c71e56e43fb7f1bea4c2837f9a6aa", "notes": [], "params": { "forceDirect": true, @@ -53264,7 +53564,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72581dc2de0d3747c463d307a9257aad", + "key": "275e6ed9cb32fdca22073a1ab52f2ce6", "notes": [], "params": { "seconds": 0.5 @@ -53278,7 +53578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a31d16862dbe3b98b373ab82405d643", + "key": "1219d41df0dd14740f8c6c5601186280", "notes": [], "params": { "correctionVolume": -1.12, @@ -53297,7 +53597,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7a472c61e67a4a5efac3bbe444a20d9", + "key": "6e6ccfce97528fdaa6f711edf7528aa5", "notes": [], "params": { "seconds": 0.2 @@ -53311,7 +53611,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e2d90969b8748c35e3f9b72307239b00", + "key": "d4424dd2ab582dbb68d2746e8a08f6e8", "notes": [], "params": { "forceDirect": false, @@ -53343,7 +53643,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff3e42d09cf8d355f399ebe0dadd4397", + "key": "c8a071403a990318a1c18bc14acd2cb2", "notes": [], "params": { "correctionVolume": -1.045, @@ -53363,7 +53663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed5610c7cfd67f24570a7cc1f8e9547a", + "key": "9af85b5388d7ce689f0330492ac0276c", "notes": [], "params": { "seconds": 2.0 @@ -53377,7 +53677,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "815fe272990dd3f2c9a714e666a049b1", + "key": "04c2baf30a060da3ba49455aa76f1ff1", "notes": [], "params": { "forceDirect": true, @@ -53410,7 +53710,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "06e980b36b0e19b18dcdfc505d9d5a17", + "key": "6b4bc02c9a6d793ea71a5e406186254b", "notes": [], "params": { "correctionVolume": 0.0, @@ -53430,7 +53730,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd57be1fbb2983f2266c11fae2640452", + "key": "21c96f0aea0f90d955fc8001c2575966", "notes": [], "params": { "seconds": 2.0 @@ -53444,7 +53744,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb9c375ecfa1fd498f39737fdd2f0271", + "key": "6ed69fc78f9fcf0fc87e4d2e18a26341", "notes": [], "params": { "forceDirect": true, @@ -53477,7 +53777,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba14105006d2cd029d5d4e18baaf6a73", + "key": "29d777fc6dfc5e8d839b0561bd08eea9", "notes": [], "params": { "seconds": 0.5 @@ -53491,7 +53791,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0f86fdd51c6966197915aa8b8a73b64", + "key": "809e25274f0bc75b58422d3f8ac4895b", "notes": [], "params": { "correctionVolume": -0.75, @@ -53510,7 +53810,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d335155568b7187e4fab13fbb0189356", + "key": "03b4b45cf75a00af6f61199f55b77e07", "notes": [], "params": { "seconds": 0.2 @@ -53524,7 +53824,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36766e3b1e682fdfc0e26cc102c9bf6e", + "key": "ec506641798ddfe59037bdef5b222f1e", "notes": [], "params": { "forceDirect": false, @@ -53556,7 +53856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ce2dc51bdb95cf4155c824280dbbfea", + "key": "12bbaf588bea5eddbefdaea9fb9db7c8", "notes": [], "params": { "correctionVolume": 0.0, @@ -53576,7 +53876,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a6d4ff3a14ccc0154b0bcf75df8e09be", + "key": "ce71c1e46c5253f041097891d6aa4ade", "notes": [], "params": { "seconds": 2.0 @@ -53590,7 +53890,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3aeb3e6a3cfe4ee96593e236728cb30d", + "key": "029ac005566f22693e691a6c2c6f2fed", "notes": [], "params": { "pipetteId": "UUID", @@ -53606,7 +53906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "290283e5ec65a387deeceb8f17c8cb3d", + "key": "c16a72fef8851c2a473857ea8d3ec6e2", "notes": [], "params": { "pipetteId": "UUID" @@ -53620,7 +53920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3c45e88cc8b5486c03f87379d0bf15c", + "key": "db9d6c252a4bf6864c6c889247c6ca88", "notes": [], "params": { "forceDirect": false, @@ -53652,7 +53952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a4257498f2f37a4f0edfff0d99af0f0", + "key": "17dc98f5be17969a376d47ccfcc596e3", "notes": [], "params": { "forceDirect": true, @@ -53685,7 +53985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "596db508811b0f8bfdb14ff6c09e0063", + "key": "1284d09add85e155f9703d941f60c5e3", "notes": [], "params": { "correctionVolume": -1.045, @@ -53704,7 +54004,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c509f21c0d599bd06aa075f41bb9215", + "key": "43a2b874d38291019cf854dcc0fdb559", "notes": [], "params": { "seconds": 0.2 @@ -53718,7 +54018,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9220ecb0450e4167eddbe9cb30f3537e", + "key": "666600ef7431e65e2c7ff8a43eaa81db", "notes": [], "params": { "forceDirect": true, @@ -53751,7 +54051,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4a4451edeaa86dbe34aa37f61a271b4", + "key": "ce9f72549ca49393cc71b5077f9e45c3", "notes": [], "params": { "seconds": 0.5 @@ -53765,7 +54065,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c4ed79e34d89c5eb7ca34c3db0283be", + "key": "0e6bee602d11d3eda42c190b1a864a08", "notes": [], "params": { "correctionVolume": -1.12, @@ -53784,7 +54084,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3de46c159e4da8be991ab70db3cce608", + "key": "3583446ca732692e41ee07185180a138", "notes": [], "params": { "seconds": 0.2 @@ -53798,7 +54098,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c14bc37921cac5e7c095688e47323211", + "key": "d31e05dabeb9d9c13050953426151f84", "notes": [], "params": { "forceDirect": false, @@ -53830,7 +54130,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95c3997f76460feef0fa81a6bc5275ec", + "key": "86772afea1d2bdf388526489a83ff606", "notes": [], "params": { "correctionVolume": -1.045, @@ -53850,7 +54150,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f3ba3d7451e3bd6a05cec1c3a0a8ec6", + "key": "da76f1f34cd64ce41b32940d82936e85", "notes": [], "params": { "seconds": 2.0 @@ -53864,7 +54164,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac0b1d2babfe0247fd60f35c4d01abab", + "key": "4f10f36b7cce988c3943b706549d1e5d", "notes": [], "params": { "forceDirect": true, @@ -53897,7 +54197,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5433bc7324ba3fa2289bc0a518ddd85", + "key": "145b535a1a707513428235dcf2195142", "notes": [], "params": { "correctionVolume": 0.0, @@ -53917,7 +54217,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4696f55452eb941354a742d11af4435c", + "key": "a9a6598abde505925bb21e5b3543d2ac", "notes": [], "params": { "seconds": 2.0 @@ -53931,7 +54231,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58c2eb249e57c092c0e312528f0830ec", + "key": "d6b32fd360b67fcd72d54456cd657d6f", "notes": [], "params": { "forceDirect": true, @@ -53964,7 +54264,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3cba0d4e9939ca0a8f75bcb6a36dd3b6", + "key": "723d240b4cfefd8e8759316abb9772c0", "notes": [], "params": { "seconds": 0.5 @@ -53978,7 +54278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "828310cd1aa2a6fbdc9cff36851676ef", + "key": "8dd401365fb0d37c66c4d7647b8106c0", "notes": [], "params": { "correctionVolume": -0.75, @@ -53997,7 +54297,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "630aa25ed0cfe9af1872c1131040b4b7", + "key": "fff3cd6d38512ed12b838b78a2d2c542", "notes": [], "params": { "seconds": 0.2 @@ -54011,7 +54311,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7eb4e280b7534ee5af452903b90cc6f8", + "key": "9acfc02faca6c71f27050f51d14c93fa", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -54040,7 +54340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1fe25338e4685e00611babb41cd7f548", + "key": "5c64553fc28d3b5f551515df776ba5e6", "notes": [], "params": { "homeAfter": false, @@ -54055,7 +54355,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c47469fca3991e7a404921f9dff5f0b", + "key": "5b2f4d0b9e4fa6578f773f624a831025", "notes": [], "params": { "liquidClassRecord": { @@ -54426,7 +54726,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93701a630a4952d4d92f9ed3a3400554", + "key": "3f50c50a828c172b4047c10990481fc9", "notes": [], "params": { "labwareIds": [ @@ -54448,7 +54748,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23a2ac6536db5ed98a094605b50c86b0", + "key": "000d413a293c2218465a50c614a803d5", "notes": [], "params": { "labwareId": "UUID", @@ -54481,7 +54781,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e1110f58a5b85fc0e55e17e0915d7cd", + "key": "13d49dfe35f2576d25cde65ef5b6f33c", "notes": [], "params": { "forceDirect": false, @@ -54513,7 +54813,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "993fcb26b1772448a5f63e367a876f2a", + "key": "49ac891677c129fd63047f8da1283ed1", "notes": [], "params": { "pipetteId": "UUID", @@ -54529,7 +54829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f3032e51e47ff8b8a2a4f5a5c2ce2de1", + "key": "5d6ef51c58a607ef530a58e9ed14bb01", "notes": [], "params": { "pipetteId": "UUID" @@ -54543,7 +54843,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fba3da2dfe67945fc74964b5d737293e", + "key": "a5e11b0b651a9c6c8f26107b8d2bc9a4", "notes": [], "params": { "forceDirect": false, @@ -54575,7 +54875,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a81e0b8cca36dbcbac4174b1eca149d", + "key": "2196791553e37faca5698614b5e7cb54", "notes": [], "params": { "forceDirect": true, @@ -54608,7 +54908,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1f13868afd44d47df10cb2f40b7d022", + "key": "b9d26742f7eb7eedbea7b3b35e7d0c26", "notes": [], "params": { "correctionVolume": 0.1575, @@ -54627,7 +54927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff8d737425980bb9737a5dd1ada9632d", + "key": "0ed1e0e4d231b08c8196daa3f04da40c", "notes": [], "params": { "seconds": 2.0 @@ -54641,7 +54941,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65d3649e6f134ba5a179c6a4dfaea771", + "key": "c83be6d428bb598f95fb080ff8804ae0", "notes": [], "params": { "forceDirect": true, @@ -54674,7 +54974,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f28262c8b6afd6e74eb8baaa67af64e", + "key": "8fb7e4aeb06f21330b5ffaeb03895a84", "notes": [], "params": { "forceDirect": false, @@ -54706,7 +55006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "39b4ad0e4622502a428ebfa843055353", + "key": "04da5f21f3ab1a6f7d4bf417314831ab", "notes": [], "params": { "forceDirect": true, @@ -54739,7 +55039,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "581dc1d32283acbb112d55b802ab90b0", + "key": "9a05cd639964700f460d804e043c9b9d", "notes": [], "params": { "correctionVolume": 0.0, @@ -54759,7 +55059,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd4ce0f74f5194d6bdaaa96c11f8bf1b", + "key": "86d775ec8957a1a21363a7d498620bf8", "notes": [], "params": { "seconds": 1.0 @@ -54773,7 +55073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7318bf1af48a099b99d822903b7c70f6", + "key": "71d67921e0eab7e30641d9baeb7fc928", "notes": [], "params": { "forceDirect": true, @@ -54806,7 +55106,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1ed4234f93a981242183993bed3d077", + "key": "fdf1c213e26562aff02c521770db7584", "notes": [], "params": { "pipetteId": "UUID" @@ -54820,7 +55120,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e6087882d38b76c7e3d35b4974090c0", + "key": "dbe54636d7d43daf28d46e01066a69d0", "notes": [], "params": { "forceDirect": false, @@ -54852,7 +55152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71f59354af190fcd6cdb3e59f0bd7e4f", + "key": "08d0edf7183ceb907aba4dc4f7e4c1b0", "notes": [], "params": { "pipetteId": "UUID", @@ -54868,7 +55168,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07c756f829b894ce502426b24a0f5ed5", + "key": "4deda0b2c4f881ef2677c969b4db8d99", "notes": [], "params": { "pipetteId": "UUID" @@ -54882,7 +55182,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bcd136a5f854d99aa11118e2c4d4eeb", + "key": "b781fa8c263967bd9f25b57730a2e616", "notes": [], "params": { "forceDirect": false, @@ -54914,7 +55214,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f3feb30e1a7be2db93548e0fdde0c96", + "key": "0ef17e952d0fc094fc5434a15117dd24", "notes": [], "params": { "forceDirect": true, @@ -54947,7 +55247,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf8394999664632ab981c9a2bc86863d", + "key": "cde0f53f29a04ebf8c13c55b95b85201", "notes": [], "params": { "correctionVolume": 0.1575, @@ -54966,7 +55266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aee2795e2e4beb0e9e0a740620eb673a", + "key": "ff97352ee2d0ad613d073b67abd6ccbd", "notes": [], "params": { "seconds": 2.0 @@ -54980,7 +55280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e267ec912f4f3c8ca5da1b6cedc06964", + "key": "326d9da535aff4b94b3acb9af4039897", "notes": [], "params": { "forceDirect": true, @@ -55013,7 +55313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b892b362af9feeb00adaba21fee9a09", + "key": "f31ba1399804fb541f08fb6e37d189f1", "notes": [], "params": { "forceDirect": false, @@ -55045,7 +55345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b191c73f0f2789847fa7f88f6abd2223", + "key": "64b820c3c169c2ceade2170d156af660", "notes": [], "params": { "forceDirect": true, @@ -55078,7 +55378,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f672f27b70dce0dd0fbe42a6bbe40d4", + "key": "ee15421e6a5ef2b99da636d30578c23f", "notes": [], "params": { "correctionVolume": 0.0, @@ -55098,7 +55398,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "551a8de38ccedb50e93d05ee08764be0", + "key": "3b43466e36aabf2fecd3e3ff9417d437", "notes": [], "params": { "seconds": 1.0 @@ -55112,7 +55412,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c168d01031611d847374a3452523c085", + "key": "eafd59390d9cec8d361d4eb0680f3ece", "notes": [], "params": { "forceDirect": true, @@ -55145,7 +55445,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d00ff9678af142ebe15c972b98a1d30", + "key": "a67bf8de55041d8efb993dc193a2051e", "notes": [], "params": { "pipetteId": "UUID" @@ -55159,7 +55459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f5bb2c21f3c39bb3d611907fc100672", + "key": "5610f3f4480c55c94c64c028a1d72278", "notes": [], "params": { "forceDirect": false, @@ -55191,7 +55491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e48b7d10288b4b6a1d24569a8c001052", + "key": "e8d594cb1021bb942f2f5d4a0c0f398f", "notes": [], "params": { "pipetteId": "UUID", @@ -55207,7 +55507,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5647fc50d74327e2b58ff057d7214e0d", + "key": "22342ec7ccdc41f8d4c981f2b1f3ce77", "notes": [], "params": { "pipetteId": "UUID" @@ -55221,7 +55521,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dae0a72c23605a01e8a125b9a3cb1940", + "key": "6105452141bfab1d1ad50f500893c743", "notes": [], "params": { "forceDirect": false, @@ -55253,7 +55553,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10aef0ecaadeafb92af5d20f61641413", + "key": "5554b488423f66c285827614bd9ed1fb", "notes": [], "params": { "forceDirect": true, @@ -55286,7 +55586,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fce2931ab619f89030d99909614461b", + "key": "27ce73789e6b6c814da98b19d01d3b0f", "notes": [], "params": { "correctionVolume": 0.1575, @@ -55305,7 +55605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f0e1afd3e03559d79bd2b9e72ee2c17", + "key": "75f80015bbe2d6172ab8a9d894f371c5", "notes": [], "params": { "seconds": 2.0 @@ -55319,7 +55619,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86b29e42d19aff8492fb6a08b123d224", + "key": "9452ef0ca9606442c0e367519e464cee", "notes": [], "params": { "forceDirect": true, @@ -55352,7 +55652,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cde124f1cd0d290bc2bd8dc8024c9ce5", + "key": "6ccf9656078f010dae9600d5678cea17", "notes": [], "params": { "forceDirect": false, @@ -55384,7 +55684,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31e23d9719ee7efe699006932b5320c7", + "key": "79bdfc22d365169014925da30e16d8dd", "notes": [], "params": { "forceDirect": true, @@ -55417,7 +55717,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea7a5a5a611bea80564f0d2f843aed85", + "key": "f3920d4caf7ca2d6f754a6cb678957b3", "notes": [], "params": { "correctionVolume": 0.0, @@ -55437,7 +55737,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfac56e226d145a30b700f2a71b0eb42", + "key": "bbb7112bfb1edcae74228eef87d580c4", "notes": [], "params": { "seconds": 1.0 @@ -55451,7 +55751,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "481e2352e47aa6a598996d57500bd5be", + "key": "d9fc1b5f4b6d1777ccff0171563f3961", "notes": [], "params": { "forceDirect": true, @@ -55484,7 +55784,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c336a20db9d531c401ad165d3f1a2457", + "key": "859068dddfc325d83b4e910a51745a16", "notes": [], "params": { "pipetteId": "UUID" @@ -55498,7 +55798,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10560d373ad625e3a093b005bed30528", + "key": "2929a57147ec385651197c524dcba611", "notes": [], "params": { "forceDirect": false, @@ -55530,7 +55830,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2add5379553a919099de9685d47001df", + "key": "79323d10252f5ce1bdb2a25c90e18964", "notes": [], "params": { "pipetteId": "UUID", @@ -55546,7 +55846,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6333f1f1329294b4128a56846df9c52d", + "key": "c631edf3045db1d92f1f16f0fb454068", "notes": [], "params": { "pipetteId": "UUID" @@ -55560,7 +55860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf375b77a4f7c77fd73b789a29ee04ac", + "key": "32bb45bd1fedc4293778755ebbe2bd03", "notes": [], "params": { "forceDirect": false, @@ -55592,7 +55892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "606ef2d0e6b2cffa127d0c555bcf247a", + "key": "a6645852808e6adf38ce08e7bae43532", "notes": [], "params": { "forceDirect": true, @@ -55625,7 +55925,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8bfa4b486e4ca317a6ad852e52286933", + "key": "47d6b25672cd34760c12ba6af42c693e", "notes": [], "params": { "correctionVolume": 0.1575, @@ -55644,7 +55944,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be17cc2a6155b19a2343488964a239cd", + "key": "d3341f644a84e4300b7c635a91a0f7b0", "notes": [], "params": { "seconds": 2.0 @@ -55658,7 +55958,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0cf530956647587a9587d82d665b4cbb", + "key": "4a7d42d62e96815fb80ccb1b81725e89", "notes": [], "params": { "forceDirect": true, @@ -55691,7 +55991,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "075bca7d42566cda16a28d06eb8af750", + "key": "250b629bfcab1b71b51694cd8228a8cb", "notes": [], "params": { "forceDirect": false, @@ -55723,7 +56023,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bef2480abf2d187aa2a971fb5cc8a940", + "key": "56174420adfd179b30f83dd6f4b59d6c", "notes": [], "params": { "forceDirect": true, @@ -55756,7 +56056,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b91609c0c9ffaf412afa856b863c43d", + "key": "5a5f0c4545154de147a4a2c08c757f04", "notes": [], "params": { "correctionVolume": 0.0, @@ -55776,7 +56076,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5de574f8356b7f95acb6556ecfd18aba", + "key": "c0b208279276f2aa3bf11b53774156b5", "notes": [], "params": { "seconds": 1.0 @@ -55790,7 +56090,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8069dd73ae0b4469a9d0bbfad6d43172", + "key": "4429b1590b20568898a7cc3a27ecf4bc", "notes": [], "params": { "forceDirect": true, @@ -55823,7 +56123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14a9066ef0285162fe47d0f3d9cc536e", + "key": "599ce2df2257ea5d754fea563501e881", "notes": [], "params": { "pipetteId": "UUID" @@ -55837,7 +56137,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "403f72ace5be1528c48eead29ad7b69b", + "key": "33a0e52e1909ea84d8c4b0b222a2e4b7", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -55866,7 +56166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44e90cadf77af4900412698fcfbc61e3", + "key": "4358e08e0b529e2fddc21fa2eb13caf6", "notes": [], "params": { "homeAfter": false, @@ -55881,7 +56181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f87909b0c90f61ab128b19a08921a7a0", + "key": "a9d60bebff2baadfdd8a567ac4b1ea2d", "notes": [], "params": { "liquidClassRecord": { @@ -56240,7 +56540,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "51a89b96aaf01c85df7c8e8484cd8209", + "key": "d5c2384e44bf22072dbae8e647cfd95f", "notes": [], "params": { "labwareIds": [ @@ -56262,7 +56562,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2eeb9ecb4cdb6cc181faa73a0a2e4850", + "key": "2d7d2476c0ffcfe58bc5b1e5d4be9217", "notes": [], "params": { "labwareId": "UUID", @@ -56295,7 +56595,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0261243455a4e1c2c4bd46f81e71f1d1", + "key": "042350d15c20d34c657c800e06e77ff0", "notes": [], "params": { "forceDirect": false, @@ -56327,7 +56627,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6da7bc59f528da480f3fa65d07cdd458", + "key": "b4ff59f2b9140e418efe61fc65430baf", "notes": [], "params": { "pipetteId": "UUID", @@ -56343,7 +56643,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31fe31087307c66e440dc2bd9b2aa781", + "key": "c7af949a12f24aaaac08f2498f534d02", "notes": [], "params": { "pipetteId": "UUID" @@ -56357,7 +56657,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cd16593e9443836a64a061de427e780", + "key": "4b3e5c143a3745eee66d9d276f31a4c7", "notes": [], "params": { "forceDirect": false, @@ -56389,7 +56689,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c91eefdaa54064d0f89c9ad6854759fb", + "key": "80652fa1a44870cdb55decb042e76bd5", "notes": [], "params": { "forceDirect": true, @@ -56422,7 +56722,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "746659dfa2b1bf83063e80ce4fd87c85", + "key": "f477999f32b42511d3fed04183821811", "notes": [], "params": { "correctionVolume": 0.0, @@ -56441,7 +56741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eee7fb2ed3903b7d6e8e9f39d9bce924", + "key": "5f86ebef1b2685046d9a6516d41dab25", "notes": [], "params": { "seconds": 0.2 @@ -56455,7 +56755,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "345cf4ca2fb7d62ba15ab4a6fc6634ea", + "key": "a0c801b31f765687acd2e6ca549a6a6a", "notes": [], "params": { "forceDirect": true, @@ -56488,7 +56788,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2b8bf3e2dc214cb967a1d7d1e8c2ce5", + "key": "2ddc279d874f821fc638107255860857", "notes": [], "params": { "forceDirect": false, @@ -56520,7 +56820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7430d7cdee50e90d508fbcdbcca69f7", + "key": "79a68f0b9109ed1fd4d8e9320ffeb628", "notes": [], "params": { "forceDirect": true, @@ -56553,7 +56853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c808777b9f4c5e3f74b26ddf5ef8d333", + "key": "2eaadb4a089522df630d7255ed1ca8f6", "notes": [], "params": { "correctionVolume": 0.0, @@ -56573,7 +56873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01619cda9d1f5700c4551c5888b8e6c2", + "key": "cba81f37b5f9818b24e7623ee7f6c445", "notes": [], "params": { "seconds": 0.2 @@ -56587,7 +56887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6eba84b9bbe412c248e3cade46424b1f", + "key": "71d42f761073a963880537a93f686a34", "notes": [], "params": { "forceDirect": true, @@ -56620,7 +56920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af0b24b0f2e0405c8aae3dd5c84e3303", + "key": "5204e0e57f2cc02925ab6b841b438d76", "notes": [], "params": { "pipetteId": "UUID" @@ -56634,7 +56934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8497068dc250b328f081b6e56d0ec74", + "key": "050ee7115e4f80585327b66eef1fb550", "notes": [], "params": { "correctionVolume": 0.0, @@ -56653,7 +56953,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37dbff2831c290b40835c5447edb61b4", + "key": "ea1e66fdfd526f739fa5bd9c33fcd55b", "notes": [], "params": { "seconds": 0.2 @@ -56667,7 +56967,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "09176400a4eb276f0e5c5b1cd133a4ad", + "key": "507711689fcad6678205694d6e9f789e", "notes": [], "params": { "forceDirect": false, @@ -56699,7 +56999,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bd5a097b008d25acca2e4019f41a59f", + "key": "731c537aac53bb711c5c938cb9da1188", "notes": [], "params": { "correctionVolume": 0.0, @@ -56719,7 +57019,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d8777a22281a8e0e2fee719b7fd9cece", + "key": "3e8e07f94489a7c81dba3d1fccb78f06", "notes": [], "params": { "seconds": 0.2 @@ -56733,7 +57033,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "afa3590fa37070f5d8b4fe9c203924ec", + "key": "d1a165e515edaa6d2554a189ef2a6fac", "notes": [], "params": { "pipetteId": "UUID", @@ -56749,7 +57049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c371ea5d101258243f0ecefbcb862a69", + "key": "c230aa6530454a2bfa6e0d2158a968ee", "notes": [], "params": { "pipetteId": "UUID" @@ -56763,7 +57063,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "987ad0bbae981d4707040222b798d44c", + "key": "f75a9195c3eea598caf712f5a58f1a20", "notes": [], "params": { "forceDirect": false, @@ -56795,7 +57095,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "828646298d561a74e56035c4ed876150", + "key": "43694d884e8d78c67852c8a9f226be8b", "notes": [], "params": { "forceDirect": true, @@ -56828,7 +57128,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b94f35d213dbafc036d176e11f4965dc", + "key": "791febe629087942751ad7505c445b3e", "notes": [], "params": { "correctionVolume": 0.0, @@ -56847,7 +57147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6e1ca4fc24ff850bdf016568982548c", + "key": "f6cf4db8782269f345624d6e8a01dcc0", "notes": [], "params": { "seconds": 0.2 @@ -56861,7 +57161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62ef61ea1299027059467cafb71b1cec", + "key": "0e15bd23f6ff5929054f463be2fe5539", "notes": [], "params": { "forceDirect": true, @@ -56894,7 +57194,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81a7ed1216b15ec1d5fb96f6b122321f", + "key": "579ea4e24bae70a42b3126e69bf54fea", "notes": [], "params": { "forceDirect": false, @@ -56926,7 +57226,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "635f61508a3b30d9a128aea9d5be3ba4", + "key": "479ecbe0ddb1359440a7d436279d6feb", "notes": [], "params": { "forceDirect": true, @@ -56959,7 +57259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "466ff8b92c48f60ab0d26627a3057223", + "key": "63107c7370c4e811aa80a6e9a7bb82cc", "notes": [], "params": { "correctionVolume": 0.0, @@ -56979,7 +57279,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c7fa2f76387c137995a2de5225969eb", + "key": "a6de105e2e17908add245319117c8b9e", "notes": [], "params": { "seconds": 0.2 @@ -56993,7 +57293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b1ce5d10b855bfec829595ec35d6e81", + "key": "7f02ad0566c7ca3dee0f2c1003763c3f", "notes": [], "params": { "forceDirect": true, @@ -57026,7 +57326,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8508525ea1d1a736672516d28d3b1f1c", + "key": "a67961419f57bb35081ff6078b5abf05", "notes": [], "params": { "pipetteId": "UUID" @@ -57040,7 +57340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef337165dcce3b70e889718777f57680", + "key": "b6a41077db7e0407dd321d056ed2c9b0", "notes": [], "params": { "correctionVolume": 0.0, @@ -57059,7 +57359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "143f2a509f3ed2f7f684616a978173f6", + "key": "4a014dc2d60e5368878a121570930e47", "notes": [], "params": { "seconds": 0.2 @@ -57073,7 +57373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5906f767f8ad5f345466e3c1956c2de9", + "key": "69d409ea7467933de3a1ff239ffbccbe", "notes": [], "params": { "forceDirect": false, @@ -57105,7 +57405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d97374da9861094b34d69cca8ac732a5", + "key": "4af09e82b936a33cb7552ee503930cae", "notes": [], "params": { "correctionVolume": 0.0, @@ -57125,7 +57425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c65661054d96b18c8b163be49347cae", + "key": "cf4307cba7db429b3327d50885cd5083", "notes": [], "params": { "seconds": 0.2 @@ -57139,7 +57439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "efe3236218ce72e658971c1fcd773896", + "key": "f93a62ba812a4b6a85274490d72842ad", "notes": [], "params": { "pipetteId": "UUID", @@ -57155,7 +57455,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02f0a01d08eeec59ff69f6c7628c7934", + "key": "d96ca63e6b95e7d824b33bca04588b41", "notes": [], "params": { "pipetteId": "UUID" @@ -57169,7 +57469,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac365d5080a930f3a9d7295e43a0e44f", + "key": "9d5d58ae8f0b65c0dbd778b268fa21fb", "notes": [], "params": { "forceDirect": false, @@ -57201,7 +57501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f0f1175abae87893ed817d62f137a9fc", + "key": "48a734389f5271ec0af1b99eddb78f74", "notes": [], "params": { "forceDirect": true, @@ -57234,7 +57534,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "887e49cfc23d6cb7d36b31aa2338abf4", + "key": "ba6a407568d79091d586a4fa76d32a82", "notes": [], "params": { "correctionVolume": 0.0, @@ -57253,7 +57553,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "012b8285f4287c72bc50543b76ad1667", + "key": "15baa7f55771e06c8a57b25fada4f90b", "notes": [], "params": { "seconds": 0.2 @@ -57267,7 +57567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e5fd1d10020a017adf9dafcd79c2a3c", + "key": "ca80b750f3fb6a8d6bb06c4179c1bf30", "notes": [], "params": { "forceDirect": true, @@ -57300,7 +57600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d850ac43b0c31bab110758d41835d7a", + "key": "a365c2b502edd0fa61f2fd12b35efb6d", "notes": [], "params": { "forceDirect": false, @@ -57332,7 +57632,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1205e8f32c30a7fc0b954afeb719c2e", + "key": "dc4bb4d4bf31e08da7f72407208ecf9d", "notes": [], "params": { "forceDirect": true, @@ -57365,7 +57665,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6bcdd3679ce206bb8187fa2c5dd5d8d", + "key": "bac765be5e753f803b4c42c94fdbe008", "notes": [], "params": { "correctionVolume": 0.0, @@ -57385,7 +57685,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e48b5a22cc048b5c4f077923d1c2e144", + "key": "afb594ff62bb262860353b0b9e8538c4", "notes": [], "params": { "seconds": 0.2 @@ -57399,7 +57699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4fc5fdfbfd2db8cb8ce678c01ecb5ce", + "key": "fb6226c7a272943ed410f67211597da2", "notes": [], "params": { "forceDirect": true, @@ -57432,7 +57732,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1a064fa580e0244932145392e95c0c3", + "key": "9217efe66e10e9a0ab8ecf84dce727f6", "notes": [], "params": { "pipetteId": "UUID" @@ -57446,7 +57746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74fa82a44de198b5b952fd2f2fb6d197", + "key": "15b0d74a7019e18c6e07f68bf83cac4b", "notes": [], "params": { "correctionVolume": 0.0, @@ -57465,7 +57765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1c0ac6016134da42cd0c45c821bee39", + "key": "b54ce97f322b35c477a5236ff8dc6d71", "notes": [], "params": { "seconds": 0.2 @@ -57479,7 +57779,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65b482207e50f35ed9738ec79c17934d", + "key": "09360e640efc0c1f4b47b6d94496ffb1", "notes": [], "params": { "forceDirect": false, @@ -57511,7 +57811,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea11ed449aecdf51503c76d55103241c", + "key": "d91982ec0d3d02b71b6e1c8c719dd3aa", "notes": [], "params": { "correctionVolume": 0.0, @@ -57531,7 +57831,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07ce8d1946308e39879291e0a4f56884", + "key": "33f29759e6c227d75045cba539d113dc", "notes": [], "params": { "seconds": 0.2 @@ -57545,7 +57845,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "babea9781cc873a7876501ef8b4061e7", + "key": "ad603b1772ca66b91569c67571d1f6eb", "notes": [], "params": { "pipetteId": "UUID", @@ -57561,7 +57861,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b9c88e9de7383407cbf8c4608569df9", + "key": "b7bd1919815b116f493ab9ee183905d6", "notes": [], "params": { "pipetteId": "UUID" @@ -57575,7 +57875,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0374f74d3b25a84d620406deae474020", + "key": "941e34acb49d19d7e371cb2bc6edba9a", "notes": [], "params": { "forceDirect": false, @@ -57607,7 +57907,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65a04376bb325edc02412f97f9df057e", + "key": "6f51e1c5bed6706af514c418d49eff5e", "notes": [], "params": { "forceDirect": true, @@ -57640,7 +57940,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2841490aca66c21a87f3ce3fa036459", + "key": "74f0148bd2d9dbcd297b709dbc7b4026", "notes": [], "params": { "correctionVolume": 0.0, @@ -57659,7 +57959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "736b3ba3855d78d1f9c51c5f21b9df26", + "key": "9a102a8fb6f96fc8204cc15f22f870f7", "notes": [], "params": { "seconds": 0.2 @@ -57673,7 +57973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce2ceae1a0e98d5c09e086586c49932c", + "key": "af61eabb147ebfb9e77b7e57587b9201", "notes": [], "params": { "forceDirect": true, @@ -57706,7 +58006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f1e3b7f9c9eb3f8e8ba6233957050b3", + "key": "42a56742a954e05db3c99ff216cd1e22", "notes": [], "params": { "forceDirect": false, @@ -57738,7 +58038,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8c34e3e94916f44c9663065e6f5a17a", + "key": "01f33e7f50ba814b08bf80ce4cbcefef", "notes": [], "params": { "forceDirect": true, @@ -57771,7 +58071,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c22642c7291a56686d3327a718c4992", + "key": "ee960daabe10fb7eeeed1915d8afc006", "notes": [], "params": { "correctionVolume": 0.0, @@ -57791,7 +58091,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a275ef27a55b4a7f29a49486117a1c0", + "key": "a2398b08969c3320032aebc501579c19", "notes": [], "params": { "seconds": 0.2 @@ -57805,7 +58105,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ce6b539f2661bc6e8d19e9eb02eba86", + "key": "bc5149f5a26a38271c61902b18ee350c", "notes": [], "params": { "forceDirect": true, @@ -57838,7 +58138,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8a603dab8198df2672c5a31757cbf62", + "key": "75698383858f652c12a0157e18c17dcf", "notes": [], "params": { "pipetteId": "UUID" @@ -57852,7 +58152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37ca32eaa0daea76e9cd3e0b507a24fe", + "key": "537ca9b0128692f68dbea6986c96bd9f", "notes": [], "params": { "correctionVolume": 0.0, @@ -57871,7 +58171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72301bf70b21b44ce8fd17b7aabdd9b1", + "key": "3bbdfb15ee8a282ec2d2a51cd30fed71", "notes": [], "params": { "seconds": 0.2 @@ -57885,7 +58185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5de754a8c2b51e6e104300889dae055d", + "key": "b036fb87ea1f421bbe0ec039ee460bca", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -57914,7 +58214,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e5adbc5e552efe8395eee6309638c56", + "key": "a95166a8f4e91c39e76077a5509d2472", "notes": [], "params": { "homeAfter": false, @@ -57929,7 +58229,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "87bf24da0fddedda9db4defea104d564", + "key": "3dbd15d1b2c953e8f6124780d4e7db4c", "notes": [], "params": { "liquidClassRecord": { @@ -58316,7 +58616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "229b3e81eb7a2951213ecfa3288dfd45", + "key": "b8c69e07e7a12ec7dfe3b803b68bdcee", "notes": [], "params": { "labwareIds": [ @@ -58338,7 +58638,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "226ecad2b53f295abd6a3e07a551ff13", + "key": "c62da8b456e0e4ec73c4fcca2b166cb6", "notes": [], "params": { "labwareId": "UUID", @@ -58371,7 +58671,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c569e7d017ec793ccb43c5b2c764572", + "key": "847d46ad13d0195b93327bd5e370daac", "notes": [], "params": { "forceDirect": false, @@ -58403,7 +58703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9be9c099562025b05f993fd31076802", + "key": "44af225a67c22339226d8f3844a1b37c", "notes": [], "params": { "pipetteId": "UUID", @@ -58419,7 +58719,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f17ac7704114b636ff0de421a928e53", + "key": "3ed005b00604ef982521da096edacd84", "notes": [], "params": { "pipetteId": "UUID" @@ -58433,7 +58733,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dff6b652e10782f3b395509241685ea4", + "key": "fe70c513070daef839c7a57cacf43fe2", "notes": [], "params": { "forceDirect": false, @@ -58465,7 +58765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "211eb6e4f077ff0d9a3a7e288af9029d", + "key": "f30efd6fc7e82fc4f51048831a8cfb74", "notes": [], "params": { "forceDirect": true, @@ -58498,7 +58798,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea3cfd6546a3c0deb8cf8ecdc3e4e2e8", + "key": "329ea6b0426fa98bb9529c9222abbc50", "notes": [], "params": { "correctionVolume": -0.5, @@ -58517,7 +58817,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61f8b08da2911de099e79d48c1c83144", + "key": "1c4355adaaf7f3c8bd40fd4d90267239", "notes": [], "params": { "seconds": 0.2 @@ -58531,7 +58831,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3f6088fa140720e3e64754988d98c6c", + "key": "595dc18edb2509e79f7289b9e54687d0", "notes": [], "params": { "forceDirect": true, @@ -58564,7 +58864,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f66c326edd9895cdc3f9276fa1ae938", + "key": "d3326c367bf06c5c845c334077eb33e0", "notes": [], "params": { "seconds": 0.5 @@ -58578,7 +58878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb182695bb5973ed967a970682314063", + "key": "7f489e4e59d20ce15d03aafdaa690b8a", "notes": [], "params": { "forceDirect": false, @@ -58610,7 +58910,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8600e505ed74493379e85b8c5cd0f461", + "key": "43421b2c0e0ce62b0c3ab2f3fb4ced47", "notes": [], "params": { "forceDirect": true, @@ -58643,7 +58943,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10ee381a2d08e3e1f7c0b663bb666da4", + "key": "ec95966391ce56e4b6d11f9166187030", "notes": [], "params": { "correctionVolume": 0.0, @@ -58663,7 +58963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04a9e30c4e9789e69c240942b8e9d789", + "key": "beee319c81396df92b6afebec5f24164", "notes": [], "params": { "seconds": 0.2 @@ -58677,7 +58977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fdc32920f098e68485a26cdc2e475969", + "key": "7b5f858a6f8aabfb65948b97e9e09008", "notes": [], "params": { "forceDirect": true, @@ -58710,7 +59010,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a09bbc8366af34db557fd528c368344", + "key": "b49a9e938a4aa5787d04c91175d7e442", "notes": [], "params": { "seconds": 0.5 @@ -58724,7 +59024,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22844a9266f3336fd0ccea2b0808e555", + "key": "525d28f09323a1759ba7c0c473a2dafd", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -58743,7 +59043,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e0330166f14c55d864e8867cb98c35d", + "key": "f8d4a91cb35ef4233c6696a6624a39ce", "notes": [], "params": { "seconds": 0.2 @@ -58757,7 +59057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5dc5bdfd5ec3d91201e23c3648b8fc6a", + "key": "568bace589d87a02ea92780c6b77cd99", "notes": [], "params": { "forceDirect": false, @@ -58789,7 +59089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f40b6e88219ae8a55e8df689cebcd7b7", + "key": "9456e726074fd78c00c41506839d3f45", "notes": [], "params": { "correctionVolume": 0.0, @@ -58809,7 +59109,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b225e51c89112af0ff16fd125efb9c8", + "key": "40b79a0e968e480e29edae36336b7886", "notes": [], "params": { "seconds": 0.2 @@ -58823,7 +59123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b2bab4d4adc7c36cf9b094655cf80b0", + "key": "ee7e7f09b1289a7de585033d84223dbc", "notes": [], "params": { "pipetteId": "UUID", @@ -58839,7 +59139,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da0b99bfb332ebe50cf60d6d3bae5851", + "key": "5a3ca7faa59d637098bfd568e96e814c", "notes": [], "params": { "pipetteId": "UUID" @@ -58853,7 +59153,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ccb8778cea70c915bf2f48b73a33544b", + "key": "e37b565eb90ffb65034aaed731ea0fb3", "notes": [], "params": { "forceDirect": false, @@ -58885,7 +59185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "938db78fb395323b9b4ec31b3c50e4cd", + "key": "53f20769ae6229f041abdfc137ad5008", "notes": [], "params": { "forceDirect": true, @@ -58918,7 +59218,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "518174158fd4e9256fe43b7d64fd7f68", + "key": "c4c7ff01b8438d59152d6fc97299edc4", "notes": [], "params": { "correctionVolume": -0.5, @@ -58937,7 +59237,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b77030ad1314dfe94cbd340892f9c71b", + "key": "71ad0796f1c258b0985dc683a257e4d8", "notes": [], "params": { "seconds": 0.2 @@ -58951,7 +59251,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "67e89435971eaf63c2a1682f0b647b91", + "key": "f3f84e66520f440d0ba8d70199ffd16a", "notes": [], "params": { "forceDirect": true, @@ -58984,7 +59284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc819f7facb914e7078a4aeaab33df7c", + "key": "a4c148a5887ee9e31482dd440065eb79", "notes": [], "params": { "seconds": 0.5 @@ -58998,7 +59298,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4aeb01c347aee3d4ace3a5ce1cfbf0d7", + "key": "7e040e7a3653d759e3ffe4224a3fe5d9", "notes": [], "params": { "forceDirect": false, @@ -59030,7 +59330,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "771362d2e66699997304a33bf4750d02", + "key": "69d41503d4272b85ae9f163fc945ecd8", "notes": [], "params": { "forceDirect": true, @@ -59063,7 +59363,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac5825ab73940433178439cca6e7213b", + "key": "3815f446b55a100b4cc236f6120f9aba", "notes": [], "params": { "correctionVolume": 0.0, @@ -59083,7 +59383,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f00aa6e9834c3ecbd48c7a7e2cb03a0", + "key": "5d2b58b83d60105311821c830fe2eba5", "notes": [], "params": { "seconds": 0.2 @@ -59097,7 +59397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f755fcf9db5f75355a7f14cad9ff4ad4", + "key": "007ea5ae65235e5c9186664bfc93e795", "notes": [], "params": { "forceDirect": true, @@ -59130,7 +59430,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "059092ebc6179a1a553963654808db36", + "key": "9a182493965a7d44051b08c81116c02a", "notes": [], "params": { "seconds": 0.5 @@ -59144,7 +59444,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1fe3fb2ff267436b86ec796e56c35216", + "key": "761e5085b1decb6519080299f6eabd1b", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -59163,7 +59463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aab8c917ceac9f4c4333ecfd082a1f8e", + "key": "0876809bb28ee0c02ce3e6c60c16485e", "notes": [], "params": { "seconds": 0.2 @@ -59177,7 +59477,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43baffa62cfbb9265c968215159c723a", + "key": "5f8f28b966a09a4dd581ee655def6036", "notes": [], "params": { "forceDirect": false, @@ -59209,7 +59509,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5e1ec39225edbd623b57c18aa8908b1", + "key": "2ab810f67b95a555e81e9dd728166998", "notes": [], "params": { "correctionVolume": 0.0, @@ -59229,7 +59529,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db39521d7dbe0955ab9df0f6bc26107b", + "key": "11d2c06990862a40d8f73765256592c9", "notes": [], "params": { "seconds": 0.2 @@ -59243,7 +59543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1eda6dc0540d8f25080847aadb8141d4", + "key": "3bd3d582869b6c73c076ab78aea51144", "notes": [], "params": { "pipetteId": "UUID", @@ -59259,7 +59559,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "070b0c9d691687bb9ef371daf5b5e8ef", + "key": "4afa69c9c7b08c11d2e370709570e533", "notes": [], "params": { "pipetteId": "UUID" @@ -59273,7 +59573,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f00fe2ccdce35f79bf1e417f7f2b4222", + "key": "072ff32779d1c9b5df7c37d0dacbbad0", "notes": [], "params": { "forceDirect": false, @@ -59305,7 +59605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2ba3252268b5582570ddf3bb4c83bbb", + "key": "8b9a1fc52e5e029d9023854d1a457b13", "notes": [], "params": { "forceDirect": true, @@ -59338,7 +59638,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97cb14a8d0c8fa0ec225f2b27f5a8c09", + "key": "043536428551a3dfcaeead22f0172a23", "notes": [], "params": { "correctionVolume": -0.5, @@ -59357,7 +59657,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4ed6edfeb4b2c1e88bdf1776d385cce", + "key": "827fcb8b366cb39612c9bcbd6e1d4c00", "notes": [], "params": { "seconds": 0.2 @@ -59371,7 +59671,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34d6029a125af552d4a2660c818ff636", + "key": "c903f903a1d9229fc3733732ef46d32c", "notes": [], "params": { "forceDirect": true, @@ -59404,7 +59704,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e005e1b60b8246e60584c00b75a232a2", + "key": "ee2f647432ba780e869802e1ac3db7c5", "notes": [], "params": { "seconds": 0.5 @@ -59418,7 +59718,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ee7af05a6e59d29cce4cf0d513c61e45", + "key": "0cbc89e67f8848d329df24e869b702ee", "notes": [], "params": { "forceDirect": false, @@ -59450,7 +59750,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53c8336cfbe4ede3b28eda873a17aa74", + "key": "dba40a84d64999548237e5f9207d4496", "notes": [], "params": { "forceDirect": true, @@ -59483,7 +59783,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d05cfd5e41d95b2243d9c7dd0c26d779", + "key": "967ab040eeae71072a4ebf54ac0baa85", "notes": [], "params": { "correctionVolume": 0.0, @@ -59503,7 +59803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b81149251374663c8198625dbaaff25", + "key": "dbb123f7bf338e57734eb87ea6f0cc09", "notes": [], "params": { "seconds": 0.2 @@ -59517,7 +59817,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "141a3225e757ad03d9353f4c236120cd", + "key": "15fbb594d53851214300260cd35e07eb", "notes": [], "params": { "forceDirect": true, @@ -59550,7 +59850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27575b3b0a85d343aed2341ff394e60a", + "key": "058eaccb05cf4413ecb6e85ce94c7af0", "notes": [], "params": { "seconds": 0.5 @@ -59564,7 +59864,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0b1a2c8342aa9fd9d19c0fe7958605c", + "key": "bc8006fcce3ad6c9a3760a3b398ac9a0", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -59583,7 +59883,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13e5e789eb29dacbda68aafc9410105f", + "key": "5cc0cf6a777138809133c538d117a024", "notes": [], "params": { "seconds": 0.2 @@ -59597,7 +59897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fc763972433a9c21d183901cea8d8d4", + "key": "3e0114c681aac94ace0b976508869f36", "notes": [], "params": { "forceDirect": false, @@ -59629,7 +59929,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74e897a5248693f01b205239462b4299", + "key": "c02ecf4843df2b5e66cd3f78945684c9", "notes": [], "params": { "correctionVolume": 0.0, @@ -59649,7 +59949,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa6027fcbe569ffafb1f665ff19175bf", + "key": "bc0e0283b1fdf62103b4cb8a0371ee66", "notes": [], "params": { "seconds": 0.2 @@ -59663,7 +59963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0cef7889c8d19e61a5f53760bde4ebd", + "key": "64a7be9a512596e9049728e413dd0e2e", "notes": [], "params": { "pipetteId": "UUID", @@ -59679,7 +59979,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32b2ea2dc24687bedf4d220176c8f051", + "key": "9b4a6fddf582f90fe4eb97295ba91cee", "notes": [], "params": { "pipetteId": "UUID" @@ -59693,7 +59993,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92ee4832c3a3000cea35ace3025c4916", + "key": "3d8c35b449a295e8c3195a0709991695", "notes": [], "params": { "forceDirect": false, @@ -59725,7 +60025,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7059ce7545e7a6a117bfc2baf0463eb6", + "key": "ff835a9d93eb65c7bfe97a9485293ade", "notes": [], "params": { "forceDirect": true, @@ -59758,7 +60058,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "915e1628c1b75724760184b394e7acab", + "key": "c0f3493d040d88cef9725eed2b953a66", "notes": [], "params": { "correctionVolume": -0.5, @@ -59777,7 +60077,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "725e477da35e349226f87de4fec2f133", + "key": "e51df0f75037db5f676839a774ffb2c5", "notes": [], "params": { "seconds": 0.2 @@ -59791,7 +60091,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0945a4ed8ceaa57730e7aa9430e98ffc", + "key": "fc3f3a10c05bcf2c45254f591bef12ec", "notes": [], "params": { "forceDirect": true, @@ -59824,7 +60124,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1de52f8bec084401d8b5d7d33ed0778b", + "key": "4277462878f1c49d9005832a2af2011d", "notes": [], "params": { "seconds": 0.5 @@ -59838,7 +60138,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a5fd6ef6579a9990e9341dd72dcf49b", + "key": "f53ce03e721fac15ff2aac57171bbe57", "notes": [], "params": { "forceDirect": false, @@ -59870,7 +60170,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8dcf73499f865cabb0bd0536316ea93", + "key": "c1a6a05ff118bc512fc948919da53f1d", "notes": [], "params": { "forceDirect": true, @@ -59903,7 +60203,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5b5002ce6a7bc496ae089e64809eaa9", + "key": "23db521ef407693a75616c673a96c494", "notes": [], "params": { "correctionVolume": 0.0, @@ -59923,7 +60223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c2a0deb1c37a0ff6ef48c9dc7e403d1", + "key": "f16a1010445aec737f629ada24a22147", "notes": [], "params": { "seconds": 0.2 @@ -59937,7 +60237,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6d0ffa6e9c7a653592ee2b78f116611", + "key": "8ab8f9b1b01bd172334aab2146a343b6", "notes": [], "params": { "forceDirect": true, @@ -59970,7 +60270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10958247b5456a49070911553833208d", + "key": "e872070566562068ca6070f96c3b8aa4", "notes": [], "params": { "seconds": 0.5 @@ -59984,7 +60284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3c1c18c6309a067ead1c1e7ea4c2d88", + "key": "a427b95cc864ed23b21a207212456a26", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -60003,7 +60303,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c859c90d1571371ffef63217da94ca85", + "key": "9d15794640f88aca6efaf486b0e82c27", "notes": [], "params": { "seconds": 0.2 @@ -60017,7 +60317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e9a8545afa94305d1e36d1b139ebf3e", + "key": "0b3f86dd5126f76d23c6d417226c8f58", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -60046,7 +60346,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26fc6e2db1bbc5716dfc29942073f367", + "key": "ef8d755e419c2f4910ac017fc91c926f", "notes": [], "params": { "homeAfter": false, @@ -60061,7 +60361,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a98d7c23529a95d0e269f6869c20c008", + "key": "579ba9ca032d455a093ba67de2f30e8b", "notes": [], "params": { "liquidClassRecord": { @@ -60436,7 +60736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4ef02313b8d9160d2f9ad99eba31075", + "key": "4a5cf6c8c106734bd45e0f661f0b537c", "notes": [], "params": { "labwareIds": [ @@ -60458,7 +60758,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7da4a42bae44f34427536dc1b9e53adc", + "key": "c7f8bc6cef637a1c25bbc4c729b3ffcf", "notes": [], "params": { "labwareId": "UUID", @@ -60491,7 +60791,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df6b8097cbd873539bd4b04b2387a948", + "key": "72b6cab4c03748fc8311e04566644cdc", "notes": [], "params": { "forceDirect": false, @@ -60523,7 +60823,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "049d8064a8dcb71eee5f65af5c7e5d46", + "key": "29dc2762bebbb4eda9a318fecd303252", "notes": [], "params": { "pipetteId": "UUID", @@ -60539,7 +60839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3a6e2ec11a86f4cb71229db4d6c1ae7", + "key": "8de0727608ae7fbdf9263a91b2d2c5db", "notes": [], "params": { "pipetteId": "UUID" @@ -60553,7 +60853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5caf320fd16442d1e0c0204a221beb3", + "key": "d5db5ad04bfdd6ad4002c8d5ff816df2", "notes": [], "params": { "forceDirect": false, @@ -60585,7 +60885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e1da2e61de15c82b27c569927c31119", + "key": "7e2fe7d4fc6dc026a6a0cda00352b461", "notes": [], "params": { "forceDirect": true, @@ -60618,7 +60918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8815a286ecdeb037e5e83b7180d28c7a", + "key": "9a81ba4f9ed8ad935b948b6b7fbf0d3d", "notes": [], "params": { "correctionVolume": -0.2, @@ -60637,7 +60937,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64eeefd89e85e0fcbdf8fb3c6fe0b64c", + "key": "2de431c60c274383ac2a07c44f217b55", "notes": [], "params": { "seconds": 1.0 @@ -60651,7 +60951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3abd9c5aed2abf5b9684c6bac7f40e7c", + "key": "fa14b35e290f34c373adc1d55fa576fd", "notes": [], "params": { "forceDirect": true, @@ -60684,7 +60984,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93bda9c2aadb893e66fc45478d2604b6", + "key": "e4b1193c5e7440e52976009927e9ca49", "notes": [], "params": { "forceDirect": false, @@ -60716,7 +61016,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36f00bc4251e9b20bb8c4651be4cbcaf", + "key": "a653f37335011f885155b8b7fbfa105b", "notes": [], "params": { "forceDirect": true, @@ -60749,7 +61049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f230e8c439fb3259a25dafc00ffc521e", + "key": "c2d5b983386ebcae4f9a6d45a012f7bb", "notes": [], "params": { "correctionVolume": 0.0, @@ -60769,7 +61069,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1d1b9f6812f30ec0e9dfe9af1b0d7ce", + "key": "c205ea19911ecff7fb40b583a8b504e4", "notes": [], "params": { "seconds": 0.5 @@ -60783,7 +61083,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "455193053893dc17834a4b9849018fdb", + "key": "cc8b8453fd6e4202114124c2187ce5a9", "notes": [], "params": { "forceDirect": true, @@ -60816,7 +61116,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e40912a634c21f5f44da44ec148b31a4", + "key": "2e6d843bb0aa4cfc1715f3bca53fb6f9", "notes": [], "params": { "pipetteId": "UUID" @@ -60830,7 +61130,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07b7e08dda7a784ee0f72e094b2f3140", + "key": "5efc29f0058026ea7bea9b3b099a7a59", "notes": [], "params": { "forceDirect": false, @@ -60862,7 +61162,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33b30eee9cf2baf79bc9474f8798f9b6", + "key": "d323a7f9f99feec7a760d76de3f9797c", "notes": [], "params": { "pipetteId": "UUID", @@ -60878,7 +61178,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6869a36901fab105f526ce613be8f8e7", + "key": "e071a6faabf062137b36d65bd8a9b616", "notes": [], "params": { "pipetteId": "UUID" @@ -60892,7 +61192,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ceabca4f9bcb912ae56783df94bcc05d", + "key": "547abf3974a4dcea69f626e09cbe87aa", "notes": [], "params": { "forceDirect": false, @@ -60924,7 +61224,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79529555eec5066d83e84fabf3856af3", + "key": "a7b0b49b4b378475b3be1a4de7d44f7c", "notes": [], "params": { "forceDirect": true, @@ -60957,7 +61257,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "288240206a627c7c5df3b763aa44384a", + "key": "f3def83390d1388650c56cfbbf3fd0ac", "notes": [], "params": { "correctionVolume": -0.2, @@ -60976,7 +61276,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d6ecd431f4a758ff9151605d55cd8f6", + "key": "2e6c67cc507df718621baa630e9ff6c6", "notes": [], "params": { "seconds": 1.0 @@ -60990,7 +61290,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6669a763d7ebdc16d07d88cdacab30ed", + "key": "364ace892f05b6cc2504171e9a5ac4c8", "notes": [], "params": { "forceDirect": true, @@ -61023,7 +61323,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1bbd695e397e79cffe364a375463561e", + "key": "56df4ff95a69941e1f886ab05185bf8d", "notes": [], "params": { "forceDirect": false, @@ -61055,7 +61355,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f949e62a0a8be7c93578f51379e7e43a", + "key": "f272c573a9e60184ce676a0020e99448", "notes": [], "params": { "forceDirect": true, @@ -61088,7 +61388,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "783a3c673dec4208b77037845706d085", + "key": "36c065e1e351b40524aafebbdeedd763", "notes": [], "params": { "correctionVolume": 0.0, @@ -61108,7 +61408,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28a8852b974db907f5f89ed493b73919", + "key": "777cc18175475030e7dbc0ed73ce79bd", "notes": [], "params": { "seconds": 0.5 @@ -61122,7 +61422,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ec18a5febf0d5113882f8c77c13e121", + "key": "480a37b3efd431abda670cdcb0d31e72", "notes": [], "params": { "forceDirect": true, @@ -61155,7 +61455,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3913440f493fbac614d5736b49e158e4", + "key": "17586168defc2d13b1bdd574ac6e38db", "notes": [], "params": { "pipetteId": "UUID" @@ -61169,7 +61469,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3b6c13ddcef4828bc284f24bd1f908f", + "key": "67d3f62ffe12fa5a237ff3ae5f82ae0c", "notes": [], "params": { "forceDirect": false, @@ -61201,7 +61501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52a7e9f77327f71f835890223c0e0d32", + "key": "bd075761d967f99a40392ca29cd447d7", "notes": [], "params": { "pipetteId": "UUID", @@ -61217,7 +61517,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1321411c09de45ff4f2dc3e7f524c567", + "key": "75166f91d65b19d94252a2f942713f37", "notes": [], "params": { "pipetteId": "UUID" @@ -61231,7 +61531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4bca4a216336d44b112eac9c0a04ff05", + "key": "7ce5c80e32aee803f3a192933d4e87d8", "notes": [], "params": { "forceDirect": false, @@ -61263,7 +61563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62ad9680b4b7d4c9494fd1fff41625a6", + "key": "40a5dacaf244f1a1159b0be1bac88e64", "notes": [], "params": { "forceDirect": true, @@ -61296,7 +61596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7037a9b62edcd082f63df5ed9ddab0c4", + "key": "0b47d020a0243f6ae2597cb74a0aa4da", "notes": [], "params": { "correctionVolume": -0.2, @@ -61315,7 +61615,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9febe22ddd67ffc7344178de5a73105a", + "key": "c9cd0770af41a0ed10c9d48b28e4a6e5", "notes": [], "params": { "seconds": 1.0 @@ -61329,7 +61629,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9b14b791ed4fd8df908946663f8933c", + "key": "47734b8a283588be22756e0323e66d8c", "notes": [], "params": { "forceDirect": true, @@ -61362,7 +61662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0f26b5a9ce94b7d169f532b443f9a8a", + "key": "517794eb656ad35b9e3a862be0ed36ee", "notes": [], "params": { "forceDirect": false, @@ -61394,7 +61694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "337c01e71ba8d0200013916f647ed006", + "key": "4b36a75a2cbdea81d9e98c34646774b7", "notes": [], "params": { "forceDirect": true, @@ -61427,7 +61727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "971c703ffb2b23223a911aece251601c", + "key": "1ed94e227b0d9551a5bcc8fc6611a442", "notes": [], "params": { "correctionVolume": 0.0, @@ -61447,7 +61747,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b6acfbc6947463bee9739edfffd23e2", + "key": "f6076cd7f90e41c95cdf86a5d23df761", "notes": [], "params": { "seconds": 0.5 @@ -61461,7 +61761,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd3731850cedec76618c52e598958812", + "key": "412635fc0bbf1fea77acb19446203945", "notes": [], "params": { "forceDirect": true, @@ -61494,7 +61794,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c70d4454f2d5a499c811b859a30422f", + "key": "c808ea7d4c64e3e7ceec897cb7f64335", "notes": [], "params": { "pipetteId": "UUID" @@ -61508,7 +61808,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83bf58dd3817472c14b3f195e2f1f09a", + "key": "a1c6f7ffd605fd7cddfe4ccd8470b3e2", "notes": [], "params": { "forceDirect": false, @@ -61540,7 +61840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45d8b1cb888a34b4dc5ad14518ed0d17", + "key": "5a02ab398430e5dad4829110599c8bec", "notes": [], "params": { "pipetteId": "UUID", @@ -61556,7 +61856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "caa30b790027715a5cacdc71d057571f", + "key": "45559d2b6a2050dda399c14a2c98c727", "notes": [], "params": { "pipetteId": "UUID" @@ -61570,7 +61870,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7eae5c59f55dcdbc52a3ac440c3a179f", + "key": "7d0ead80bb1b9fe95b35ad53b44b07ae", "notes": [], "params": { "forceDirect": false, @@ -61602,7 +61902,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8497aaf72a5b038721d4dc7633c3de24", + "key": "9b4a9e8a75d6164f23c1ecceb21bcf82", "notes": [], "params": { "forceDirect": true, @@ -61635,7 +61935,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "acf8e2ac3cdd886536039c0c863a50ba", + "key": "9aa23cd43e5513d8ae7ef7b0a604bca2", "notes": [], "params": { "correctionVolume": -0.2, @@ -61654,7 +61954,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b3057acc5a1b7c4fdc0e143aa1ca609", + "key": "2192540ff73fecf5bec42e80dc623aad", "notes": [], "params": { "seconds": 1.0 @@ -61668,7 +61968,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "848c5a6ac8db11e6f3a61801d9963c07", + "key": "7af586674421914e83611d49524b3327", "notes": [], "params": { "forceDirect": true, @@ -61701,7 +62001,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f51d8f4a638954d1d53f815e94d51daf", + "key": "133e0c3888fdb3568db6543d81e6c5cd", "notes": [], "params": { "forceDirect": false, @@ -61733,7 +62033,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d46d644dae004d51ccf18047a7e5047", + "key": "ca38bd27c4a0542f8c9b20b44369e33e", "notes": [], "params": { "forceDirect": true, @@ -61766,7 +62066,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f5f896b1c3506aaa81b1f9988a269a4", + "key": "225b4ebb03db83ff3e0656d64ae36c5a", "notes": [], "params": { "correctionVolume": 0.0, @@ -61786,7 +62086,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3729fad3139e1741e8d35f286f357d9e", + "key": "d63cb736c30e2bb974cc0482d5307de7", "notes": [], "params": { "seconds": 0.5 @@ -61800,7 +62100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a75901998b3fdf143c1499304856c9c", + "key": "b863c1f099b2ecdf8caf586a424b411a", "notes": [], "params": { "forceDirect": true, @@ -61833,7 +62133,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0c1123cee812e0d707c50748261f158", + "key": "4de2e4287b012602cf0c0bf15b164cc0", "notes": [], "params": { "pipetteId": "UUID" @@ -61847,7 +62147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f22515dcfeaba5ec9daf216e6debbf33", + "key": "aa4825f2af04cdd8542a8312d7004616", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -61876,7 +62176,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e23165ed926487a6286f42f68936d11", + "key": "55f5005a57adfc4e3339106dbdb2ec10", "notes": [], "params": { "homeAfter": false, @@ -61891,7 +62191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04cddbfcb88681bf209e91a9064fdf02", + "key": "73a2d07fe6e28a3e4cf31671d65e1436", "notes": [], "params": { "liquidClassRecord": { @@ -61945,11 +62245,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -62169,7 +62469,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -62179,16 +62479,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -62250,7 +62550,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fdd20412ba0e2fd03ec8dbe9c18493d5", + "key": "79ae7834ee7fb5d6fcd40213cf163aea", "notes": [], "params": { "labwareIds": [ @@ -62272,7 +62572,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0a0ac7d57f091fd03645e991a8051fa", + "key": "ab9f3a2b5fbd706f72cf40e586ed660c", "notes": [], "params": { "labwareId": "UUID", @@ -62305,7 +62605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "019a36e5cc0ec98b4beb7ff02c83a8be", + "key": "b63af97fee60564584fb1efe8345629e", "notes": [], "params": { "forceDirect": false, @@ -62337,7 +62637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b7b7ce51256629223010cde3a003875", + "key": "8bb3afb5295d7d8c463f18ecfe948c60", "notes": [], "params": { "pipetteId": "UUID", @@ -62353,7 +62653,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f01ed7d9eb2a701828ccff1317385ecf", + "key": "1e27537dee2eff4185d64a2b8fa29bce", "notes": [], "params": { "pipetteId": "UUID" @@ -62367,7 +62667,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48460943fbc17d4094332d5cb5b7d8aa", + "key": "3e2ab1eadb41de160f7756a3affbb819", "notes": [], "params": { "forceDirect": false, @@ -62399,7 +62699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc86d894ea2ba819c48d17473a8720cb", + "key": "4786011acb5fa1ba934adf43de6fdd3d", "notes": [], "params": { "forceDirect": true, @@ -62432,7 +62732,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abfe9c9eae0b5a50306e51cd6be9847a", + "key": "604181b01aba91b1ba61638d026ed745", "notes": [], "params": { "correctionVolume": 0.0, @@ -62451,7 +62751,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8eaaf6f5678204cc1847ec93169cea63", + "key": "e17a42951164df675248ae66cfd446d6", "notes": [], "params": { "seconds": 0.5 @@ -62465,7 +62765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7310dbf4ef44f06234592b91fd3dc103", + "key": "4ca87848d2ba100a27ef0e376245692c", "notes": [], "params": { "forceDirect": true, @@ -62498,7 +62798,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4fd270cb7b0a2d18abd88b748232709d", + "key": "0a0f4206851bb5e1701b16db7f866125", "notes": [], "params": { "forceDirect": false, @@ -62530,7 +62830,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b44fe9958f072f9de5919841261bad54", + "key": "a002c248159afa009fe6c9b2056c2b0b", "notes": [], "params": { "forceDirect": true, @@ -62563,13 +62863,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ba6564095ccd7a31d310dda34f577af", + "key": "e9c95348021717e190fee3c743617315", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 50.0 }, "result": { @@ -62583,7 +62883,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "425bda2381abb01ca5659fd77d4eca5a", + "key": "51f944ad4b9d6eb55d62071efc944935", "notes": [], "params": { "forceDirect": true, @@ -62611,12 +62911,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea0bffbcf7f43b2124b22d13ef6d96bf", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7af49c9d7fc1743baca332794d14e69e", + "key": "fd7a24c005d4c36459bae9135fdb5b96", "notes": [], "params": { "pipetteId": "UUID" @@ -62630,16 +62945,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46e704cd1ac5f2177b4e443180152904", + "key": "8ec986d2eb968aac384abdf09be401f4", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -62649,7 +62964,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8cc90730038f48a31a321d9fc3884a4", + "key": "6e0afb26df61387eaccd4eef9e15e00c", "notes": [], "params": { "seconds": 0.5 @@ -62663,7 +62978,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3af790b24a5fa59a37a498ab1c874cee", + "key": "44c589007521ae82471897f7d2ca5b77", "notes": [], "params": { "forceDirect": false, @@ -62695,17 +63010,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04fb69ccc1c7f51b98f611e9f4c273e7", + "key": "fa1189d4b851fe92885210031ce46d58", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -62715,7 +63030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b110c990b1e85cf84c6ea256177c5bf6", + "key": "53c7d45ec755a25534e73c54c943b7ee", "notes": [], "params": { "pipetteId": "UUID", @@ -62731,7 +63046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c177c4627004b5f31b3e8c76d7d59610", + "key": "5a3237cbc46f73272de795e6bf3eb768", "notes": [], "params": { "pipetteId": "UUID" @@ -62745,7 +63060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07900f0f38ae3277e63b09ee5e7af78b", + "key": "cf516bb94bd12fa2683167a51b831622", "notes": [], "params": { "forceDirect": false, @@ -62777,7 +63092,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b69e54a2d4ca0740795e4d8015ef5e24", + "key": "c1815f2bb1e061a01e6c61496614ab7c", "notes": [], "params": { "forceDirect": true, @@ -62810,7 +63125,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dbadb9794ed42fd7ff00270f38f9807", + "key": "be5db96d8ece136dbc181242a1e397a8", "notes": [], "params": { "correctionVolume": 0.0, @@ -62829,7 +63144,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aeec2e401f6accb51bed94be694fdac6", + "key": "570002031e2d40436f226eaf66c315a9", "notes": [], "params": { "seconds": 0.5 @@ -62843,7 +63158,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a3ac853dfa4ea1745d7caf18d338010", + "key": "5681bfedd2113dba6404c2fee2dd832e", "notes": [], "params": { "forceDirect": true, @@ -62876,7 +63191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0841ddf956e36bcae0bd86483d7a9dd", + "key": "6819fc0248a4b0c69be04d4526928e7f", "notes": [], "params": { "forceDirect": false, @@ -62908,7 +63223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f188b108b20026de258377b7065a989d", + "key": "ad8988f68582f838c57044f151b5eb0c", "notes": [], "params": { "forceDirect": true, @@ -62941,13 +63256,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1e2a0464cba3f3058e2a143d9ad5221", + "key": "96d3b0b5496b0b53d766680d51a70d11", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 50.0 }, "result": { @@ -62961,7 +63276,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9933d9cb583375332fef50480ff3a7e", + "key": "ac69fca5547f7842146c8f751f3e7790", "notes": [], "params": { "forceDirect": true, @@ -62989,12 +63304,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "135b1096305e5ded5674838ca182a69f", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f76ffabf1bd405b6c77e2f03739bfd6b", + "key": "9dbfca38a08829745a6b6e3b297b19e4", "notes": [], "params": { "pipetteId": "UUID" @@ -63008,16 +63338,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e24d5f350b06fa5298f98802b9103a06", + "key": "63f8ecb0f84555609ea2b54e6699c385", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -63027,7 +63357,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c7d94680e03d9efc4ac8d9f9b8b12c5", + "key": "1adcf7c6b9825aa427ea9d14f216ee08", "notes": [], "params": { "seconds": 0.5 @@ -63041,7 +63371,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a21b1ab8eae134757af981662441c42c", + "key": "5f2da6f6684cc7950d9890ffdd8f3737", "notes": [], "params": { "forceDirect": false, @@ -63073,17 +63403,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df1f8dc853a1ffa257375715acb6cce5", + "key": "508125a11abf7bc3b7f5698c242b4673", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -63093,7 +63423,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5513940c062b7be07127e87c60b3ce8d", + "key": "a6e4e33ea188e16b62af1c5a003ab826", "notes": [], "params": { "pipetteId": "UUID", @@ -63109,7 +63439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59f8de20c0c906cf93dfc9509557e86a", + "key": "300ff752d43aea579d4526a94b19a52f", "notes": [], "params": { "pipetteId": "UUID" @@ -63123,7 +63453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22e62caa5397e64eca70ac41d12880c0", + "key": "7f336d252cd273acb3ef90f2b48fca70", "notes": [], "params": { "forceDirect": false, @@ -63155,7 +63485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3c4711280d7d65ca909d74fe356b60c", + "key": "f3f9db9406dcf225abae88b1deba2807", "notes": [], "params": { "forceDirect": true, @@ -63188,7 +63518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "06c2eaf550882731a70f5c81c9e0fe47", + "key": "ac752e09c12f5cd026bf39ea6534e02f", "notes": [], "params": { "correctionVolume": 0.0, @@ -63207,7 +63537,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "796b4643b4a47dde8949e216c1290fdf", + "key": "a28ea4f002371b760e62dc5a84b56fd4", "notes": [], "params": { "seconds": 0.5 @@ -63221,7 +63551,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "662c723b3b87ff0d73d458c26267c390", + "key": "a73a17bd55a00d1afdc39ffd83286bfd", "notes": [], "params": { "forceDirect": true, @@ -63254,7 +63584,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4036bb6ba55b701cc34742e89726f254", + "key": "4bb99bb7d6a7f1efd745a7cbd87f6ff0", "notes": [], "params": { "forceDirect": false, @@ -63286,7 +63616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3997dc76bdc04d7282c179f3ee8d4ff9", + "key": "2190b944340ec7997f62610fcff7d727", "notes": [], "params": { "forceDirect": true, @@ -63319,13 +63649,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ace3fdaa83da43571631d9daf2187270", + "key": "a79c776f4db1876a733e2c0d38359ec1", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 50.0 }, "result": { @@ -63339,7 +63669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b0952d62b9e0c15fd49c25ef13ec592", + "key": "e21a84731216d221cbc02c7ddbe91a0c", "notes": [], "params": { "forceDirect": true, @@ -63367,12 +63697,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "988d299a903c931fb92cd6871fa1821c", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f1b8f5cdbcaf1e7f8f274011d997bdf4", + "key": "f45970c37b6005f9cb5a9bc7846b79b5", "notes": [], "params": { "pipetteId": "UUID" @@ -63386,16 +63731,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eed63f9539e8c9f0dd7f9906f74c6b5a", + "key": "bd229b503cfa39d32383054f4fe20f43", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -63405,7 +63750,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c68bd8cff66f56cebc0506d4257aabc5", + "key": "3c604e926106f0e8307a9a4e7002f48b", "notes": [], "params": { "seconds": 0.5 @@ -63419,7 +63764,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a7d25da82298eb5a63bdb08452a76bc", + "key": "2a196a7e31bdb2e5b2e14f984337ace9", "notes": [], "params": { "forceDirect": false, @@ -63451,17 +63796,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcb846a9891026087b4f73f0d2c3ead0", + "key": "7776cfe6c1044dd173b987ae9b06db97", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -63471,7 +63816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ecd1e1b5e93b83b92b8ac51700fb9f9", + "key": "1750a5944c0b0ba52802a77f35b3f134", "notes": [], "params": { "pipetteId": "UUID", @@ -63487,7 +63832,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f5949d60a2961d7aa6b8ff6bc82c5ed", + "key": "ac19585ba8646d505d4c449770fcf380", "notes": [], "params": { "pipetteId": "UUID" @@ -63501,7 +63846,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd3b8bb712aa01cab421bacc26130ed6", + "key": "23b31d402198e9437a0f93517a88f2f4", "notes": [], "params": { "forceDirect": false, @@ -63533,7 +63878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18e2b913bfad06969c9b61af6e96184f", + "key": "7b0599479e67072ac9eefa38d88eaee7", "notes": [], "params": { "forceDirect": true, @@ -63566,7 +63911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a317858d3e9dcd5ed3c8a104a79a0ca8", + "key": "d3dd2cd1ce1063746b6079d23e718af6", "notes": [], "params": { "correctionVolume": 0.0, @@ -63585,7 +63930,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55c259c1583f0edb67c23aa675cc03f3", + "key": "78f12637ca514c7849bc4e78ddc4e3c0", "notes": [], "params": { "seconds": 0.5 @@ -63599,7 +63944,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "328de1154ec1811a38266b9a7a00a5e7", + "key": "183f5dbab722e390125a61b6411012bf", "notes": [], "params": { "forceDirect": true, @@ -63632,7 +63977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14cbd0713033b14853df48949a8c29af", + "key": "f319dec611bfde0f82a7c20ab797ddb9", "notes": [], "params": { "forceDirect": false, @@ -63664,7 +64009,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da1ed1aacea3672c48a9b711d19246bb", + "key": "7cee134ce95771321957867acb2eb397", "notes": [], "params": { "forceDirect": true, @@ -63697,13 +64042,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2b9f4ba5b414a0264dc0aedf51ad9c0c", + "key": "d9f9195ee1620838b8f00a98c6321c86", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 50.0 }, "result": { @@ -63717,7 +64062,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d17e5c5ae38eda6894c9993c7532597", + "key": "a8b5432a19e349a5f9bc547b2cb3d5d3", "notes": [], "params": { "forceDirect": true, @@ -63745,12 +64090,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6f43834ae3f15cc3a01648061572f74", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5a82de4a38a9c0387a2520bcf5c035b", + "key": "c4c3706285693f1916d902d86177ec61", "notes": [], "params": { "pipetteId": "UUID" @@ -63764,16 +64124,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75e353c68e7bb0738715e516274209cb", + "key": "799ba68ffd9a275a2cad0018959f94df", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -63783,7 +64143,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db7cac7fa758d8c3f6881ec42d01cd79", + "key": "365c560ed0069c50ccf252fa43323b3d", "notes": [], "params": { "seconds": 0.5 @@ -63797,7 +64157,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8b0ae4572cc26575776e26d48990a685", + "key": "ab9aaa047363a8ddde5596ea25688169", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -63826,7 +64186,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1b454983748acd48214dbda21516782", + "key": "76328a07af8b8e8642e238ab0bfffe0c", "notes": [], "params": { "homeAfter": false, @@ -63841,7 +64201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3758bb0daa1a518917c01210110f65ba", + "key": "6b068d3ee1b47948e69454a4a0d23a04", "notes": [], "params": { "liquidClassRecord": { @@ -64240,7 +64600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "39aa8d3c312b89f828740197f324cdf3", + "key": "780d87f235c62b8ecbd24fcfe4f59073", "notes": [], "params": { "labwareIds": [ @@ -64262,7 +64622,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "214ad8ad121916067d5a769fd69676b9", + "key": "a8b96cb45ab3b1e9295c82d740fd58b4", "notes": [], "params": { "labwareId": "UUID", @@ -64295,7 +64655,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9474b497c36b44b90fb0743a74fd1a05", + "key": "07e6846917cc2b050d21e138ff654623", "notes": [], "params": { "forceDirect": false, @@ -64327,7 +64687,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ac854f5dad734a2224b7c9c4b78d12b", + "key": "5c9ab95e0b6628273e8a815d09a7a82f", "notes": [], "params": { "pipetteId": "UUID", @@ -64343,7 +64703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad3d7d14e30d2ed2b42a2703e012024b", + "key": "319d23532f79006d3e9483c0e1a3de40", "notes": [], "params": { "pipetteId": "UUID" @@ -64357,7 +64717,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "845bd88f76528c8be621d0f86769f83d", + "key": "b9fcc8e9f88e9e511b2961c1a671c24c", "notes": [], "params": { "forceDirect": false, @@ -64389,7 +64749,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7dd604060dd8d4c6aff785a47af223e4", + "key": "37aae8f40e317b2c9885b60c50bbe6bc", "notes": [], "params": { "forceDirect": true, @@ -64422,7 +64782,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff614a480de51d2e5cde882471f7a4f2", + "key": "697ed86317a31262c0c5e52ec8209f43", "notes": [], "params": { "correctionVolume": -1.3, @@ -64441,7 +64801,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9e960bdb0405cdf060005cd62d5b977", + "key": "2845a88c0fe137220c2dab318e9771d3", "notes": [], "params": { "seconds": 0.2 @@ -64455,7 +64815,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6075d828137d9229208a3c6361596a3", + "key": "b5427cf16978c5e91e3f488c34220632", "notes": [], "params": { "forceDirect": true, @@ -64488,7 +64848,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b393244b3adf66d6dc0e69562a2fe43", + "key": "ad0f5b06e01b24e9b22b7b30a6435e57", "notes": [], "params": { "seconds": 0.5 @@ -64502,7 +64862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53c1126b93c4f60e7bed58225fd0f430", + "key": "ca0f79edade113010079495b409f9972", "notes": [], "params": { "forceDirect": false, @@ -64534,7 +64894,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "35ef29b6f72adb00cc057cf7fe7a1ad4", + "key": "7a3afaf92fec1e7f7d9ee42efd91cbc7", "notes": [], "params": { "forceDirect": true, @@ -64567,7 +64927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6b53216603bc0c2dc48999f388d4f55", + "key": "efc942206ddfb8a4c77283402c1c9595", "notes": [], "params": { "correctionVolume": 0.0, @@ -64587,7 +64947,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "511e10e48f55ef5d70d9922d754e48fd", + "key": "0ed89e6b8ee95bc296ea31ff60325eb5", "notes": [], "params": { "seconds": 2.0 @@ -64601,7 +64961,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89f44475a7f19813687648a655bc893e", + "key": "588d82ff2593eca980ba457d05d767dd", "notes": [], "params": { "forceDirect": true, @@ -64634,7 +64994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a609048a7c347f7009838e89cfde20a", + "key": "0ec7bc27642b26ba297bcedf9cf470c3", "notes": [], "params": { "seconds": 0.5 @@ -64648,7 +65008,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "763ac16872f4737c5a81f880d09a3ee7", + "key": "c145d1262086add839a62f6b1428f9c1", "notes": [], "params": { "correctionVolume": -0.75, @@ -64667,7 +65027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83c76bd5990e73851e919a811ebf4c32", + "key": "7ee8b6ff752800ba247050e08eeecd7c", "notes": [], "params": { "seconds": 0.2 @@ -64681,7 +65041,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7d0bcb929cc3581f4cda365424e3eb50", + "key": "a478060cfe6519a35fbc7e077f1c6047", "notes": [], "params": { "forceDirect": false, @@ -64713,7 +65073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4c1e3eab3b45c969ec718ccd74dbfdb", + "key": "fe216db07164e9c157f2c5203ad21006", "notes": [], "params": { "correctionVolume": 0.0, @@ -64733,7 +65093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d48be9d5a974937968035b0ad49da63", + "key": "488d0eb4d7df9cac3f3cc6ece8c0f842", "notes": [], "params": { "seconds": 2.0 @@ -64747,7 +65107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ac63d7a7566a503f4ce6aecf70b503d", + "key": "504fbd46dd567e7358b63f859ea52148", "notes": [], "params": { "pipetteId": "UUID", @@ -64763,7 +65123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4729d8c434fffa48ff50d25ebc6f4d99", + "key": "ce948022055c55927deafb4d3e3b48a5", "notes": [], "params": { "pipetteId": "UUID" @@ -64777,7 +65137,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89577f1631720827a13b4c85bf9bdaae", + "key": "a4caedbd14b4b0819151df58143e0f46", "notes": [], "params": { "forceDirect": false, @@ -64809,7 +65169,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63ad8e078d090c7b8933e3f09e7c35a4", + "key": "45856f5213c2779b16052b46911437f3", "notes": [], "params": { "forceDirect": true, @@ -64842,7 +65202,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dfdc7511a13befd3fbc9047a6a421e0", + "key": "0d2e715715593c69593690fe275b032c", "notes": [], "params": { "correctionVolume": -1.3, @@ -64861,7 +65221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "beff3db3c1e2a5a5781f98146c0209d7", + "key": "8aad134a747d952fca3fb165cc5bde7d", "notes": [], "params": { "seconds": 0.2 @@ -64875,7 +65235,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19c0b7f619b6605789b34b4a95708466", + "key": "89af7c3441d31ad222a84a507bf90007", "notes": [], "params": { "forceDirect": true, @@ -64908,7 +65268,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "246d49b20e73889ac2662249aba8ea53", + "key": "903d972db9d87d23d72b5e9fc86d2f96", "notes": [], "params": { "seconds": 0.5 @@ -64922,7 +65282,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3fab5609292d2395ad5f7b616f16439a", + "key": "016d997a33738584c5421f620bc076a9", "notes": [], "params": { "forceDirect": false, @@ -64954,7 +65314,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3502a4f0d7f6629bd22d11bbd1f7e510", + "key": "ccf059d817266698ad6edf0efcbfb7ae", "notes": [], "params": { "forceDirect": true, @@ -64987,7 +65347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04b57e9c6af2695786606f667f7caf6a", + "key": "6751dca9a7702d190866fe9d5f1c6549", "notes": [], "params": { "correctionVolume": 0.0, @@ -65007,7 +65367,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "03ed0bdd130349e67c1ffab9f7349c52", + "key": "ce040ee7b00e692fb2b7ca7b28ab0430", "notes": [], "params": { "seconds": 2.0 @@ -65021,7 +65381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69ad09f986b3608b5118883b83da9669", + "key": "f67de6d751a4e6ab715dfdca7a6e8ca0", "notes": [], "params": { "forceDirect": true, @@ -65054,7 +65414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "664e9e1a032008e28d808fc78528d890", + "key": "e9e198cfbc9456f3a3359e9265c832ec", "notes": [], "params": { "seconds": 0.5 @@ -65068,7 +65428,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a00fef2d7affa5e79f2544cf2fec75b", + "key": "cff35966087820f20cca2b965dc22ef1", "notes": [], "params": { "correctionVolume": -0.75, @@ -65087,7 +65447,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25b06557ce8ef56ff3daaa96f030528a", + "key": "b0f25a39387a68ce1f0dbca648d1faa0", "notes": [], "params": { "seconds": 0.2 @@ -65101,7 +65461,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46f3a1708129dbe3d3a345d03b6ea82f", + "key": "59e237c899f954c317cf20911c97d705", "notes": [], "params": { "forceDirect": false, @@ -65133,7 +65493,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81dbc9fd60d4ea224db8a23c3852efae", + "key": "6aa3aa04ac28a1f60449d76ee665ea47", "notes": [], "params": { "correctionVolume": 0.0, @@ -65153,7 +65513,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e484c05731247f7edd0a37c063690615", + "key": "598c231d4e0aa9aa0b087c5cbabf42c9", "notes": [], "params": { "seconds": 2.0 @@ -65167,7 +65527,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e7dcff99c4319597b471dc262c4fbc0", + "key": "9bf37190d7426dca07bb680d9a3af3e2", "notes": [], "params": { "pipetteId": "UUID", @@ -65183,7 +65543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d13090c9ab9e8bd4e019aed2f52fc972", + "key": "95d679f42449583fef99e52671eff380", "notes": [], "params": { "pipetteId": "UUID" @@ -65197,7 +65557,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6da862bc1729942ad08ef8f03b10fc38", + "key": "25fd042c222b7ce91332d49d1f6ef0f1", "notes": [], "params": { "forceDirect": false, @@ -65229,7 +65589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b2341773306d8d6d13185e41aa202e6", + "key": "945936dbdac02a199f7462e54b5ebb48", "notes": [], "params": { "forceDirect": true, @@ -65262,7 +65622,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc1f22b55978bad21149f3c11d93c201", + "key": "dda6658312919cf3fb112a4a795339b9", "notes": [], "params": { "correctionVolume": -1.3, @@ -65281,7 +65641,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05d89999b19be6a319ed50e51d44897c", + "key": "d3e58daf637f24a8ea104aaffef36c89", "notes": [], "params": { "seconds": 0.2 @@ -65295,7 +65655,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a84f637fd2302fbe2c998fae25888741", + "key": "091402ab23ab1b13537cdaa78bf4efb1", "notes": [], "params": { "forceDirect": true, @@ -65328,7 +65688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ccac4ac83453a0f8213e91e499439a1f", + "key": "d51683378c278df4f539d77d2ada5072", "notes": [], "params": { "seconds": 0.5 @@ -65342,7 +65702,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3a655969df42a6e061b649687ab5b9d", + "key": "9effed0a870eaa6eb3caedacaa180301", "notes": [], "params": { "forceDirect": false, @@ -65374,7 +65734,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d37b84d8dc220f38f46648adf3ba7ea", + "key": "3f9a91f975a019cfad6115caffaaa337", "notes": [], "params": { "forceDirect": true, @@ -65407,7 +65767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe495a2b36e1988fbe741830be95fec1", + "key": "bd58cc515d17ded399247751bb35c42d", "notes": [], "params": { "correctionVolume": 0.0, @@ -65427,7 +65787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "935141c898f0469632244a57a8fce5ee", + "key": "df09284b53d4e9efc336e8eaca4b920e", "notes": [], "params": { "seconds": 2.0 @@ -65441,7 +65801,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b45fa9a38c5a054751b6ad9f952b316", + "key": "6194a11bc41f0eace24cbfdfbc252f76", "notes": [], "params": { "forceDirect": true, @@ -65474,7 +65834,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fce7c2ad5b1dc45a15a6284e41eadd43", + "key": "a9c4af59091605aea42beae20af655a7", "notes": [], "params": { "seconds": 0.5 @@ -65488,7 +65848,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "17d87192c1a172b68702eb22b34c1240", + "key": "b468ad303de4e57ff30cd9dda55c4c7d", "notes": [], "params": { "correctionVolume": -0.75, @@ -65507,7 +65867,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90267744c97db15f94aa5fc193570603", + "key": "6690013225e7aa7c44d37c0538a9b74f", "notes": [], "params": { "seconds": 0.2 @@ -65521,7 +65881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6479330581ba9618895e76e0dfc8bbe", + "key": "d8d527d0111c69deb0733a9cb1755acb", "notes": [], "params": { "forceDirect": false, @@ -65553,7 +65913,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a67f2b2c9b57ec798703eb0043c441b", + "key": "eb3d15d78570e831e25bcb14b49ab277", "notes": [], "params": { "correctionVolume": 0.0, @@ -65573,7 +65933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "316d678721aca756deef492404739b43", + "key": "754b8988c307f9218970c30eeafb2d45", "notes": [], "params": { "seconds": 2.0 @@ -65587,7 +65947,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5e243c3c96ee2883e91e69e10be21bd", + "key": "cba6fb453598d83a8443e6cdceaeb0b2", "notes": [], "params": { "pipetteId": "UUID", @@ -65603,7 +65963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "306d304c1366d75533f976ee98685c03", + "key": "e0c200684a567b7229bc882454fa0f33", "notes": [], "params": { "pipetteId": "UUID" @@ -65617,7 +65977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "457e7cebd948e8071e78a48387f667a3", + "key": "123f5be85f416f7d5f1822b135de3ce9", "notes": [], "params": { "forceDirect": false, @@ -65649,7 +66009,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "125b1ce5c696ff124ac84f869dde82bc", + "key": "bd66c3114f54b59ef60b7b0bfba58df4", "notes": [], "params": { "forceDirect": true, @@ -65682,7 +66042,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e78648009fa1e7ceeeca007bec46dc0e", + "key": "9748ed1e475afd48c9101b4fe5baa963", "notes": [], "params": { "correctionVolume": -1.3, @@ -65701,7 +66061,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c3f62e4cd1e0f0c03cc229abd513750f", + "key": "066950a48fc7a409b0b4524d54972f8e", "notes": [], "params": { "seconds": 0.2 @@ -65715,7 +66075,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c720b1d92dbd7c12d0b6fdc21760d39", + "key": "ab8faf9d57f9680b66451d05ae2ae0ec", "notes": [], "params": { "forceDirect": true, @@ -65748,7 +66108,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f95558213a950642582c2443feed476", + "key": "1044e2113573cee794f5e6ce69a88995", "notes": [], "params": { "seconds": 0.5 @@ -65762,7 +66122,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81f94da0d0b3ae6e0c7627872b1621de", + "key": "ecf65f945b5a2b5928cca0b16765e614", "notes": [], "params": { "forceDirect": false, @@ -65794,7 +66154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "451e191e5025e1ae3391c7bbfa71f23a", + "key": "c5a2e081be1daaf68788042cf7a875aa", "notes": [], "params": { "forceDirect": true, @@ -65827,7 +66187,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "850edba0f96469789973ad9c411b49bd", + "key": "572059b0bfb86a84f3964f4f154e0bda", "notes": [], "params": { "correctionVolume": 0.0, @@ -65847,7 +66207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d388edfc2a6784d2614e131f2a7925dc", + "key": "2a744523628838a3fcd0693d6cc23328", "notes": [], "params": { "seconds": 2.0 @@ -65861,7 +66221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e533adebcb1f13c76e2cec115dba6a44", + "key": "671184dacee44262ec75ef4cf7cb9a36", "notes": [], "params": { "forceDirect": true, @@ -65894,7 +66254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a9ef5c71904d59bb0e1815b00704ca7", + "key": "f71d86b3bebdcec616526566a86c4b40", "notes": [], "params": { "seconds": 0.5 @@ -65908,7 +66268,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0096d6f725029d681ade907ec63e25d", + "key": "4ccf1037ff44f58aeda313ef311c2a4c", "notes": [], "params": { "correctionVolume": -0.75, @@ -65927,7 +66287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78c914e8403063335c6b1194260f5598", + "key": "a064b8c61bac4056397fae5ca4fdc979", "notes": [], "params": { "seconds": 0.2 @@ -65941,7 +66301,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7e18c425557f32c8b69a3c980df2712", + "key": "3c4a8d3b5e992025b31251eb7262610b", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -65970,7 +66330,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe09d3a470d7fa2f9a197ba3d7a929c2", + "key": "fad0fd486b4dd50323aa726b20298fd3", "notes": [], "params": { "homeAfter": false, @@ -65985,7 +66345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a2b505697c1211180b8f7add30121ac", + "key": "7aa076dc6937ec547a3c92e2461f4926", "notes": [], "params": { "liquidClassRecord": { @@ -66356,7 +66716,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2cfeebc49b5fb6034bb20cbf489f19b1", + "key": "9868d33eed94dc10693e6ca116da94e0", "notes": [], "params": { "labwareIds": [ @@ -66378,7 +66738,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a383b2f1a2bf9dae01f87f8d12b3b504", + "key": "516030d88d7bb4b9d1f32c4900ec4bb1", "notes": [], "params": { "labwareId": "UUID", @@ -66411,7 +66771,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a44b7b79c55186d78ffb6a1fd3fc9ddd", + "key": "cb03cb6bc4ff0ee3eda731a8987608e0", "notes": [], "params": { "forceDirect": false, @@ -66443,7 +66803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6bec8893876a0a83c65d7c7ea7dd52bd", + "key": "f104e9baf1aecde91a44099391ee4371", "notes": [], "params": { "pipetteId": "UUID", @@ -66459,7 +66819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe338cca144faadb75417810bdb31871", + "key": "1704edc7710c7679b80b6a797a0647ba", "notes": [], "params": { "pipetteId": "UUID" @@ -66473,7 +66833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "725d247abfa79bf4da72e27dcea4ffa6", + "key": "fa8c4f690c4bcec077c0254393f94e09", "notes": [], "params": { "forceDirect": false, @@ -66505,7 +66865,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4515f255a03618f86ad2df233244a11d", + "key": "5fc2b6945444e53fa3abc20cc2015e93", "notes": [], "params": { "forceDirect": true, @@ -66538,7 +66898,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c595f29c8ae83ed762303d664a2c9c8a", + "key": "369bb167e82037b86aaa62c621875eda", "notes": [], "params": { "correctionVolume": 0.2, @@ -66557,7 +66917,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e4d93dab2260dc1cf2b7aa5ff47b837", + "key": "13c781d74767d196b8dfb20ee1bb50db", "notes": [], "params": { "seconds": 2.0 @@ -66571,7 +66931,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64042594e9baa2396fec636b3e045edb", + "key": "37ee97f26301545af7002ce53efa1a3e", "notes": [], "params": { "forceDirect": true, @@ -66604,7 +66964,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2e86ca635f4197f75510bd9ddeb2491", + "key": "d4da0bb5af17dbe14327c369d93e37f5", "notes": [], "params": { "forceDirect": false, @@ -66636,7 +66996,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a41b36594bd8cc3ceaf2501f406077f", + "key": "85fe7c65cfc013d51675d9e2737bf025", "notes": [], "params": { "forceDirect": true, @@ -66669,7 +67029,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bfdc40aa96ccceac2af98adaebde0ea", + "key": "f45765610bd89aabae4b61fe647f712a", "notes": [], "params": { "correctionVolume": 0.0, @@ -66689,7 +67049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c845e08b494fab4d0e973332e9ae216", + "key": "a9883cd77b876b09f009ec4f0f04f5ec", "notes": [], "params": { "seconds": 1.0 @@ -66703,7 +67063,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d926955eeae089673396e74f68addd4", + "key": "6b8f2453a6c45e2c60434ea00fce38c3", "notes": [], "params": { "forceDirect": true, @@ -66736,7 +67096,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "de791d3e9445fe4a223c857e8b10f95f", + "key": "e0e99b5607b21e027ea5185518ffe55b", "notes": [], "params": { "pipetteId": "UUID" @@ -66750,7 +67110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1733b3e8e0a0e08c9cd8cbd52243c32", + "key": "b19dc148e673c4d90cadde4cf7a27074", "notes": [], "params": { "forceDirect": false, @@ -66782,7 +67142,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae32c246818dd974cc9a74214eed258f", + "key": "ad30dcc14d54fccb007511cb43aa8e98", "notes": [], "params": { "pipetteId": "UUID", @@ -66798,7 +67158,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b12f3e27500d12618d47ea63f582595", + "key": "9fa2dddbef5156a928ed59ff5a7eac5c", "notes": [], "params": { "pipetteId": "UUID" @@ -66812,7 +67172,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3df29b61ded9b9aee1e8881341218664", + "key": "b7e223471f7709d799a26ad9cde3ed97", "notes": [], "params": { "forceDirect": false, @@ -66844,7 +67204,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44f53213ebd37ee9683e775dd9f9d61c", + "key": "e6779f262bf698d2049ea1b41dbc0fc1", "notes": [], "params": { "forceDirect": true, @@ -66877,7 +67237,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37deb31864140a1b736304c2408e7b32", + "key": "7a995014b8ba317e3b7e3eaae2e972e1", "notes": [], "params": { "correctionVolume": 0.2, @@ -66896,7 +67256,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e66a1d8a0ee894f9e0b7c70968f198f", + "key": "17153bc436e0c13a05fc2f6944d8a35a", "notes": [], "params": { "seconds": 2.0 @@ -66910,7 +67270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1d6c5d76c7ebdd632288491ba39c3bc", + "key": "bac86205db23c7378cc97575dd66f0d5", "notes": [], "params": { "forceDirect": true, @@ -66943,7 +67303,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99ea28e402a890aaf203147fcf4f81e9", + "key": "d2402388283b858be4f6bbe6162543cd", "notes": [], "params": { "forceDirect": false, @@ -66975,7 +67335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b90a3eab260f0775960854332f8a27be", + "key": "e740dfb48cabb811a21e04af1e3bd7dd", "notes": [], "params": { "forceDirect": true, @@ -67008,7 +67368,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfa7d096fec892f2e0ac732e89a349c1", + "key": "d41e5b635ee2ddbf8de017d6c0dab370", "notes": [], "params": { "correctionVolume": 0.0, @@ -67028,7 +67388,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59e9d27a343a83f6c1d0cad0d8a8410e", + "key": "b70b962e0c65da59342b0c8a9a87071c", "notes": [], "params": { "seconds": 1.0 @@ -67042,7 +67402,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "165f523b37e84348530664be0bf3f7c7", + "key": "e1d03758c1091111cc98d8740e260714", "notes": [], "params": { "forceDirect": true, @@ -67075,7 +67435,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d9f9994f6955bd11562414dad38d78b2", + "key": "c58c54f2575455c4d1edf4b4ee229454", "notes": [], "params": { "pipetteId": "UUID" @@ -67089,7 +67449,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3d99339b92446c79bc4bd6c909e24c4", + "key": "59f89fb88c87d346f97d1f00ea197b7f", "notes": [], "params": { "forceDirect": false, @@ -67121,7 +67481,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "739598f11ac59157c979cb22feec95b6", + "key": "4770aec4c90cb4cae21d75659360672d", "notes": [], "params": { "pipetteId": "UUID", @@ -67137,7 +67497,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13a187acccbd9554f45e91f2f37de46d", + "key": "a2b8091968147aab8847019cf8ab18c9", "notes": [], "params": { "pipetteId": "UUID" @@ -67151,7 +67511,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5591501d352eddd7e2a03f7fbc5f8989", + "key": "739e08a123fb57015f1f7a172cab9d81", "notes": [], "params": { "forceDirect": false, @@ -67183,7 +67543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58df895185e93113795fdbe4f7ad1d56", + "key": "90cc9c319d055a5d9b027f19b600c9fe", "notes": [], "params": { "forceDirect": true, @@ -67216,7 +67576,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86cc79c9b26b32fbccd26101938973c5", + "key": "c3a336a4d0d830cab3676d34ca955b00", "notes": [], "params": { "correctionVolume": 0.2, @@ -67235,7 +67595,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4eeff2e2d07deaef410a97188534678d", + "key": "44164c1e6a2f98e71473c2a05f582ffc", "notes": [], "params": { "seconds": 2.0 @@ -67249,7 +67609,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d323316e411252ccde7f932ab724f047", + "key": "d4a9295ccbab9546d40e6a3ea930ce4b", "notes": [], "params": { "forceDirect": true, @@ -67282,7 +67642,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df5667df7121f4b181a78eceae4657e9", + "key": "514eeda3e669ae4a54bda694b1ffffad", "notes": [], "params": { "forceDirect": false, @@ -67314,7 +67674,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f74197e5c4b89f9ad2a041e22f38baf9", + "key": "86b0e03dd155dd4ad727c69dbb49e1ae", "notes": [], "params": { "forceDirect": true, @@ -67347,7 +67707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e89b2659ffa4f25903ccb22e366f26d", + "key": "5e0d7b75ff2caa9f00216b5750f36ad4", "notes": [], "params": { "correctionVolume": 0.0, @@ -67367,7 +67727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c35b2220de09ed93eeaa587cd07ecd1f", + "key": "f30ab076b10974e752e2dcbe3ee831e2", "notes": [], "params": { "seconds": 1.0 @@ -67381,7 +67741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d363ecd8c1b0bdaad47f65b5761f4365", + "key": "38b65cfbf7648ad70537604c63a93a7c", "notes": [], "params": { "forceDirect": true, @@ -67414,7 +67774,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cac8412e4dc913d3bdfbc48fa21a7ac4", + "key": "41b692aa084136e8bd20bed6dece927f", "notes": [], "params": { "pipetteId": "UUID" @@ -67428,7 +67788,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f187cbc5246b87580fa5c5bb8dd2724", + "key": "cd9434653eb81ff3df1fcca905879b06", "notes": [], "params": { "forceDirect": false, @@ -67460,7 +67820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "510e6bf391d3152ba31689076bf71d62", + "key": "25dea363a92e9cf3303baaa2344525dd", "notes": [], "params": { "pipetteId": "UUID", @@ -67476,7 +67836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b4315ba1ab184b93b8dd04da5f775df", + "key": "522fba55335bd2d28a947547210b4ae4", "notes": [], "params": { "pipetteId": "UUID" @@ -67490,7 +67850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30a9e9b9ee0b61d803dbdcae491ba4ff", + "key": "7f95c2ec4fcce8fe7a59f42fb02985ff", "notes": [], "params": { "forceDirect": false, @@ -67522,7 +67882,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99a4016f98888e6f3975eef2b9d41680", + "key": "e5da4a70eacedc5020014a41f64d3ce1", "notes": [], "params": { "forceDirect": true, @@ -67555,7 +67915,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e965f3976d774fb68f28655a7132595", + "key": "a6811a05f80f394a64205e17bb5a6d87", "notes": [], "params": { "correctionVolume": 0.2, @@ -67574,7 +67934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31fe47fae32bb3854e425ec04c6594e5", + "key": "3d17521e0c1aedaf91c78781f25e8890", "notes": [], "params": { "seconds": 2.0 @@ -67588,7 +67948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "079133450f892c37c72935ae113e173d", + "key": "a885248cf58fbc1daa332253b951009d", "notes": [], "params": { "forceDirect": true, @@ -67621,7 +67981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31312876e566780d95ff6da35a6a6ce6", + "key": "8a9ff3a1065c6aca7ff0a588ac654ace", "notes": [], "params": { "forceDirect": false, @@ -67653,7 +68013,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f14d37c9488dc564753ad9073ab74377", + "key": "88577bbecc5dcc57a9f72c8d16385035", "notes": [], "params": { "forceDirect": true, @@ -67686,7 +68046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8040df89027b3a0632e3e77f450bd3c3", + "key": "cc27159c1f8f0e8bf380f6331af34a6d", "notes": [], "params": { "correctionVolume": 0.0, @@ -67706,7 +68066,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91b90fe4c173a5d10ea150bcb1717ab9", + "key": "720feb9ad603ed438ddce99ed41325ec", "notes": [], "params": { "seconds": 1.0 @@ -67720,7 +68080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb45a4742285d3c7fd4cc0f5aec74856", + "key": "4c65eb6568b41ddacc0badabda8fb92e", "notes": [], "params": { "forceDirect": true, @@ -67753,7 +68113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e03460f2e9d9cfb42ad399838c67d9a5", + "key": "e2381d5cea0a0071222e93d7f7ac9912", "notes": [], "params": { "pipetteId": "UUID" @@ -67767,7 +68127,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2b281644c78bb9f9aaa42b65fcc65f3", + "key": "3fcfc9dabdc885128baad4818e17c7f8", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -67796,7 +68156,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "daa6f6f7dbaa7bb75a28c24212bb0ea8", + "key": "4dbda55ece666c8efac022fd77d80f45", "notes": [], "params": { "homeAfter": false, @@ -67811,7 +68171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb04baaed492cb867d5513bfe9f24eaf", + "key": "db3c62f46e0408b3372cc29db6e99926", "notes": [], "params": { "liquidClassRecord": { @@ -68146,7 +68506,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a89d01021a430726c4d8981b683fb8e9", + "key": "9c9d7554bd2f6477717974e3fcf923e0", "notes": [], "params": { "labwareIds": [ @@ -68168,7 +68528,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "567c7627b223ed5970d3c77e22558a30", + "key": "9b12fa3a755338e5b8700052cfa2ee9a", "notes": [], "params": { "labwareId": "UUID", @@ -68201,7 +68561,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5939f97154d149d81a640b9f073f1e4b", + "key": "f209c107bbd0302876e85319a263ad0c", "notes": [], "params": { "forceDirect": false, @@ -68233,7 +68593,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4b114fb327a8a3c281acfa9f0b0ea34", + "key": "e31d058a5afafd03a67ffc8f91ac7083", "notes": [], "params": { "pipetteId": "UUID", @@ -68249,7 +68609,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bafc1b44f57a81dccbb15bdce19c820d", + "key": "eafd1e078c0ea0972c3c4318f267545c", "notes": [], "params": { "pipetteId": "UUID" @@ -68263,7 +68623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54066f9fb09d7263f378f0623ee67bdc", + "key": "e906d21558d2d15fed3445b99e406e62", "notes": [], "params": { "forceDirect": false, @@ -68295,7 +68655,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f047ba967eaacdff8ebfda6f729237b", + "key": "9df78ab3ac1d20d95e208ed9f0744a4c", "notes": [], "params": { "forceDirect": true, @@ -68328,7 +68688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e1ed9799d1287e4c7bcdc0403374339", + "key": "e39e05bb0f9bf19842f234616873909a", "notes": [], "params": { "correctionVolume": 0.0, @@ -68347,7 +68707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d23d8d10ca054e59ff2a7764a1b27c6", + "key": "3cf002fe90616fef453f7f8f49d29f4d", "notes": [], "params": { "seconds": 0.5 @@ -68361,7 +68721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa50f20c7dc46a08ab99b8e52bf162ca", + "key": "5fce38e0e25f65ba105be6fa7c1e0141", "notes": [], "params": { "forceDirect": true, @@ -68394,7 +68754,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "727bf34de069ea62db0250a5686b4ec5", + "key": "58bcd8c043e10daae84f32e131910c70", "notes": [], "params": { "correctionVolume": 0.0, @@ -68413,7 +68773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eaa6b131d684af572c2f262aad73a188", + "key": "03b63f87db525b8a939fb61b7edc520d", "notes": [], "params": { "seconds": 0.5 @@ -68427,7 +68787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "766c84a52ff8d233ed9f0d22c23fd711", + "key": "c621fbef7f04418a30c199587ae1e4de", "notes": [], "params": { "forceDirect": false, @@ -68459,7 +68819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9e0da0ab1abb292bc4189b7080dd5aa", + "key": "0c6ac2527925a89bd9e658870b7f29d9", "notes": [], "params": { "correctionVolume": 0.0, @@ -68479,7 +68839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6954a79e501dfbc3692c2ab4686996ac", + "key": "32baa026c5dad9ba449a93d4b84a8b62", "notes": [], "params": { "forceDirect": true, @@ -68512,7 +68872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1779dac4977a35cfbc3783440d9c1dc4", + "key": "eca7993ccf45907daba229405da5d440", "notes": [], "params": { "correctionVolume": 0.0, @@ -68532,7 +68892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df699a5c72e019aecd415278772a44fc", + "key": "abfc39acc3f5e92376f2e28e8891b064", "notes": [], "params": { "forceDirect": true, @@ -68565,7 +68925,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4fe7d96e2ffbb29cbedde30699756aa", + "key": "f0bcfe539df0c161bcfe5e68eb5dd82b", "notes": [], "params": { "pipetteId": "UUID" @@ -68579,7 +68939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af9f7d21e194233a30470cdf9ab42a97", + "key": "c5e881787fc764053931666c2eb0e954", "notes": [], "params": { "correctionVolume": 0.0, @@ -68598,7 +68958,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "033f4cb34e6ad71d80529164c404eea2", + "key": "a5912e103fcdf90129638daff810ba87", "notes": [], "params": { "seconds": 0.5 @@ -68612,7 +68972,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ff246a4f3beaf6977d8e6258d4be2d2", + "key": "99d255f977f938284b2b393ad92b931d", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -68641,7 +69001,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4cac47c71b9ae954e7d09bfad7b03332", + "key": "07021cc79c306f5097faed574259ba79", "notes": [], "params": { "homeAfter": false, @@ -68656,7 +69016,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ad8f136abdabe067a96a1394c7cfd64", + "key": "66b7f433032013d4b6153c6634f403f0", "notes": [], "params": { "liquidClassRecord": { @@ -69051,7 +69411,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c559901d2e758bd9fff4e0087e2825d", + "key": "64f8e13f1f77127e7d0c5fbdd9c56a84", "notes": [], "params": { "labwareIds": [ @@ -69073,7 +69433,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c52574e754710be77b7f096ad5823d10", + "key": "daf18cd49bca82cca784c1b7e7b17f6f", "notes": [], "params": { "labwareId": "UUID", @@ -69106,7 +69466,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c3e6ab48ace8d49741920de70f4c76fd", + "key": "b9b265c556332012f090c64773ea5013", "notes": [], "params": { "forceDirect": false, @@ -69138,7 +69498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0918e6e4b5bab5aaff947821db084d4", + "key": "a8ca7398b4dc8b258d2420b73f069008", "notes": [], "params": { "pipetteId": "UUID", @@ -69154,7 +69514,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9c9a57c34c277afd5d049e1b6090144", + "key": "cf2c654f8ab9856c1795a17c95c8312a", "notes": [], "params": { "pipetteId": "UUID" @@ -69168,7 +69528,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cba74933e6a40af1ffdb19e0eaf9a289", + "key": "03cf17ec663f298944bdceb2754b7655", "notes": [], "params": { "forceDirect": false, @@ -69200,7 +69560,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e055c01901235ac5bbb6ed6cbadba065", + "key": "ae792ab9e85b3dd8608e5715a33e4e5d", "notes": [], "params": { "forceDirect": true, @@ -69233,7 +69593,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd9805b9232d53c321b050c536590e67", + "key": "9e2b5c564cb73eb7707bce107325d99e", "notes": [], "params": { "correctionVolume": -28.911111111111115, @@ -69252,7 +69612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24f61fdae4721e6d16006079838d1627", + "key": "ddfb5f09c24123cd2a368346196c25b9", "notes": [], "params": { "seconds": 0.2 @@ -69266,7 +69626,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a2ac8cf1b73ed138ccebef0f6be285b", + "key": "1afc7d208dbc3fa070319a68b238a0e7", "notes": [], "params": { "forceDirect": true, @@ -69299,7 +69659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a1adb528f55d457ed0c452a66e93d13", + "key": "a631070a8bfec86802909640a8ca5f60", "notes": [], "params": { "seconds": 0.5 @@ -69313,7 +69673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b6a68b36d29ed48d81ee79fca8189fa", + "key": "bb197d922df79e26a25efde366db85a4", "notes": [], "params": { "correctionVolume": -28.959715380405036, @@ -69332,7 +69692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "488d68e6ed286bcb94fe56641075e365", + "key": "303bde015fb04ce88223c4d86af10455", "notes": [], "params": { "seconds": 0.2 @@ -69346,7 +69706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89bac809d7b26022584654a85a8e94a6", + "key": "1fbbb7d61ccfa71a82275040a4520fdb", "notes": [], "params": { "forceDirect": false, @@ -69378,7 +69738,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "803dec4e73c1ccd9d25dcd32c647f747", + "key": "9f8cdb0343b26437ba3b4eb771aff58f", "notes": [], "params": { "correctionVolume": -28.911111111111115, @@ -69398,7 +69758,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be635235064688e4fb30834e19a56bb7", + "key": "a8621b5d65c82b58c97a474bb9e27942", "notes": [], "params": { "seconds": 1.0 @@ -69412,7 +69772,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b501a6b1e5e3cf00de27a336809fa182", + "key": "34ac05d82535e97ec1ae622f95044226", "notes": [], "params": { "forceDirect": true, @@ -69445,7 +69805,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0dbdcdabe6ec13493a045f3091d05b9", + "key": "13329fcf1cc6a53b7ec42431905ec6b5", "notes": [], "params": { "correctionVolume": 0.0, @@ -69465,7 +69825,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a56fe2fd0e522132e35455ebe897dd78", + "key": "fa8bf006b2cd43a3f8844424146ee3d7", "notes": [], "params": { "seconds": 1.0 @@ -69479,7 +69839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75f6f632f2a491aa1b1219bfc2f1fd69", + "key": "1579ec323fc895e07fba260fd6078b1e", "notes": [], "params": { "forceDirect": true, @@ -69512,7 +69872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce50a062aad05f7fea138df90c90b079", + "key": "d93fd86856562a6b304a3dbbc4ca77be", "notes": [], "params": { "seconds": 0.5 @@ -69526,7 +69886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ec237361ca8ccf55ce2484bc2c38706", + "key": "14cd2d9b395f1676446ccff232cdbb99", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -69545,7 +69905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5990e6493036f2cb44c399997191090", + "key": "e0321a9239c009d5b689a0514b48d09e", "notes": [], "params": { "seconds": 0.2 @@ -69559,7 +69919,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9932a242c442722130ec736e86086a9a", + "key": "78e583a86b2b6c9f890543b04e33c6dd", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -69588,7 +69948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f72d0915c7fb74e4bc61dc2f341aba81", + "key": "79c6664aa175709476e350a03f83d237", "notes": [], "params": { "homeAfter": false, @@ -69603,7 +69963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28ffe4c61cb83a8dfd0f2bf2cf2a565a", + "key": "8749c19fee59c5e8df902c66ce97df9c", "notes": [], "params": { "liquidClassRecord": { @@ -69966,7 +70326,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6896d404cc2e9923b8b588f003486916", + "key": "20df7182db9afdceeff0892185878780", "notes": [], "params": { "labwareIds": [ @@ -69988,7 +70348,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da80151a4930c4fce121b270350b0641", + "key": "af367ca90cb0736a86481746cd680c88", "notes": [], "params": { "labwareId": "UUID", @@ -70021,7 +70381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c75083e82e5cc470ff70c0b4425884ac", + "key": "a0ff2dc074b66a00008aec8b3fa55feb", "notes": [], "params": { "forceDirect": false, @@ -70053,7 +70413,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7871c7036ad6c978578d098037cd73b4", + "key": "e007aca4566a7f95efefdd0d67e8beda", "notes": [], "params": { "pipetteId": "UUID", @@ -70069,7 +70429,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df45cd22bd7cff2f1ad6a35de09aacfb", + "key": "e0b3b112d96330c02cbf92234e89cdfd", "notes": [], "params": { "pipetteId": "UUID" @@ -70083,7 +70443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45f0cbcdf3dacdb79e8f5be01fb91757", + "key": "5dfb3425b7a5ec978fb759e6b5b5dbc4", "notes": [], "params": { "forceDirect": false, @@ -70115,7 +70475,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3cbd8c34c3612290aaa977791745f84b", + "key": "f46c65acff5a8edfaf1ad81531e34ce6", "notes": [], "params": { "forceDirect": true, @@ -70148,7 +70508,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "478216f4360f6f0e8e57cbc2b7140c25", + "key": "7c2163e0ec1cfd93e320ad53a146cd26", "notes": [], "params": { "correctionVolume": 10.655555555555557, @@ -70167,7 +70527,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "655b65b5d081db35c1c4b64427e0eb56", + "key": "30518967c7a4abfec74b8dc62b2afe24", "notes": [], "params": { "seconds": 0.7 @@ -70181,7 +70541,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ebd1afb69cec832bb64ac23186439991", + "key": "2382c45cf51c734b3ac4f3bd28ff5fb5", "notes": [], "params": { "forceDirect": true, @@ -70214,7 +70574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "055f84a83a292ebb94cb6a785844132f", + "key": "3f96dcd16d87929ee2a4e920aa916c88", "notes": [], "params": { "forceDirect": false, @@ -70246,7 +70606,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f39063a94a32ac5e82bd391053ac641", + "key": "0e97372e64bc3a8e7179f960aa4d4b1d", "notes": [], "params": { "forceDirect": true, @@ -70279,7 +70639,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c9934e6eff9de3be985820d95ba931d", + "key": "bffa6938c06b7b9c81a64b5f588dec48", "notes": [], "params": { "correctionVolume": 0.0, @@ -70299,7 +70659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24c1a14469971d1696f2f66eefb2e9fb", + "key": "5070824906df7883501ee7b2c6e37aa9", "notes": [], "params": { "seconds": 0.5 @@ -70313,7 +70673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "464536683c7ec5b26c9c28b7825dd39b", + "key": "7a22732b9f8f5115e7efa79de7b03f07", "notes": [], "params": { "forceDirect": true, @@ -70346,7 +70706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e035f176af9dff5d77dfa7a6b86b1c2", + "key": "a36924cbcab4841a6af5fba39f894e2f", "notes": [], "params": { "pipetteId": "UUID" @@ -70360,7 +70720,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "002e32cc8c3f0127c38936dc287a6b6f", + "key": "64bbd041ed96a3c08097d1cee7e94fe1", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -70389,7 +70749,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91b6dda98c511949f8e66d7ccab2eff6", + "key": "96c290c17fd9feb47af4c94aa6818b66", "notes": [], "params": { "homeAfter": false, @@ -70404,7 +70764,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ab5bf7cc0faff10ba10b1bafc036c31", + "key": "1eecbc3ab8175f80deabb22ad5eab4c5", "notes": [], "params": { "liquidClassRecord": { @@ -70739,7 +71099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a18e4f8927cec3515a27f801b755e09", + "key": "3631ce90043438ac9dff2e80b663960a", "notes": [], "params": { "labwareIds": [ @@ -70761,7 +71121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86853b2a8ad5641e589ebc8c796e1358", + "key": "469470f31cd5bdef76443e43b06be7d5", "notes": [], "params": { "labwareId": "UUID", @@ -70794,7 +71154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff033101a5dee46ffa3557b85cf7de75", + "key": "202722b0453387e86028db1b8b06df98", "notes": [], "params": { "forceDirect": false, @@ -70826,7 +71186,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d040ff3bbf81cc7d24a04744dc7ccad0", + "key": "1fde26f0e2b3a0a0dfcb441f23a7479a", "notes": [], "params": { "pipetteId": "UUID", @@ -70842,7 +71202,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4304b5831073d8ad10902baffbac088f", + "key": "7c1e6c7896d9394253e97e0be00cc3cd", "notes": [], "params": { "pipetteId": "UUID" @@ -70856,7 +71216,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f5b60306445b038695427ccdd1a5835", + "key": "93863f997fcdc73fd8debbaf425006c6", "notes": [], "params": { "forceDirect": false, @@ -70888,7 +71248,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6e27c720c9e1df07dc49f68dd4a2c73", + "key": "25afc784b792a5949cc64ad550d82368", "notes": [], "params": { "forceDirect": true, @@ -70921,7 +71281,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16689e085e1d1d97ec7e89c55b147382", + "key": "b736db0c4af7009599b845fa6a1eb367", "notes": [], "params": { "correctionVolume": 0.0, @@ -70940,7 +71300,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e87ba718b71c1b226cff623a2bb8ff28", + "key": "799e6e4c2c2ed759504ebba0dd2ed95f", "notes": [], "params": { "seconds": 0.5 @@ -70954,7 +71314,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe4ef8122c1051e23303759d4fab0547", + "key": "8a4863e1e2d25a7e2907bbc8e2400b9d", "notes": [], "params": { "forceDirect": true, @@ -70987,7 +71347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "395699d801e6960fab251465d24b629c", + "key": "9df24fe8afb3eaac1756b3335925a608", "notes": [], "params": { "correctionVolume": 0.0, @@ -71006,7 +71366,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2cb890e828b83b1176adc4c9cba33e2f", + "key": "4bb258bd80c4258e057d06a91132ab69", "notes": [], "params": { "seconds": 0.5 @@ -71020,7 +71380,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "186a09cdc72822f0673f27072ecb3ca1", + "key": "67bec0a98918720df24110b3bebb0e57", "notes": [], "params": { "forceDirect": false, @@ -71052,7 +71412,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5949e711abd5e65ce260bc8af0b835e8", + "key": "ed2a860ccdef59677872cce0ca15043b", "notes": [], "params": { "correctionVolume": 0.0, @@ -71072,7 +71432,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "150fc9f61ccc4c13d6cac5a16500853c", + "key": "a61716309cacf65538275dc87bedf49b", "notes": [], "params": { "forceDirect": true, @@ -71105,7 +71465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f75946e0d51049dd80d679a75a14d60f", + "key": "696d5a10634ef1d2b5f343a8f236ce11", "notes": [], "params": { "correctionVolume": 0.0, @@ -71125,7 +71485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90fb3223043341e89e534e5a8ed1f242", + "key": "e98466ac171e8fa6bc29f8fa9ebac82e", "notes": [], "params": { "forceDirect": true, @@ -71158,7 +71518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d4a18023e1618dc11665704eab8d57a", + "key": "1b57e8c6a41ed64eb4655be2e21cfd96", "notes": [], "params": { "pipetteId": "UUID" @@ -71172,7 +71532,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fecdbb0d8beb048ccbe197f45d0400e2", + "key": "7a538473e0eb931732455db1a48e2717", "notes": [], "params": { "correctionVolume": 0.0, @@ -71191,7 +71551,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c342a842621b9447393c1ffbf56ce894", + "key": "7e7c614010d680ee26b693737fb4e093", "notes": [], "params": { "seconds": 0.5 @@ -71205,7 +71565,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bad60750bb0896813dc9ddfeea6f692f", + "key": "8c8db39a058c04186f5f53abd2ea9cd8", "notes": [], "params": { "forceDirect": false, @@ -71237,7 +71597,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "463368324af90e5249c95e592f3b7db0", + "key": "5ed5b07c191aee15f6036214c443223c", "notes": [], "params": { "correctionVolume": 0.0, @@ -71257,7 +71617,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ec9b9f0f896d95b7021e7725aef2ce1", + "key": "cb5d869d759a6a49ec030dff6043ae07", "notes": [], "params": { "pipetteId": "UUID", @@ -71273,7 +71633,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0c7308be9fa6ef85e54ff92d3bb63ab", + "key": "0fb75d417875a9db4e259b3327f98d2e", "notes": [], "params": { "pipetteId": "UUID" @@ -71287,7 +71647,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66a2f5529e80d3cefe8292dd44d2b35f", + "key": "941582904c35a538e50bd4269c9f94fa", "notes": [], "params": { "forceDirect": false, @@ -71319,7 +71679,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3dc95d2bb799dfea6b259fbaf722ddc2", + "key": "8126fb16823e41d774727dcb71b01dc6", "notes": [], "params": { "forceDirect": true, @@ -71352,7 +71712,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81d50f383d3e761e089715109a71e980", + "key": "a83f7404ecdd526b078a1a43029392d5", "notes": [], "params": { "correctionVolume": 0.0, @@ -71371,7 +71731,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f96ec21b15dc23eb2dbd6e8e43e13809", + "key": "3a1954a4a9d301c757dfe75ecc4d5bb3", "notes": [], "params": { "seconds": 0.5 @@ -71385,7 +71745,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1abbeb3c3d01f72faf69981550dd172", + "key": "a443f33d867667f9b30d162e3fe4edd4", "notes": [], "params": { "forceDirect": true, @@ -71418,7 +71778,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b11a54639cc593ae7342ee13a4c43ad0", + "key": "28d11f8930c061b313e039bbfbf7bd4c", "notes": [], "params": { "correctionVolume": 0.0, @@ -71437,7 +71797,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f58f789dbb2e65cea2de395f79c425e2", + "key": "a5388135287ea15203dddbb177a87a86", "notes": [], "params": { "seconds": 0.5 @@ -71451,7 +71811,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95ba0c56f0db0ca738533fe91b3c4b66", + "key": "b6fdd33fcac5c4f85fe26a34488b78fe", "notes": [], "params": { "forceDirect": false, @@ -71483,7 +71843,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84eb5bec753918f009cc9fc0f9ce0560", + "key": "ae20606f50ace8daafdafb66eabfd65c", "notes": [], "params": { "correctionVolume": 0.0, @@ -71503,7 +71863,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f01e7d1fbe582ffe5022f8041a0920b4", + "key": "45b0ff6c79ce590f3e2e0a565b00dea8", "notes": [], "params": { "forceDirect": true, @@ -71536,7 +71896,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ace3018fadb7cdafa2a2f778f84fbad", + "key": "9fbc027787d5d06cf674aea3f49b8ae7", "notes": [], "params": { "correctionVolume": 0.0, @@ -71556,7 +71916,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52c733093fb80d21bbc6626be65d1cde", + "key": "570cd54bb16f0d1161f06084a932ee29", "notes": [], "params": { "forceDirect": true, @@ -71589,7 +71949,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34445a63a9759b3a3efd94275715fb09", + "key": "c3f73ce6f15aed71b72e74d0489f0f3b", "notes": [], "params": { "pipetteId": "UUID" @@ -71603,7 +71963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05cd05fb3e9d3319c7620f9ccb572d54", + "key": "62a40e8e6e1643442831828f334ff2f6", "notes": [], "params": { "correctionVolume": 0.0, @@ -71622,7 +71982,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48a0949318bb90890817347edf7ed111", + "key": "a6365183797f4fc9387855e9941552a4", "notes": [], "params": { "seconds": 0.5 @@ -71636,7 +71996,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "862c8c97f64dc96ece62e83b68734ea8", + "key": "464ddb3ee5bed89890046a82afb3355e", "notes": [], "params": { "forceDirect": false, @@ -71668,7 +72028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "887cc6a316dc3c7b7366502e6e7d020e", + "key": "09386a0e24dacb149bf8579c71639e1d", "notes": [], "params": { "correctionVolume": 0.0, @@ -71688,7 +72048,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6847b7133f3bfa49b78e7f4b897be597", + "key": "55e6d343130a2c6e492df91abfed1dfd", "notes": [], "params": { "pipetteId": "UUID", @@ -71704,7 +72064,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a3991b5b9df0a3e6a850227be848dd8", + "key": "7b0e32131fe657c909d47029342701d7", "notes": [], "params": { "pipetteId": "UUID" @@ -71718,7 +72078,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "309e56ebcfc94971561366cb746ca3c2", + "key": "b6dc402a82c19d87da1a505c7173a7b5", "notes": [], "params": { "forceDirect": false, @@ -71750,7 +72110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "114cdf24e63e9945905ecd8e5bbd592a", + "key": "aab404c7659fb2be58bbf14e35b2911b", "notes": [], "params": { "forceDirect": true, @@ -71783,7 +72143,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "171f2878d393d52055ea225bc3656ef3", + "key": "3bd4b1af03ef32256edbfe65ab414afc", "notes": [], "params": { "correctionVolume": 0.0, @@ -71802,7 +72162,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f2ece0c7b00a2291c3b435836baec78", + "key": "b5dc57d2614d251f3d67748bea4a9989", "notes": [], "params": { "seconds": 0.5 @@ -71816,7 +72176,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77dc8ff11cdace3f68c6461fe1378b70", + "key": "ce1c4a2b38723b42958f026afc139250", "notes": [], "params": { "forceDirect": true, @@ -71849,7 +72209,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62ff7675118b121a5ca008e0df4f89cd", + "key": "3d3eeb660547fd78627ff6885a7722cf", "notes": [], "params": { "correctionVolume": 0.0, @@ -71868,7 +72228,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "395265c586612fec1caa632decb74c41", + "key": "aa2409f8ae3d279e6b61bcea6a601117", "notes": [], "params": { "seconds": 0.5 @@ -71882,7 +72242,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0069b012f44dc67ff1959dc66b430199", + "key": "19f02c452bde4131b93caf636866b5c3", "notes": [], "params": { "forceDirect": false, @@ -71914,7 +72274,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9265d180cd7566eeb7d7d256025b7924", + "key": "64d47fe7f7aacaac230c8c254ddbbc2d", "notes": [], "params": { "correctionVolume": 0.0, @@ -71934,7 +72294,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9a18e5ce7b3ff7459bfc056da5adea7", + "key": "f42233a1538977ba6c43b14d74416328", "notes": [], "params": { "forceDirect": true, @@ -71967,7 +72327,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aacb8da95fd4a3b9ee873ec6a481f515", + "key": "5f22e4774aa83098f3103badc03d3da5", "notes": [], "params": { "correctionVolume": 0.0, @@ -71987,7 +72347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "658460410c03ecd5aad0b5604536d5f4", + "key": "243ce1157613fdcf2932e221fc4d70c7", "notes": [], "params": { "forceDirect": true, @@ -72020,7 +72380,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fbda33c9e4b00f49bfc607394099cdea", + "key": "0e441eb798792a15586cb57b4b47a77f", "notes": [], "params": { "pipetteId": "UUID" @@ -72034,7 +72394,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "010870c797e22f01f59610297877b4c1", + "key": "c60c13070c05ab29f809782295d8f048", "notes": [], "params": { "correctionVolume": 0.0, @@ -72053,7 +72413,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d284c5151a19236dc5e7efa26e8c59c0", + "key": "618150c930ffbcfe8cbcf466cd2de839", "notes": [], "params": { "seconds": 0.5 @@ -72067,7 +72427,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "88027e1b854c26ce6dcd5325e1317c92", + "key": "0fdb7167079e23a9cc4b239502a81ff8", "notes": [], "params": { "forceDirect": false, @@ -72099,7 +72459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4195971a936d38a999641ed87de9bbd0", + "key": "bd2c044c9a311ba58e13806a887c6b6e", "notes": [], "params": { "correctionVolume": 0.0, @@ -72119,7 +72479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6602bc599fbbe4c991b8865dd17bbdfe", + "key": "9affebfe98c3c659c2e28e8dbe040c76", "notes": [], "params": { "pipetteId": "UUID", @@ -72135,7 +72495,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11f0e8d38d8ee986759586218f3bdbf4", + "key": "658c3d8480bcce3e4cce5a33665feaa0", "notes": [], "params": { "pipetteId": "UUID" @@ -72149,7 +72509,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33c6bfeecf83559a1d27c90899481e8a", + "key": "3f69b83d6d073af531fad59a51e96405", "notes": [], "params": { "forceDirect": false, @@ -72181,7 +72541,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc609d83f2da5c4f52eb596144d6523b", + "key": "f51dbd0838cb3d887accba2b5446ccef", "notes": [], "params": { "forceDirect": true, @@ -72214,7 +72574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7cd71d8463d87484c7a8043ad4c31eac", + "key": "b1bf3c4c83ee5b34f495f0e0cd3767a9", "notes": [], "params": { "correctionVolume": 0.0, @@ -72233,7 +72593,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a63e4f47593e06d9fd9067e8efdc92e", + "key": "508f4092f61fcfc1417c7f63916de93d", "notes": [], "params": { "seconds": 0.5 @@ -72247,7 +72607,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b706931ec5dd754ab997582e2acab9ac", + "key": "4087dc8dde37b2f8a0d6a2c843d36ab4", "notes": [], "params": { "forceDirect": true, @@ -72280,7 +72640,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c376080e76255cd8ccc29efbf71c18a7", + "key": "f503af738d9743feeb9a468baefa8d15", "notes": [], "params": { "correctionVolume": 0.0, @@ -72299,7 +72659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d84569e105a7dbb251c03d51875a4f2", + "key": "c26d1bbbbbdedbad12404df3f49d3df9", "notes": [], "params": { "seconds": 0.5 @@ -72313,7 +72673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9acf1716e2d3c2d4877fa08406c73fac", + "key": "8d21891234cac6a161bf260b21891ee4", "notes": [], "params": { "forceDirect": false, @@ -72345,7 +72705,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef22fbae94632b4a5bc4209f046304c7", + "key": "a44fe8f5bdd27cb35c14218cbf722414", "notes": [], "params": { "correctionVolume": 0.0, @@ -72365,7 +72725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45eb452bdb6dd0656b093621c6342f46", + "key": "a2f2c003176e0950b71cf6acca92711a", "notes": [], "params": { "forceDirect": true, @@ -72398,7 +72758,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ff0e0f325d7d957bb106a69fb2f1011", + "key": "770cf1c89089f3936df0bbc06f65979f", "notes": [], "params": { "correctionVolume": 0.0, @@ -72418,7 +72778,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e83fa887aa534f0e49c363986116a727", + "key": "5b18be7c7361aaa5c53494eb6c3e58b9", "notes": [], "params": { "forceDirect": true, @@ -72451,7 +72811,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "691c6069648099b1c312da80c5f31527", + "key": "4522679e1aa39a2c9053bb66287282c8", "notes": [], "params": { "pipetteId": "UUID" @@ -72465,7 +72825,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d7c7251021cb69aa14b9290efad6fff", + "key": "afad951c3f79bc115db1e577cea0feb8", "notes": [], "params": { "correctionVolume": 0.0, @@ -72484,7 +72844,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71359e1eba16957e7a19768164ec9b53", + "key": "cfac80a5fc299a676a417c884633c304", "notes": [], "params": { "seconds": 0.5 @@ -72498,7 +72858,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a066c365e8b7dafe07316256cc51f019", + "key": "341e012f41ad75fb30bff0bc7b69b260", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -72527,7 +72887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae71f60b4c1a3a14624dce5a9a62d43e", + "key": "2687d6325a2e7e2fd8a99fa3c7fb5162", "notes": [], "params": { "homeAfter": false, @@ -72542,7 +72902,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7690703f9146d00c6c83d5961c9ed83f", + "key": "690cbfee432634df4bb8e0cc0f731908", "notes": [], "params": { "liquidClassRecord": { @@ -72937,7 +73297,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "447ee45ef2bd119c359dd3f49b071b51", + "key": "8e9d9948a0b57c847c29d2fc00b32e92", "notes": [], "params": { "labwareIds": [ @@ -72959,7 +73319,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58c09fe8badd18230b912f502a99d07c", + "key": "9614601810c72c9849547a257ffa1510", "notes": [], "params": { "labwareId": "UUID", @@ -72992,7 +73352,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa1240f154b10db4ac9568d6b669a136", + "key": "3cda0271b140416d7591d5db3708f2dd", "notes": [], "params": { "forceDirect": false, @@ -73024,7 +73384,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0cde43f7aa13532dbb560839553260e", + "key": "9b138346de0399aded64b449a07cba2a", "notes": [], "params": { "pipetteId": "UUID", @@ -73040,7 +73400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6dd04094bed415564cb815a6e21d4d8d", + "key": "6f358f9c1011be30039f2799a24bb067", "notes": [], "params": { "pipetteId": "UUID" @@ -73054,7 +73414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d121909008dd715eec7385c96fb4121c", + "key": "fe185de4a77d7180d345f235e36214cd", "notes": [], "params": { "forceDirect": false, @@ -73086,7 +73446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "769c7438b92a6b41ab7e505f55386051", + "key": "5864705fd8ab40582b55b80afa9a3f8d", "notes": [], "params": { "forceDirect": true, @@ -73119,7 +73479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d913fc16f9f3f12dd0486f34983ef174", + "key": "196dcc3f441e88ca184c01e7dc9e750e", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -73138,7 +73498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e323fd3a66c0248bb191b273e693b8f5", + "key": "0c6f9f66c5081a8bc7078895d573dea6", "notes": [], "params": { "seconds": 0.2 @@ -73152,7 +73512,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e57d24ca88459b19736f2fb6b911746d", + "key": "a8826a7d3a2d780f70407da50e83ce65", "notes": [], "params": { "forceDirect": true, @@ -73185,7 +73545,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bcbb50d5e48cbcc236351a85d75a7f32", + "key": "0976bc66c081a2c7d9c2b064231304e8", "notes": [], "params": { "seconds": 0.5 @@ -73199,7 +73559,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75cb3d25c0ed5b7d7d221e2a849d69fd", + "key": "938e555d5194907913d02659839c4ebd", "notes": [], "params": { "correctionVolume": -19.238861521620144, @@ -73218,7 +73578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab94a3e4f3e2f1a24520cdb0b4d03205", + "key": "adda3f0e57d6597f6f79d2ac23aa4290", "notes": [], "params": { "seconds": 0.2 @@ -73232,7 +73592,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0461ed99115e9f794278c1094e937a74", + "key": "572b8ae3bf69ee7f9f5ba0ac615cded9", "notes": [], "params": { "forceDirect": false, @@ -73264,7 +73624,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbc2d2c0ba152604f3607194e6b919a4", + "key": "66b8cea485821ee7a6c4427dc5dfb473", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -73284,7 +73644,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eda4263a7118ad78b57daddc64aa9549", + "key": "2d0e80cc3312be2ca1f997a212f019c2", "notes": [], "params": { "seconds": 1.0 @@ -73298,7 +73658,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f868bc21fcd032040438b8bd569b790f", + "key": "83b5cdb6826cda1591f2f66a37170759", "notes": [], "params": { "forceDirect": true, @@ -73331,7 +73691,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ca2616f09771936407040b48aabf3dc", + "key": "9566d0733ea97aa87b428f1f6513ce98", "notes": [], "params": { "correctionVolume": 0.0, @@ -73351,7 +73711,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ced8990d0d7f97f8ecea217bcc05d292", + "key": "2515d34dfcf2993e5f11f2139918cc92", "notes": [], "params": { "seconds": 1.0 @@ -73365,7 +73725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b032ed107457195aea50a27d01e763f6", + "key": "268d8f0ecbaf5db1edc23e7062d5523e", "notes": [], "params": { "forceDirect": true, @@ -73398,7 +73758,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d6445c69dceba6ba56a1a75545d482c", + "key": "88a95464888f66af95757d26f5524913", "notes": [], "params": { "seconds": 0.5 @@ -73412,7 +73772,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e5a2373b99ad291bfe3de0e0f026d57", + "key": "e95f3633d0124c501deed5c088b32966", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -73431,7 +73791,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "957204e7cc09771eea7cbf3e7355c5bb", + "key": "2f5cdf23605948f34781cad89c5eb23a", "notes": [], "params": { "seconds": 0.2 @@ -73445,7 +73805,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ad5e0251b878a8b58f00a6430105bbd", + "key": "851a03c4a508c991bcbc7b7f06bad9d7", "notes": [], "params": { "forceDirect": false, @@ -73477,7 +73837,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80de9d84ba09ae37e19089bc56afc663", + "key": "48c14d41134a6ee78475c315481f5b3f", "notes": [], "params": { "correctionVolume": 0.0, @@ -73497,7 +73857,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44eb3694417f664ad30f867261680bc2", + "key": "0d63fceae743308ab180b134345eaa76", "notes": [], "params": { "seconds": 1.0 @@ -73511,7 +73871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7a692eff5ab2ec11849e6b090d97bbc", + "key": "e64c4139d5251f6f4d680996f1074443", "notes": [], "params": { "pipetteId": "UUID", @@ -73527,7 +73887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "689354906948e5b49ac4d159068c7589", + "key": "068d8c2de39ae5beacdbf8c2bc3e963d", "notes": [], "params": { "pipetteId": "UUID" @@ -73541,7 +73901,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "51266eb6a350cd90ee3850f3f1da2f10", + "key": "715a1cf8dd8f8c6446ead425f950c6a4", "notes": [], "params": { "forceDirect": false, @@ -73573,7 +73933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3bf0ca35f1919fc187dee2f8e3fd623b", + "key": "924d6213b760c5d3e2a5fc7c9f679e96", "notes": [], "params": { "forceDirect": true, @@ -73606,7 +73966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95a548ae44d06389718cd0cd9aa45aa8", + "key": "4e59a71cb00dc851ad57bce55911dab7", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -73625,7 +73985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10281d654eabb0b706b20ea342ce9098", + "key": "181cafde031fac7b55398f2d0d45b40f", "notes": [], "params": { "seconds": 0.2 @@ -73639,7 +73999,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8c292025a7d052013f9c90b661f39ca", + "key": "96f31218941b1bbbdf8f24146c45870c", "notes": [], "params": { "forceDirect": true, @@ -73672,7 +74032,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "465c41c5a2d3c46f814938510328687a", + "key": "93c547c7df59e5e8eb588175d18d6804", "notes": [], "params": { "seconds": 0.5 @@ -73686,7 +74046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4cb2c8fe3875f6a5ab7afdd795cff0d", + "key": "2f3ced99c1dd77c9eac61782da78b9e8", "notes": [], "params": { "correctionVolume": -19.238861521620144, @@ -73705,7 +74065,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18f627beae53dac68ae0e3227d76781c", + "key": "217e19954cb7374dc50f543a98a42e4f", "notes": [], "params": { "seconds": 0.2 @@ -73719,7 +74079,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d80541c842d28a7cb22d865bd1e89f5", + "key": "44cc84d387e302a102dcaa3c0eca0205", "notes": [], "params": { "forceDirect": false, @@ -73751,7 +74111,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd29098db93636485370737cbd155927", + "key": "622b278fb4dd933d750a250c7d78ec6f", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -73771,7 +74131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5acb66e94e5bb46b1e8b61239a8ff143", + "key": "9529c95786efd24f62f4fbf3949faaaf", "notes": [], "params": { "seconds": 1.0 @@ -73785,7 +74145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f54e73cb226499d0812ca23e9580320c", + "key": "ec7fda6448d11737be8c5807daaf58d0", "notes": [], "params": { "forceDirect": true, @@ -73818,7 +74178,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfebef8cb53d1583af70b2acc55b478d", + "key": "a0f10a41af403d7334064ced6212c22e", "notes": [], "params": { "correctionVolume": 0.0, @@ -73838,7 +74198,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "841ecff469dd0fd5a475ffe00ae84f29", + "key": "445f406ee83300ea31bf3c56f9310aba", "notes": [], "params": { "seconds": 1.0 @@ -73852,7 +74212,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41eb69e56854bb7c274129223fa2ea00", + "key": "ac041f5309f4f00a751a43fa83777521", "notes": [], "params": { "forceDirect": true, @@ -73885,7 +74245,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "073e93c9d6e69add6c35d64fa8ef41e8", + "key": "0e236602628805c5fcbe29a520fa24d5", "notes": [], "params": { "seconds": 0.5 @@ -73899,7 +74259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19760b2452f2ccb1f0e32cc3e89b2bfb", + "key": "33858f7452c71f8f7e54a24ae4888fdd", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -73918,7 +74278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "544f48bdd6f40ce0c0ff31a7d7b52b8a", + "key": "17a653274dbd89a41dbf6f9fd24bf5eb", "notes": [], "params": { "seconds": 0.2 @@ -73932,7 +74292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7581790ec0c45b7ae823c3a550dd5263", + "key": "52dd7edfd298610a7489abf96abae503", "notes": [], "params": { "forceDirect": false, @@ -73964,7 +74324,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5a7a51eaeb1b2e1156c611b1ac320ab", + "key": "db4db32c5b2473353c07ab5788a93074", "notes": [], "params": { "correctionVolume": 0.0, @@ -73984,7 +74344,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d549c634a4d12765404e4ad2ba13ef30", + "key": "5edc739bfc6f0319aa4db204d7847725", "notes": [], "params": { "seconds": 1.0 @@ -73998,7 +74358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7d90dd3adf0ff2d32a392649cbee8796", + "key": "bb5479fe712f2d9c4b90886ba517a1de", "notes": [], "params": { "pipetteId": "UUID", @@ -74014,7 +74374,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c047fd3b97e5b28d550b020da26bbdf", + "key": "ca01db2120239fdb7f9856ae8391cd26", "notes": [], "params": { "pipetteId": "UUID" @@ -74028,7 +74388,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f40088283b0fd42d0f5c63a319469f26", + "key": "9dfc8d641ab944536d82d399a763ac12", "notes": [], "params": { "forceDirect": false, @@ -74060,7 +74420,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "776197a1dfd208a60989f5b132d445c0", + "key": "53ef5f76e80a65546cdd0604323386bf", "notes": [], "params": { "forceDirect": true, @@ -74093,7 +74453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "862cb6746073b16bbeafe92251c5855e", + "key": "16fe596cda07c11dc98e278a166fe630", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -74112,7 +74472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f4cc566e492eaaf4407ded094837f36", + "key": "49a6acfd802f4c4114800d3c4bd26b49", "notes": [], "params": { "seconds": 0.2 @@ -74126,7 +74486,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b56992421dabffd5c878723e0d975a1", + "key": "68df2e5ee630bf3c9f9ff14d4fed51e2", "notes": [], "params": { "forceDirect": true, @@ -74159,7 +74519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bba2949546c99a671fe581ab9c817bd4", + "key": "9285690e01b4a3a93fc34f02567961ab", "notes": [], "params": { "seconds": 0.5 @@ -74173,7 +74533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d8909c2f79702a070b022677c7a5d54", + "key": "3f1193fed1e189d952351045c9089a5f", "notes": [], "params": { "correctionVolume": -19.238861521620144, @@ -74192,7 +74552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a1fc7c49d296167c3c5260a53e425cd", + "key": "8c740aac05d13dd3440bb4c48ac6c8c0", "notes": [], "params": { "seconds": 0.2 @@ -74206,7 +74566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a31779213d9807717ad2d82df08f82b7", + "key": "34c20a20b36d50ce1f7131c200293318", "notes": [], "params": { "forceDirect": false, @@ -74238,7 +74598,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e85417d6875fe2c6f4a44207aa39eed", + "key": "fc76afd96caa4aabb3dc2a029a1534b5", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -74258,7 +74618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4950d4a1784d8af0617f60fb0fbe692", + "key": "78da15c9bf1174ffa06cb0b0eeb3412d", "notes": [], "params": { "seconds": 1.0 @@ -74272,7 +74632,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74647367b3789ee26a55f75fc98ca98e", + "key": "9d9fcbf7f2144bf288f1acfcaaede6ca", "notes": [], "params": { "forceDirect": true, @@ -74305,7 +74665,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a66880e5deac3897e5a92832f028ef96", + "key": "e5375082bec0758a99ee91f3e852b5e8", "notes": [], "params": { "correctionVolume": 0.0, @@ -74325,7 +74685,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e34066cff1acf8d3103d42da66cf2dc9", + "key": "9d589f550844f7e83c214991af277f03", "notes": [], "params": { "seconds": 1.0 @@ -74339,7 +74699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a06e45f4dc7624fdb681143fbe0fa58e", + "key": "cc404b879a275af3b395da44580f92f9", "notes": [], "params": { "forceDirect": true, @@ -74372,7 +74732,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4593b2bf9fc5b0e2fe1d20855bb5ee7", + "key": "a210289c23e41888b0fbaff336d1f6b3", "notes": [], "params": { "seconds": 0.5 @@ -74386,7 +74746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ade9dc31fabe189d22899cd70852882", + "key": "47f9b2e37ce6830232ed18bfba5c9bfa", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -74405,7 +74765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "82b605536d9ef8ffd8ecca8bda2d547a", + "key": "e98cc8bbd891aedb93f7089114a10070", "notes": [], "params": { "seconds": 0.2 @@ -74419,7 +74779,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcca926e61da72afd35ec5e154767493", + "key": "e1970e804ccb0dde9eadb4fd053f3375", "notes": [], "params": { "forceDirect": false, @@ -74451,7 +74811,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "272134df2e43f60ee9f82ccd11a8df5a", + "key": "955417543dd3f6533c2240c187c1247c", "notes": [], "params": { "correctionVolume": 0.0, @@ -74471,7 +74831,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59d0641e57c7cc71ad6869391b359208", + "key": "ecc76ff300fd4a28d551610e66bbce1f", "notes": [], "params": { "seconds": 1.0 @@ -74485,7 +74845,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4747c128db1c2fda19fecd675329a46", + "key": "577dce5ed774b5ac7ff6e6bed8e0db85", "notes": [], "params": { "pipetteId": "UUID", @@ -74501,7 +74861,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07ef72db559b53a30f2db17752147bbb", + "key": "fe672f8768ee92e66eac3b4361e757bc", "notes": [], "params": { "pipetteId": "UUID" @@ -74515,7 +74875,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c20a634308704449006ec431825f048", + "key": "79ad4c3c44855e6f3773447e9b7e8aba", "notes": [], "params": { "forceDirect": false, @@ -74547,7 +74907,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f280dda0f8e0366905262a211217778", + "key": "d76a073e380e28be838205958e441fac", "notes": [], "params": { "forceDirect": true, @@ -74580,7 +74940,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6da3d2841094dbf259ef52ada839deb", + "key": "6499fe579716593323a0cf2067723a3b", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -74599,7 +74959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89ad9d566c729dced94f4ec03724c632", + "key": "8d8649b6f2c9a7ae5de2391cfca9fba9", "notes": [], "params": { "seconds": 0.2 @@ -74613,7 +74973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ca82ca000814c8c803276a3a2525a7c", + "key": "1d4f78eac87921a9bd258c37b9c5041b", "notes": [], "params": { "forceDirect": true, @@ -74646,7 +75006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "443c1b3afb2b8826968046d8152a76d0", + "key": "8acdb817a2a63a7a42a3e8f35192a6e9", "notes": [], "params": { "seconds": 0.5 @@ -74660,7 +75020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe85ea063125b6b7dee3ad614680640f", + "key": "f530963a3043f6610e2870e3b5f99fb3", "notes": [], "params": { "correctionVolume": -19.238861521620144, @@ -74679,7 +75039,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "68f0e42843ae8eb302a2d72fb617eb39", + "key": "98a708f700cd6bcf8aae6221a5be0be4", "notes": [], "params": { "seconds": 0.2 @@ -74693,7 +75053,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86d8dc115b93b0b5fa08c3aa97d2eae9", + "key": "6b55ab59ef1e07398f2965f5d08f910f", "notes": [], "params": { "forceDirect": false, @@ -74725,7 +75085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f659d8d0e49363549ffac34a799c903", + "key": "81f2a6e6e8eb4854d70f092b775c1828", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -74745,7 +75105,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83cacd7102e05ad95a7ccc736113e827", + "key": "44ede396c3c453af29c1d07df0efbbf9", "notes": [], "params": { "seconds": 1.0 @@ -74759,7 +75119,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d9c352a488668afedc1d60b7df4cd4b", + "key": "1ec3af75c723a2beb4b20a6c16499e1e", "notes": [], "params": { "forceDirect": true, @@ -74792,7 +75152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d8e0e52d6e0d64267da34e4a5a06dcf", + "key": "b59ec988f3cc9bff5e1d740e178fa0df", "notes": [], "params": { "correctionVolume": 0.0, @@ -74812,7 +75172,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78578d70226f1272dcca6efad018d854", + "key": "40da0af06d266de4708796bf718f191f", "notes": [], "params": { "seconds": 1.0 @@ -74826,7 +75186,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8bfaf96423118157f21a226d0688ac3a", + "key": "9eda37bb3b7a53db8f8016117d77021d", "notes": [], "params": { "forceDirect": true, @@ -74859,7 +75219,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d82eacab5d3cca98eb592e398b4fb1cf", + "key": "3c1bfd886a6f0ddc7062ed85f22c3f3b", "notes": [], "params": { "seconds": 0.5 @@ -74873,7 +75233,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1fe56e302508b1365f22d77aa94a8797", + "key": "3935720f356c596ab8b8825034c591ef", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -74892,7 +75252,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9971fb323954a445d4e478ab071e09da", + "key": "b10972ad2fb8d1c5fa5f106123e8911f", "notes": [], "params": { "seconds": 0.2 @@ -74906,7 +75266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75ea9c776b6b750028681e61cdb93d08", + "key": "7f914543fc9197df823f11b877359690", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -74935,7 +75295,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79b68dd4853f81422ad5021fcb8a487d", + "key": "ebdfcf874c92c258d7c1d72322e1472f", "notes": [], "params": { "homeAfter": false, @@ -74950,7 +75310,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bbd772a84948160ec2d68276d0baee5", + "key": "284e50affda92a58b947c62e56604a35", "notes": [], "params": { "liquidClassRecord": { @@ -75313,7 +75673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70ac6ac25177e1150774da2daa00facb", + "key": "b21ded74251a8c991f5dc78b57778c5f", "notes": [], "params": { "labwareIds": [ @@ -75335,7 +75695,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37d9f4c03dda26017a0d4c5bbaae2a16", + "key": "2d673a7ec62a92bbf611c1cabd66c7c0", "notes": [], "params": { "labwareId": "UUID", @@ -75368,7 +75728,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd54f4296413bc0bf1ef0d31a6343354", + "key": "74a261c320d0d1597d84cf46fb89586b", "notes": [], "params": { "forceDirect": false, @@ -75400,7 +75760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe469916747aeb2ab85f05900ab72fbb", + "key": "40886b604f04436929d8b5f2556ba735", "notes": [], "params": { "pipetteId": "UUID", @@ -75416,7 +75776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca06b7ae431ad619e4b1aad9bfeccab7", + "key": "6c86dbf487ad1cf586114764aff1d83d", "notes": [], "params": { "pipetteId": "UUID" @@ -75430,7 +75790,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59b186dfb9eb12f0e56bb55a458c7343", + "key": "55d647b3c4f2a0612dd7b42c8b3e2ca8", "notes": [], "params": { "forceDirect": false, @@ -75462,7 +75822,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4d0f6189d18380b9cc532dccb77552b", + "key": "f9b9320436e63cf3eb620a3fef1bc9b6", "notes": [], "params": { "forceDirect": true, @@ -75495,7 +75855,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a71e1fd943f93cf480858c20ae8223c6", + "key": "3cf9ebc5c1516da0d9602a6e93c97e66", "notes": [], "params": { "correctionVolume": 6.622222222222223, @@ -75514,7 +75874,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74f765f09651dbed5834ff28efd0ef5f", + "key": "0c9b16b49fe5948530564dc83309480f", "notes": [], "params": { "seconds": 0.7 @@ -75528,7 +75888,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae32e8efb566e9e409c5f76c980d5440", + "key": "43e72158d4cb0688e47d1b8ac5726c92", "notes": [], "params": { "forceDirect": true, @@ -75561,7 +75921,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6505490b332cffef06218e7938bd99b", + "key": "71d6324073d91c94b49fef67d4eecb4c", "notes": [], "params": { "forceDirect": false, @@ -75593,7 +75953,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "235dc0709c132db63efe76b5037f5798", + "key": "10c0082744adab6cddc1607f64f4f1e5", "notes": [], "params": { "forceDirect": true, @@ -75626,7 +75986,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "905af0853ddb7f930fa75c305bf0cade", + "key": "a2a31df4771f245b6a7a9c8fba1491f9", "notes": [], "params": { "correctionVolume": 0.0, @@ -75646,7 +76006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3d65491da71f56cb6a00158359a1184", + "key": "237541eb57353c18669da3cc98e0379e", "notes": [], "params": { "seconds": 0.5 @@ -75660,7 +76020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "923a22185188706e1a80a0e8db305b78", + "key": "cc2907fb1c3dabb757a8c78e9f100819", "notes": [], "params": { "forceDirect": true, @@ -75693,7 +76053,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "432896436dc1f53e687b9be649fa9957", + "key": "c98810c468fac14272869ba49bb4915f", "notes": [], "params": { "pipetteId": "UUID" @@ -75707,7 +76067,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d909f918ff397256e22c005c3e32fe99", + "key": "7db75971ceac34b13c8164b6e545e462", "notes": [], "params": { "forceDirect": false, @@ -75739,7 +76099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5b37647b3e0d491abc94363e8cbcba1", + "key": "307109dbfd311b0083c4d3674ee31ad7", "notes": [], "params": { "pipetteId": "UUID", @@ -75755,7 +76115,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16159c57b4b9fe9c315c19e81f003fa6", + "key": "42730a419bbc4d8d49f04558aa4d9d6c", "notes": [], "params": { "pipetteId": "UUID" @@ -75769,7 +76129,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a43b79eb0666f140df02d65fd0a68f3", + "key": "9a1ea404bef488f0f8fb5677b258eb8d", "notes": [], "params": { "forceDirect": false, @@ -75801,7 +76161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3a2bc7617febb5fb6e2be8b50c71925", + "key": "480c7018148aa4378b52c067b9ecba63", "notes": [], "params": { "forceDirect": true, @@ -75834,7 +76194,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33a3bcdcf8e1e05dc812d1c1ab6b3347", + "key": "98b0cf7ee13f8644cbc904df8cafc8e5", "notes": [], "params": { "correctionVolume": 6.622222222222223, @@ -75853,7 +76213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25e77ecb8cebf45333428428e3044aaf", + "key": "c6d54551e5bc3892b69c4ad8e059f239", "notes": [], "params": { "seconds": 0.7 @@ -75867,7 +76227,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eeeab56e83098b120903b823aed00359", + "key": "48a6bd74928b66aab785bdccc09a65ee", "notes": [], "params": { "forceDirect": true, @@ -75900,7 +76260,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba452dce67e39b40f020652869b6f6e3", + "key": "b5c32e40127194334b779c8a3b6380c2", "notes": [], "params": { "forceDirect": false, @@ -75932,7 +76292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a43f99918ab779a60e9f2c2e4fb3fba1", + "key": "878ae0cd0dacea9d537970d746961ab8", "notes": [], "params": { "forceDirect": true, @@ -75965,7 +76325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8711f5ed45079adfb4dfff79fcefadd6", + "key": "f81c782acbb31e475d161d4bf4c99fd6", "notes": [], "params": { "correctionVolume": 0.0, @@ -75985,7 +76345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ecfbe948be51364d9772cb15649ec76", + "key": "9705124fa618b66c55ec107a844e0ebd", "notes": [], "params": { "seconds": 0.5 @@ -75999,7 +76359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd4e230531d951dbe7cdadad1e517751", + "key": "98cc62aa1b788977cbc7fbb1745ca3e0", "notes": [], "params": { "forceDirect": true, @@ -76032,7 +76392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b08c20e06e1c9200c6904757e261f44", + "key": "03afe3905fbca915d577dab210d55cc2", "notes": [], "params": { "pipetteId": "UUID" @@ -76046,7 +76406,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "045ed6f2934f645b0e80c99b80be278f", + "key": "f0bd02f5db42d488b00e21eca0cb4462", "notes": [], "params": { "forceDirect": false, @@ -76078,7 +76438,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "403afa3328311190fed7f06804a06b1f", + "key": "3a5136a8f95130819e5b1bcff593ba18", "notes": [], "params": { "pipetteId": "UUID", @@ -76094,7 +76454,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "174097e0e8e3535d517883d1a80a4556", + "key": "be96d38bdb6ac508bb59fd5f70e22c47", "notes": [], "params": { "pipetteId": "UUID" @@ -76108,7 +76468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53f0b742aacea9b253d29c26e06cba5b", + "key": "50083aa5849f04252637ec67bdc57954", "notes": [], "params": { "forceDirect": false, @@ -76140,7 +76500,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "adedc7d1c88083e44fa3ac86f280fe48", + "key": "8cc2c2361dc6001c19159435cde7a0b2", "notes": [], "params": { "forceDirect": true, @@ -76173,7 +76533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a357a3b1110a299e593bf3bc22f54baf", + "key": "d3b7ed03d9a4f9aa7c3b7c77bdea6c1e", "notes": [], "params": { "correctionVolume": 6.622222222222223, @@ -76192,7 +76552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "655531269c104f1d9ad32e81a96b9551", + "key": "8639eabde8685d5e9c475210b394606a", "notes": [], "params": { "seconds": 0.7 @@ -76206,7 +76566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d31076ad81d2eae53c5952f2c273f141", + "key": "7086c57272402687831b94d613ad1f61", "notes": [], "params": { "forceDirect": true, @@ -76239,7 +76599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf2a02209c64d637c366188161696859", + "key": "5702f4f8c7f0047a0cbf0337aade6b30", "notes": [], "params": { "forceDirect": false, @@ -76271,7 +76631,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2bb9595d39a7533b99f3a5e9bf55fcc", + "key": "b2803e8f3621635058580f09d7a3d70b", "notes": [], "params": { "forceDirect": true, @@ -76304,7 +76664,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "698e52a6cdcb2660624c9d9403a9c39c", + "key": "9833ee8273fe48bcfa143c6bcf592ad1", "notes": [], "params": { "correctionVolume": 0.0, @@ -76324,7 +76684,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad7dfc31d97a8fa36d6a91b0bf5e5407", + "key": "4f7274406e22e86932df156be564f9f1", "notes": [], "params": { "seconds": 0.5 @@ -76338,7 +76698,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81fad5824b2f872682dc6b7972b2dee5", + "key": "33a556e9a5ca9b25ec5a9c8e1b929333", "notes": [], "params": { "forceDirect": true, @@ -76371,7 +76731,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3482dfa02c9a360f7aedc248d9b47264", + "key": "2af1e6ea5cf4ec17d726e4e6ced3e604", "notes": [], "params": { "pipetteId": "UUID" @@ -76385,7 +76745,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9959a1fd3796923661a1630c061f4a7", + "key": "e62cde73302be76e3432a3c3f7d5a1f7", "notes": [], "params": { "forceDirect": false, @@ -76417,7 +76777,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "40468966d86d482d38d9cfb522a614cf", + "key": "ae1f1a27d1d3e51317e111e8cb9575b0", "notes": [], "params": { "pipetteId": "UUID", @@ -76433,7 +76793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e49a23f2e6f69f93bff846987c907635", + "key": "9f6e31ee7f781e10c62008547644bf9c", "notes": [], "params": { "pipetteId": "UUID" @@ -76447,7 +76807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b6881b98a0aeac05d12aac531040cf0", + "key": "7bfa644118c6057e2811afaac3f7931d", "notes": [], "params": { "forceDirect": false, @@ -76479,7 +76839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f67ffbfc81dd6a5617e07e0d58808315", + "key": "9d0482a4226efab441713e89c534366c", "notes": [], "params": { "forceDirect": true, @@ -76512,7 +76872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a6ce43e74e4bcd96a0445886fcd9e02", + "key": "e7cc6d0e9c65bc46428c5a074207df02", "notes": [], "params": { "correctionVolume": 6.622222222222223, @@ -76531,7 +76891,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0eef32076888b6cb65e4a2311d11ef6d", + "key": "1ee81baff86feec9f0c2cf07345d2c0b", "notes": [], "params": { "seconds": 0.7 @@ -76545,7 +76905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3df072e8576d243b0d6ee9f5f1c10de", + "key": "102d44954e66ef1093ece790d25a1d3b", "notes": [], "params": { "forceDirect": true, @@ -76578,7 +76938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49955e088073fd547b92860ee16f6551", + "key": "f745714665d7be8ffebed369c4ec640e", "notes": [], "params": { "forceDirect": false, @@ -76610,7 +76970,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3afd0e69f86fadd5d66b3aa5a9783def", + "key": "771e263afac5ec6771c18ef4e517bb0d", "notes": [], "params": { "forceDirect": true, @@ -76643,7 +77003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "023737612f6a7076bcba8b70b3ba6e69", + "key": "efc929875ed6261c4ca0d7d27ffe9151", "notes": [], "params": { "correctionVolume": 0.0, @@ -76663,7 +77023,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89bedf85c3cd47bf145c055d82296afa", + "key": "7d3866529262a65d0e516dbf92d5ac19", "notes": [], "params": { "seconds": 0.5 @@ -76677,7 +77037,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a84c8950ceb854739cacc62c1a2ae29a", + "key": "339d31983f75017852befcf3670e00d0", "notes": [], "params": { "forceDirect": true, @@ -76710,7 +77070,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "115ab096860926af60477602411e7793", + "key": "2abb677e1a37f68060cee795d877c7d7", "notes": [], "params": { "pipetteId": "UUID" @@ -76724,7 +77084,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c3d54fb95a191903203c10ce65c98727", + "key": "315da303db1e59509817a956e384caf8", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -76753,7 +77113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f775c30f7980cc7769b97b408982af5", + "key": "d276abefb87146f16eceaf2da36e727e", "notes": [], "params": { "homeAfter": false, @@ -76768,7 +77128,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a23ccb3bb4e7e2dfa0bfe3a6e9495a2", + "key": "38fb2f27c8a94365f1ecf771d1a6d80b", "notes": [], "params": { "liquidClassRecord": { @@ -77103,7 +77463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5439ea40e322a3a5db72372139e8f529", + "key": "ffa6860fa72267a3c90951d3b9fc4ee8", "notes": [], "params": { "labwareIds": [ @@ -77125,7 +77485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d857e77859db04b2b97f8044fc724b0a", + "key": "02b1d2839a2dcdc6915cf80571a7c391", "notes": [], "params": { "labwareId": "UUID", @@ -77158,7 +77518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fa45b77b15beec39b9bad05a1745112", + "key": "f2313ed214577ca641e0a752d86fb52f", "notes": [], "params": { "forceDirect": false, @@ -77190,7 +77550,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7d7c875a852ea33e37a7af6a617cde3", + "key": "7dd03c4157a07fb933fd5b8b607e7064", "notes": [], "params": { "pipetteId": "UUID", @@ -77206,7 +77566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a98ce0f57883be13592f49dc8fe03ce", + "key": "3cda1da20ebdb08edf936bbf86e9b159", "notes": [], "params": { "pipetteId": "UUID" @@ -77220,7 +77580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b3e7977a2e2bbd6b7a84f8ea106b56b", + "key": "8937ea6a8e8d0dd3b232d8effaf88fa8", "notes": [], "params": { "forceDirect": false, @@ -77252,7 +77612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ba943728df30f0a48161a38b9634146", + "key": "0a4d962752fdb7a8b48289c379414f38", "notes": [], "params": { "forceDirect": true, @@ -77285,7 +77645,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7fedb48d8c2da154e91956bb9f1ed656", + "key": "1d662bf8a2e24709c71fefc5cc95b49f", "notes": [], "params": { "correctionVolume": 0.0, @@ -77304,7 +77664,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b1f19ee0a43f75e5664f8067b1faf07", + "key": "015174a41b75076b8bda64d7d830cfb5", "notes": [], "params": { "seconds": 0.5 @@ -77318,7 +77678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e78fc499ba417e19060fde431385f898", + "key": "616e3ad2c298fc977ba62698d40c9a7a", "notes": [], "params": { "forceDirect": true, @@ -77351,7 +77711,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74fa1956ab6345120f0fa667c089b1d7", + "key": "9d6e282cdcd947521f5e2067af7a5154", "notes": [], "params": { "correctionVolume": 0.0, @@ -77370,7 +77730,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c6bff89d5d6d6ceeefadc1a732b579fc", + "key": "dcf592e1694ce1c51619becf908fb901", "notes": [], "params": { "seconds": 0.5 @@ -77384,7 +77744,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "218491327d4a2d8b01741c2e71839758", + "key": "b10e3ae9cf801863d1c5e2203839dec3", "notes": [], "params": { "forceDirect": false, @@ -77416,7 +77776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4818bd4f3a46b8de2ed817aa1da09d47", + "key": "0b0c8dacb416fbf2ef27e5a572a75e6b", "notes": [], "params": { "correctionVolume": 0.0, @@ -77436,7 +77796,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b88317adbfee7c1a446c7f8cb5be8eda", + "key": "5faa53d63c7ffff6b04bc9d120a91d92", "notes": [], "params": { "forceDirect": true, @@ -77469,7 +77829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa8bb020a8e8d8f789050852e04f266f", + "key": "8beb850653c34c3ec539a4cb0a98acc8", "notes": [], "params": { "correctionVolume": 0.0, @@ -77488,7 +77848,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84639d559306339d052409d2fe4c51e2", + "key": "7d15c6a8b2fe20615e0c1b984a5d0ff8", "notes": [], "params": { "seconds": 0.5 @@ -77502,7 +77862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9def40a3dfda85bdfad19b158b0c5b80", + "key": "968128ba62945a1eb03f652a038f0dfa", "notes": [], "params": { "forceDirect": true, @@ -77535,7 +77895,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "68fc6bb45e0eb0bf308c6eae9ec0f0c8", + "key": "c9868bb0b3c854093634835e8093ba52", "notes": [], "params": { "forceDirect": false, @@ -77567,7 +77927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bf8d9cc7813df3fcb04aa1c5bcb9b48", + "key": "a4752d071def106296f8dc674aea71e3", "notes": [], "params": { "forceDirect": true, @@ -77600,7 +77960,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ca969e09e5eff11fe2949068736c7f2", + "key": "f47a5e71b38ac41fcc56470c22920329", "notes": [], "params": { "correctionVolume": 0.0, @@ -77620,7 +77980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f1dbfc5ac85ef975698d8a852b64d80", + "key": "1c6f2134a9e88dcebf5e74b3ad8c7f2e", "notes": [], "params": { "forceDirect": true, @@ -77653,7 +78013,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e8ff35bdc720dbc2c481348c512ce01", + "key": "646c43991b369953ea6579ba1409eb97", "notes": [], "params": { "pipetteId": "UUID" @@ -77667,7 +78027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7a98a62b56ce73c481ca7701e433dca", + "key": "ee73940d29e10a665d27e0753f8481bd", "notes": [], "params": { "correctionVolume": 0.0, @@ -77686,7 +78046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5827ea04ab4262b8cc65074a9faa470b", + "key": "6384915e5b172714c6528c99cb66b427", "notes": [], "params": { "seconds": 0.5 @@ -77700,7 +78060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "afd728216b64a0fc64bdf1bd092181c8", + "key": "ea01580414556b437deed83db1a98f76", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -77729,7 +78089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3967e91505e260619c29b23a54355f62", + "key": "1742a0a6ccc4fd0936f03cab6cb04696", "notes": [], "params": { "homeAfter": false, @@ -77744,7 +78104,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d2cacdd73424f799cac6aa7f59b4065", + "key": "72f69bb8590d57196d11676ec33a7e2c", "notes": [], "params": { "liquidClassRecord": { @@ -78139,7 +78499,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cef88f80fbe287a333d5f6bc9e3dda8c", + "key": "37a0b7cf77a7974531e257747d3ef7ac", "notes": [], "params": { "labwareIds": [ @@ -78161,7 +78521,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14ef261d7450e2c3e152a4b3c2295cc9", + "key": "f1071b91c71a79e4262f7d423b48cc83", "notes": [], "params": { "labwareId": "UUID", @@ -78194,7 +78554,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "626e11b183196be9fa4ae83c9d035edf", + "key": "1f77bd7363d1f728b89c2e2d961ef1b3", "notes": [], "params": { "forceDirect": false, @@ -78226,7 +78586,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d44428c5600b1ed05792620a7731ba08", + "key": "17b2b2593e6364fc0c57102ef35db253", "notes": [], "params": { "pipetteId": "UUID", @@ -78242,7 +78602,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0958bc0128254a096e13c6cf5bf1075", + "key": "af2945fc8f7ae6520e834cf7f57c9cca", "notes": [], "params": { "pipetteId": "UUID" @@ -78256,7 +78616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac73d858d4969f1d08795a7257a18982", + "key": "34242a16f6af26ddade86016348e27b6", "notes": [], "params": { "forceDirect": false, @@ -78288,7 +78648,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd71159c03c5e9eb4f31fbc8556f176b", + "key": "9bfe93802008a300a865409951c4eeff", "notes": [], "params": { "forceDirect": true, @@ -78321,7 +78681,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73d0ecc1420b30dc6cd6989a16c851ff", + "key": "f0665ba5042d58df5475cde1fe7d3e67", "notes": [], "params": { "correctionVolume": -15.755555555555556, @@ -78340,7 +78700,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e20ce1a78e4626552b14c31334ac17d", + "key": "8b8c03123fcafad7ce0036c44fcc03df", "notes": [], "params": { "seconds": 0.2 @@ -78354,7 +78714,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44dd1c3a9ca7e50fd8083b5689f2398b", + "key": "ceaee940f6e60524cf223f16ac9b89fd", "notes": [], "params": { "forceDirect": true, @@ -78387,7 +78747,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22aea1abd708ca1fa01ed06166790bd3", + "key": "f38d13d5f568e5ddd559900a40c5131c", "notes": [], "params": { "seconds": 0.5 @@ -78401,7 +78761,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce588fc8157467044bcb65b05a282954", + "key": "7e54f5c081e255f2f1c18451c9264191", "notes": [], "params": { "correctionVolume": -15.99857690202518, @@ -78420,7 +78780,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5dc8b2e283511f3fc4c1f383ffabd52", + "key": "73e1a98685f23520e2eb5eefd5cb3b39", "notes": [], "params": { "seconds": 0.2 @@ -78434,7 +78794,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "afbc0e69e1ca4c9d66d4d89e73d8fd94", + "key": "fe6d2dfe4477e113108215973b8cb060", "notes": [], "params": { "forceDirect": false, @@ -78466,7 +78826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a21122daca30c17bb87626429b6f75b0", + "key": "687ae9355214f61e230af0629a2cbe72", "notes": [], "params": { "correctionVolume": -15.755555555555556, @@ -78486,7 +78846,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2295107653b2438ee95b29a8e9399264", + "key": "4d10672d1831e9ba9d32f1eb2edb287f", "notes": [], "params": { "seconds": 1.0 @@ -78500,7 +78860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8232317c025bd3c3fd4ab5655c05add", + "key": "4f6524f835fa313f2399394f263d61a0", "notes": [], "params": { "forceDirect": true, @@ -78533,7 +78893,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86153ad0e05830ed89f9e678f462f7b0", + "key": "a8c2546489e70fa05cc1c49d7552f444", "notes": [], "params": { "correctionVolume": -32.2, @@ -78552,7 +78912,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d54cd1c4abb743f724e72f93f51548fb", + "key": "073324d0d4904d5fa7a3927fae6eb2bd", "notes": [], "params": { "seconds": 0.2 @@ -78566,7 +78926,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "daa5403ce8451c412de7c5b794ac7d10", + "key": "c564f9c1e236e693c56af62fe4d5b3af", "notes": [], "params": { "forceDirect": true, @@ -78599,7 +78959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91bd151a4798ce8fb6080103975f27bb", + "key": "e10877d0a6e1fa2d6accae6b25ba3a9c", "notes": [], "params": { "seconds": 0.5 @@ -78613,7 +78973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea0fb5b6d9e9232052cee1804dfd239d", + "key": "6108adc4851cd5fbe34f65009bcec1e4", "notes": [], "params": { "forceDirect": false, @@ -78645,7 +79005,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5174454aa7113549d913447b4a803b5", + "key": "6bc908bceddf24a06799f561464bb47a", "notes": [], "params": { "forceDirect": true, @@ -78678,7 +79038,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fd3da7b626183a8c00b975fbf0ed381", + "key": "7568b62bf4af1c038e51738af023a8da", "notes": [], "params": { "correctionVolume": 0.0, @@ -78698,7 +79058,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97e4165e381efd9f3eba15c65f075020", + "key": "c5b6b24cdd7206f4f15d1a3900f7ceb7", "notes": [], "params": { "seconds": 1.0 @@ -78712,7 +79072,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d22566dce22ae3503ccde127dab095d6", + "key": "58e4bc24839e391c5136a6b9806a4a47", "notes": [], "params": { "forceDirect": true, @@ -78745,7 +79105,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16d7364b4911e6a4637ac17e763862d4", + "key": "33215a850fa68662b42d6008c88b426d", "notes": [], "params": { "seconds": 0.5 @@ -78759,7 +79119,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e2cfbc4688c39634978e3036f19efa5", + "key": "5799befd0c06bc178cecdca22dd6ed25", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -78778,7 +79138,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1acb6a6021a59bc74e6e9b6115e30453", + "key": "93c32d61cbe9de5517414effcf12ece3", "notes": [], "params": { "seconds": 0.2 @@ -78792,7 +79152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "699fd0a8a8dfb6cbb2477704a54e9299", + "key": "1ed867e5d9a276d23b4353d5ec08abe5", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -78821,7 +79181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "67ccdd03350795bf00fac21229011ade", + "key": "08a26f15f56b77003394d8a9791cc78b", "notes": [], "params": { "homeAfter": false, @@ -78836,7 +79196,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e276b74f77689d00a12af25aead396b7", + "key": "cd126b24821cc7893e29e5f166dcb9aa", "notes": [], "params": { "liquidClassRecord": { @@ -79199,7 +79559,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d40d373c6825273090d2bbc9ad474c3e", + "key": "72699d8753a0cd72c9e4bfb0e1ee40a4", "notes": [], "params": { "labwareIds": [ @@ -79221,7 +79581,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd380cba11a0e9deb34b9a8e7cf5ff88", + "key": "49e494942d28443ec90f9b7e496fb3cc", "notes": [], "params": { "labwareId": "UUID", @@ -79254,7 +79614,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93f68754c8830ebefdd169acdd45d8f2", + "key": "973732714269b71aa8695431b2ff2668", "notes": [], "params": { "forceDirect": false, @@ -79286,7 +79646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5b1ccb19c4324565623199004565e27", + "key": "2935c78e0f4f16fffac8f6edfe6026f7", "notes": [], "params": { "pipetteId": "UUID", @@ -79302,7 +79662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1d63694dba52370954be378cac18377", + "key": "d77a981f2c7db121bc2c91e6c958a501", "notes": [], "params": { "pipetteId": "UUID" @@ -79316,7 +79676,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb4ecbe4a38fed22236bb4729894aa69", + "key": "700010ec11975a6d067e17cf0f07aec5", "notes": [], "params": { "forceDirect": false, @@ -79348,7 +79708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d806beea929045396d4c98edb237f732", + "key": "ff466b255f11beaaa56e1cc364a1be09", "notes": [], "params": { "forceDirect": true, @@ -79381,7 +79741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77fa74c5bf385ad3e4a1edc0e540625f", + "key": "eb8a1c64150191e05d3d146e321e07ef", "notes": [], "params": { "correctionVolume": 5.277777777777779, @@ -79400,7 +79760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9dc148d82b7b0074ada2875ec134c3e", + "key": "3c1ddc06d54e7c43d8aed7e50048a901", "notes": [], "params": { "seconds": 0.7 @@ -79414,7 +79774,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ef4614030320ceb0dcc5c25c3186444", + "key": "ea25ed7fb50385941c827e05811ad94d", "notes": [], "params": { "forceDirect": true, @@ -79447,7 +79807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a14a31ddafe11f09a765524ea8ded31b", + "key": "4c059eaccba1f044aee53710d0c71a21", "notes": [], "params": { "forceDirect": false, @@ -79479,7 +79839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f90e7491e32afedb78066ebe1eee14e7", + "key": "746f39271f698819dab01ee0066a8199", "notes": [], "params": { "forceDirect": true, @@ -79512,7 +79872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "feb8b22c2b3c6c33622b5dd00c45877c", + "key": "8fcb0389f196095230a488b794baedc8", "notes": [], "params": { "correctionVolume": 12.0, @@ -79531,7 +79891,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd5ef169cebe09afe4da839ab08f2e0f", + "key": "dec1fc5363ba7cdbfde39a0008d25a0e", "notes": [], "params": { "seconds": 0.7 @@ -79545,7 +79905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ddf63eff4784bc85aaa1184aac84e1b", + "key": "02e82cf7f6e33143c00f7389b9dcf1fd", "notes": [], "params": { "forceDirect": true, @@ -79578,7 +79938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2392083c5ae26752d618bbdc4a21b469", + "key": "86f9c8dc40b5e358263c2ba42ee65061", "notes": [], "params": { "forceDirect": false, @@ -79610,7 +79970,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f7a465d82326225cf62992eed2618fb", + "key": "95f48937d9d037cc38677b67a0e499b9", "notes": [], "params": { "forceDirect": true, @@ -79643,7 +80003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78e67e7aa8357885c7303cc63e1b8e53", + "key": "e3d86851834a4fcb5aa7a6619e301058", "notes": [], "params": { "correctionVolume": 0.0, @@ -79663,7 +80023,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3ece4772098095f7668fc512c6a035f", + "key": "f5e384fac31c41bf6772536954917633", "notes": [], "params": { "seconds": 0.5 @@ -79677,7 +80037,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44bf1428c0f0f3718278b55af75ceb5c", + "key": "4ea3a08c2e08d5cb50da5ec595771260", "notes": [], "params": { "forceDirect": true, @@ -79710,7 +80070,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65d01612af7642c9b9df4a417322c663", + "key": "c4e01075cb24727b55673090bae0b514", "notes": [], "params": { "pipetteId": "UUID" @@ -79724,7 +80084,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e278334b330a9b1e1fb71010da0bade4", + "key": "7e88a736cda18a7ae54cac7e42d41906", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -79753,7 +80113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34ee5c8e353b0c6ff8f26e1b57479c70", + "key": "cba22f76b9d76e9acdcd1da915388603", "notes": [], "params": { "homeAfter": false, @@ -79768,7 +80128,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2de5b0372f8d0be52d9dc23f5b5b9d70", + "key": "36c346df51d322349bdbf38be5c00782", "notes": [], "params": { "liquidClassRecord": { @@ -80103,7 +80463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e266c6462181f686f05ba6903d97f80", + "key": "90ed826548a31465edb4b70d89646f6a", "notes": [], "params": { "labwareIds": [ @@ -80125,7 +80485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "476f6e38a9c73786cc0461d582237bde", + "key": "0b8271d281108fa65c78be312ef07d0d", "notes": [], "params": { "labwareId": "UUID", @@ -80158,7 +80518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dcde75526aaa38e30ecd361a74109eb", + "key": "8e02fd59f0e67b54030bb0c033e9e1a3", "notes": [], "params": { "forceDirect": false, @@ -80190,7 +80550,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c1f9e528e08e9863001704f7cfba866", + "key": "cd6a292db9f8b758b1ce634b1d52e625", "notes": [], "params": { "pipetteId": "UUID", @@ -80206,7 +80566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24159c1c34370acb72f305dbba246aac", + "key": "2cd16eff714ebac50790665183e3ce6f", "notes": [], "params": { "pipetteId": "UUID" @@ -80220,7 +80580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "82c807927cfa46c33bf7f31cb588277e", + "key": "53045933297a3754e9993f2134ec3381", "notes": [], "params": { "forceDirect": false, @@ -80252,7 +80612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e82bedfc9f299db89f6baa49da78bbe2", + "key": "539a653046c4994710f88b3280078055", "notes": [], "params": { "forceDirect": true, @@ -80285,7 +80645,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8f5cba663eb55432da259500246abfb", + "key": "77e9f151baa7c82d341792857e1b5306", "notes": [], "params": { "correctionVolume": 0.0, @@ -80304,7 +80664,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f5bab9ac9fc8b4ea232f0dcffe0b738", + "key": "47e5b208a5fe438f76dc3a3db548ff23", "notes": [], "params": { "seconds": 0.75 @@ -80318,7 +80678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb8d9e2995da5ef56c5a9fe33a3c3fa7", + "key": "070b5f053654072c7e78fc7f4eb63674", "notes": [], "params": { "forceDirect": true, @@ -80351,7 +80711,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "82192807d415823dc74498b9220fa5e5", + "key": "90335c625ec296c840f7808b5e2f9d6d", "notes": [], "params": { "correctionVolume": 0.0, @@ -80370,7 +80730,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10b62b2f19ce780af4208aab8d7ea4ed", + "key": "4bac2583e4430aa3c4d44071cb555c5e", "notes": [], "params": { "seconds": 0.75 @@ -80384,7 +80744,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f13a7bf154e32672197acf759b8412fe", + "key": "119c7b0860d61dc7654dded93a25f239", "notes": [], "params": { "forceDirect": false, @@ -80416,7 +80776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "837e2fce9c94296eefae376d99ab9053", + "key": "92deccc487bd9b41a1ccbc36d3c4e4c7", "notes": [], "params": { "correctionVolume": 0.0, @@ -80436,7 +80796,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01c3798660d97c05a633e414d0a87fb7", + "key": "739f82ecab3a19a346cdbd6b73c9b083", "notes": [], "params": { "forceDirect": true, @@ -80469,7 +80829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25d60e4189491f9be0af9c1f2632e6be", + "key": "ac872cc58f322bac53d27b8a2583bb9b", "notes": [], "params": { "correctionVolume": 0.0, @@ -80489,7 +80849,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94f7ce00b2a0edc861aa62aecc31e531", + "key": "5f5e3868e3e377afbc8be604082e93aa", "notes": [], "params": { "forceDirect": true, @@ -80522,7 +80882,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "855b9739de5e6e8cba3b0b63e72b25a8", + "key": "596cc9ab25a7de949bd9a6ddfd337a38", "notes": [], "params": { "pipetteId": "UUID" @@ -80536,7 +80896,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a71a66d4583bf37e924d595e5397d838", + "key": "ade81b8ba889fcec9df7fe465bd6b690", "notes": [], "params": { "correctionVolume": 0.0, @@ -80555,7 +80915,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2e922fd32b5df091cf53b4473c064d4", + "key": "f615627034d4856bae4950b89215729b", "notes": [], "params": { "seconds": 0.75 @@ -80569,7 +80929,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd6a3ee354e2ceb1b8681cfd7f558035", + "key": "8ff5582e529c41f42079a94a061ad21c", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -80598,7 +80958,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f76993cbfc4e1a225782f4d16656e2f8", + "key": "d93996a902b9aa210b36ff3e1534e9c4", "notes": [], "params": { "homeAfter": false, @@ -80613,7 +80973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e2984f41fb638962f837c30dce136c0", + "key": "0d7923a473e4871119c2b258b79bb706", "notes": [], "params": { "liquidClassRecord": { @@ -81008,7 +81368,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15e4400e0adac75e8ac74c0f6fc2b7fd", + "key": "91ba71142620030e0f80ce57aac3ea88", "notes": [], "params": { "labwareIds": [ @@ -81030,7 +81390,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25bd5201aa1e74f2f5ea08e354129245", + "key": "648a7ddc6a3382c54204e7cf8dc741c8", "notes": [], "params": { "labwareId": "UUID", @@ -81063,7 +81423,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3212b9223d62533c371f039876560d61", + "key": "feb127d0b12a6286f9b884c1b93707ae", "notes": [], "params": { "forceDirect": false, @@ -81095,7 +81455,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a884f6526e2d5bcebdf239e05255ac5f", + "key": "ab2dcedcb95958ae6e2dad20e844ea58", "notes": [], "params": { "pipetteId": "UUID", @@ -81111,7 +81471,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a310c7b85de65edec116fec2acb44830", + "key": "9e0f1bd91448e4ff9d8aab4d197147b4", "notes": [], "params": { "pipetteId": "UUID" @@ -81125,7 +81485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c62b4183b65c2b920a76ad556a4580e", + "key": "4a764350bc0f1eafc66eaab7c60d4a5f", "notes": [], "params": { "forceDirect": false, @@ -81157,7 +81517,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63b5fbfeead0f460a3f60a8b8a753ccb", + "key": "d7fe01ea3f63b4a7730a4ed4d5153d58", "notes": [], "params": { "forceDirect": true, @@ -81190,7 +81550,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a02dbbdb8665a8140709e634d7c026f", + "key": "8de1befe34ef74d12eea5b1958bfc4ce", "notes": [], "params": { "correctionVolume": -6.666666666666667, @@ -81209,7 +81569,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfddca6ddcc0c9cd05b808e73dd56829", + "key": "4804089a028da62fbaaa600b10953296", "notes": [], "params": { "seconds": 0.2 @@ -81223,7 +81583,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78d3b2c6fef751a04c7e18620d159be7", + "key": "e86e3e437e4d074bb582bb46f262204b", "notes": [], "params": { "forceDirect": true, @@ -81256,7 +81616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abaab3c69761bf8cc1bd57cad8c16f3d", + "key": "b58d34e36d34ca5d07905a45abcd39f4", "notes": [], "params": { "seconds": 0.5 @@ -81270,7 +81630,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28bb32de2e53c582fa28c11bbe8512eb", + "key": "1f5f21ef212e88716d03efa8e42c3e0b", "notes": [], "params": { "correctionVolume": -7.113333333333333, @@ -81289,7 +81649,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1be88c1a48f14c0ba77a137babc0d0aa", + "key": "3628eca5a1742b71da6f772f6dd73b7f", "notes": [], "params": { "seconds": 0.2 @@ -81303,7 +81663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "208761fd88a10185963b8aac7425398d", + "key": "ac066a75964bcb81af5338db94f0de88", "notes": [], "params": { "forceDirect": false, @@ -81335,7 +81695,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b031812cdc8377611c7a371cca4d4f78", + "key": "3458fdea982458ec0e654772a0140ca6", "notes": [], "params": { "correctionVolume": -6.666666666666667, @@ -81355,7 +81715,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3a0d052f91042ec3a02a99ed689d319", + "key": "82a8c0a2386681b1a5c814b851618b0d", "notes": [], "params": { "seconds": 1.0 @@ -81369,7 +81729,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3772240f47ae009f7d17561dc4ca915", + "key": "4349681ff5a47e5d79c948cc4ac49484", "notes": [], "params": { "forceDirect": true, @@ -81402,7 +81762,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab1638e8791b3a6a8d9f122769298edf", + "key": "cb2595a45949eb4f672bd479a6262119", "notes": [], "params": { "correctionVolume": 0.0, @@ -81422,7 +81782,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "059e21a15ee784e316015e3999586bb0", + "key": "0441a5d22c8b776ab29ab96de65b33ca", "notes": [], "params": { "seconds": 1.0 @@ -81436,7 +81796,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95a1307f6d4b9db3bd6856a7a7c9f835", + "key": "abfe7fbd2aff0095ac41f427006f498a", "notes": [], "params": { "forceDirect": true, @@ -81469,7 +81829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd71c2bb52efd627b55d18d34d2c523d", + "key": "c81cdf9323af45b8ee0ec72cabe89ae2", "notes": [], "params": { "seconds": 0.5 @@ -81483,7 +81843,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8aa2bbe20d53627cbb63ee40265b9c19", + "key": "4a812b344f87c99b36af0c00972e145a", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -81502,7 +81862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e654f5253bc29053b6685c710e3b28d", + "key": "24f7b2aea7adf384dcddef7497bdec9b", "notes": [], "params": { "seconds": 0.2 @@ -81516,7 +81876,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b853cc7baea16cc63f96064478fac20", + "key": "10aa5b9ad07eb359b171631615073a40", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -81545,7 +81905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "125669c76437d33bd3929c9576d37631", + "key": "e8bfb948c8116dc86db8f00029065647", "notes": [], "params": { "homeAfter": false, @@ -81560,7 +81920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1b59506588e05d0b2d86ae3956f7d36", + "key": "8f76386a33119fbb8c844e4d458552ad", "notes": [], "params": { "liquidClassRecord": { @@ -81923,7 +82283,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6956465e0d9e6faf9583894175c25325", + "key": "f70948a13eb58834b9d1a14c1a6f680e", "notes": [], "params": { "labwareIds": [ @@ -81945,7 +82305,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "395ad489f035d25b6ed1c9bb2cf56a3f", + "key": "55cc0ae2fd18318bb86525d0574f54c3", "notes": [], "params": { "labwareId": "UUID", @@ -81978,7 +82338,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "572ba98665e38128bbf5507e91ff2ec4", + "key": "70a7dda207f4731a3b070a642af4697e", "notes": [], "params": { "forceDirect": false, @@ -82010,7 +82370,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21211e91c288a16e59dbd3ec5c87c0cc", + "key": "ae63602859972700f6d09bcf41bef72a", "notes": [], "params": { "pipetteId": "UUID", @@ -82026,7 +82386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4827db769e0e73ff0fe76ddafdfc44e2", + "key": "ade6884649144bf07abc975d7992fa16", "notes": [], "params": { "pipetteId": "UUID" @@ -82040,7 +82400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb3dbad1a3eb3025ac0b60e8e8d68549", + "key": "04f01fa5b2d427a4a85dab23c0df8099", "notes": [], "params": { "forceDirect": false, @@ -82072,7 +82432,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8fd9e9671e22244fc8c29c138f9512fd", + "key": "ec8e204e1b5ac68df361c538c1d9e859", "notes": [], "params": { "forceDirect": true, @@ -82105,7 +82465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91b2bbcc88e5c7c224b3d758b4778119", + "key": "52ed9efbccddbabd0a7143294e36a069", "notes": [], "params": { "correctionVolume": -0.6333333333333333, @@ -82124,7 +82484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c65cd11c3c702717afb5f040b187f2fb", + "key": "8748a6786c7f5b46cdc5fd0e0efa3154", "notes": [], "params": { "seconds": 1.0 @@ -82138,7 +82498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61c9d3ab976cdad52f3ec230f8e36569", + "key": "c9c87aa7e1aef1355d9648356afc3420", "notes": [], "params": { "forceDirect": true, @@ -82171,7 +82531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d48062b071ca056c5555ff577b63e0d9", + "key": "063a021a323c099def543854a9c0d2bb", "notes": [], "params": { "forceDirect": false, @@ -82203,7 +82563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a89216fa1b3ea5c97a27e11ae1224baa", + "key": "f72b583f71a52647733ecf46131249f5", "notes": [], "params": { "forceDirect": true, @@ -82236,7 +82596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "129670a1a40a3ac18d8e5d23797c9a07", + "key": "0110abf6bb0e81195144aa79bf95d31f", "notes": [], "params": { "correctionVolume": 0.0, @@ -82256,7 +82616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec88dea5526f5332e614eb174ca0780f", + "key": "ab7063854df67d6a083d9c0b7e34fce8", "notes": [], "params": { "seconds": 0.5 @@ -82270,7 +82630,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "901ee5ce205dd15b5da7ecc0bf031376", + "key": "8482fc0d3d75bd234ec94992bab5312f", "notes": [], "params": { "forceDirect": true, @@ -82303,7 +82663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac1b4ea99146dfa6d7fe248a557941c5", + "key": "dd3903badb50d363b619be216cda570c", "notes": [], "params": { "pipetteId": "UUID" @@ -82317,7 +82677,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad2048c7df7c9551955e6c83cfad20d6", + "key": "1b0e8de0e86ca25010f978d103dfea6e", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -82346,7 +82706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "096e268df8ee1402add77645e4cc80c2", + "key": "87ccddaa5d64c6f27fdbddf796f4b684", "notes": [], "params": { "homeAfter": false, @@ -82361,7 +82721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d9d2711b010f86b2b97d58e6c247559", + "key": "6c4589b1670e59cd5cff1a3661d583ee", "notes": [], "params": { "liquidClassRecord": { @@ -82696,7 +83056,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1026ae0995a45ad3e1fb54b9239419c0", + "key": "6cbf27540ac131141d2657c9f269e332", "notes": [], "params": { "labwareIds": [ @@ -82718,7 +83078,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea9fabaa61d5e634377bbccab7d861fe", + "key": "fea2476e5b43bbebedabfc0c4875732f", "notes": [], "params": { "labwareId": "UUID", @@ -82751,7 +83111,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9113acf79ac28d17568acaba1c1bd14a", + "key": "e055fa609bfd855bec68c9c75e4d4545", "notes": [], "params": { "forceDirect": false, @@ -82783,7 +83143,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9324b620958daf1cde7e378aedcd87f", + "key": "7c237dfa965c21f95cbaa3bc98d5a441", "notes": [], "params": { "pipetteId": "UUID", @@ -82799,7 +83159,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77859a0b0d95e41d22cca33ff9b893d5", + "key": "a13f81a257564fb7cae2f130e418e41c", "notes": [], "params": { "pipetteId": "UUID" @@ -82813,7 +83173,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7bb356149d7266211b6f815a73c441a9", + "key": "9e603ed51282a32133bab17ca79daf26", "notes": [], "params": { "forceDirect": false, @@ -82845,7 +83205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d1fe0a631d9db3551a42f3baa3659b7", + "key": "4658510c7804c962f1d92169157dac0c", "notes": [], "params": { "forceDirect": true, @@ -82878,7 +83238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5499af969c4693ca04095fe990051a9d", + "key": "aebedf5726f2c6d5682cec1bd59ec84a", "notes": [], "params": { "correctionVolume": 0.0, @@ -82897,7 +83257,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f45542368dfb52975f98d9a59142f40", + "key": "a7e896fd0f2a223e1872f86c3862589d", "notes": [], "params": { "seconds": 0.75 @@ -82911,7 +83271,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae6a0e436cc801a4598694ad1d98bf7c", + "key": "c5598c20bc40a53b3eb245d041e1eb59", "notes": [], "params": { "forceDirect": true, @@ -82944,7 +83304,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11dd429af5a15d0c9feb0d194ac2611c", + "key": "4922e9df1f189b2ca3a901e0d8892c61", "notes": [], "params": { "correctionVolume": 0.0, @@ -82963,7 +83323,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "984982019bc4419ed111d6f63d292f01", + "key": "dff713300fbb027003b3449a9cc37cef", "notes": [], "params": { "seconds": 0.75 @@ -82977,7 +83337,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9e93cd99b4fca4120165e0715332720", + "key": "d2576b67c88d165b60d66a7b70a5d2cc", "notes": [], "params": { "forceDirect": false, @@ -83009,7 +83369,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "043981c7f94e4eda37a24a3f74fd5a57", + "key": "080995915315cb56b37505272fba63a4", "notes": [], "params": { "correctionVolume": 0.0, @@ -83029,7 +83389,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e38b4a68cdd7089ceaf8f3aaa9252391", + "key": "2cb1317f54e7a7a41e12dd199f70557d", "notes": [], "params": { "forceDirect": true, @@ -83062,7 +83422,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0cbfc85ba5f613dbec1d71054f97c816", + "key": "7b151a9adbf97f367f3898abd0c8a31c", "notes": [], "params": { "correctionVolume": 0.0, @@ -83082,7 +83442,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62f78a4d57fa6fd01277b4f54cc0e9ac", + "key": "272d9e9c67647fc4b63517ceb38953a6", "notes": [], "params": { "forceDirect": true, @@ -83115,7 +83475,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce186ef3308dbd08def4e96bfcf8a222", + "key": "2a0a0acee65477fc167dab0a1203725c", "notes": [], "params": { "pipetteId": "UUID" @@ -83129,7 +83489,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2265672801fe4492f3d2fc749c84ce63", + "key": "21d40e6b5f2296f8a273411ae6c2ea1c", "notes": [], "params": { "correctionVolume": 0.0, @@ -83148,7 +83508,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d43e1bfb8dd3b3769ae92cc610238a9", + "key": "925f2e9c95570235802c6321a7312fb6", "notes": [], "params": { "seconds": 0.75 @@ -83162,7 +83522,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a14fd1f89a6690bb0bd5b4c211bca35", + "key": "9bd0776c62a1d02fa448b9c2c263f346", "notes": [], "params": { "forceDirect": false, @@ -83194,7 +83554,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfb015e4ed8f2410a6c242e65d7ab4fd", + "key": "6f20309ecee3a6265b31180f45db0005", "notes": [], "params": { "correctionVolume": 0.0, @@ -83214,7 +83574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c15a96e49917739930722c015c584084", + "key": "f0a62caa95c602b42eac15e1a3fd8b72", "notes": [], "params": { "pipetteId": "UUID", @@ -83230,7 +83590,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "40c1737bc573a540a26bc6cc04ee6091", + "key": "5a7e3a716360b7f30b88fc164ae93373", "notes": [], "params": { "pipetteId": "UUID" @@ -83244,7 +83604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2df8191dc86adb0ed2df5b291c731d11", + "key": "c6e1624548aa568fb91376a4120e3060", "notes": [], "params": { "forceDirect": false, @@ -83276,7 +83636,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78e127df9faf4646f4335bad5bebcf1e", + "key": "909313004dcd29b18e76ae2251ac1eca", "notes": [], "params": { "forceDirect": true, @@ -83309,7 +83669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9699f8cca4c710d1c83e231384e6100f", + "key": "c567c6822141e01b47b705691c78590c", "notes": [], "params": { "correctionVolume": 0.0, @@ -83328,7 +83688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "feb9172485610b6056d0dc233d359b57", + "key": "572533b61ad16b21de36a196fb35d419", "notes": [], "params": { "seconds": 0.75 @@ -83342,7 +83702,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aedb60965e6d33e4a23d5637f4ba44ab", + "key": "b438704f70b5be463393a0076b32fc45", "notes": [], "params": { "forceDirect": true, @@ -83375,7 +83735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b49e342a3a565b022403102389dea812", + "key": "d3a5fa84ff3d68275d7b985cad90c332", "notes": [], "params": { "correctionVolume": 0.0, @@ -83394,7 +83754,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1a24110fc8fe982dde607b857a647fc", + "key": "f65d7f41d6f3bab06280ec9a90a379c2", "notes": [], "params": { "seconds": 0.75 @@ -83408,7 +83768,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4eff346ea10108c4ab71e66ac9c22597", + "key": "2b752170a9a2bdee455f3b8bf6296f94", "notes": [], "params": { "forceDirect": false, @@ -83440,7 +83800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6892b41e63f47e55a4dbf3e89408eb3", + "key": "a68cc23a1c3ccbdf20d8f791bdb169a6", "notes": [], "params": { "correctionVolume": 0.0, @@ -83460,7 +83820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d90978d93fc782981aa5f218a06da8bc", + "key": "7d09b854acf90cf11cd17a9d6d028240", "notes": [], "params": { "forceDirect": true, @@ -83493,7 +83853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2005e08befc1ce8ad33cf9109ae12b3d", + "key": "13b9a9e6636f9f4a79095ddecf3185af", "notes": [], "params": { "correctionVolume": 0.0, @@ -83513,7 +83873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ebb9ef9419be2b29427e0feba167a9c3", + "key": "7ec65aee0900e22bef35763660f19330", "notes": [], "params": { "forceDirect": true, @@ -83546,7 +83906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58cde2baf4a8d489f1bbdb74d41063a3", + "key": "69584039c2daa480ea84e27a85cf515f", "notes": [], "params": { "pipetteId": "UUID" @@ -83560,7 +83920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f0aebdb58ba96bd53dfd24832a4ea569", + "key": "142a71e56a25a9b65c9b9740562c8d6e", "notes": [], "params": { "correctionVolume": 0.0, @@ -83579,7 +83939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a26439ed63ee7fa6bb91bad8cd9d569e", + "key": "dab0413e6b24a04a21e2447f7fb84e27", "notes": [], "params": { "seconds": 0.75 @@ -83593,7 +83953,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9c7011ff7e6aea3113c2c24cfb99540", + "key": "9c44dff768ef4718aaa876349a9db553", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -83622,7 +83982,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5499ba47dad42631789b9d0d554e2933", + "key": "a3ccd5aaaecdc497be195ef727b856f5", "notes": [], "params": { "homeAfter": false, @@ -83637,7 +83997,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37e58608a4e7e86510292e0c7784301d", + "key": "0dbff57e2d36e25aca404790a56244b3", "notes": [], "params": { "liquidClassRecord": { @@ -84032,7 +84392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a653825876dc5fdbedd4c7bbec8b24e8", + "key": "c2959c9ba051fd14976ac14c45e57038", "notes": [], "params": { "labwareIds": [ @@ -84054,7 +84414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e587c11cedde2bbcc30775636630746", + "key": "035b6173da89fdd6bacefe193b983977", "notes": [], "params": { "labwareId": "UUID", @@ -84087,7 +84447,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96b32c6fb82c2fe64e23ad4a22536049", + "key": "a43152a160ce30f2b35ab1f29c2de497", "notes": [], "params": { "forceDirect": false, @@ -84119,7 +84479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5cbf5dd91f28378452483ef10ec15cf", + "key": "e1a0a588b8212f972dcb389974474113", "notes": [], "params": { "pipetteId": "UUID", @@ -84135,7 +84495,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac2562e09909097c8ea50678f522240d", + "key": "cbf57987eaf198437e8b85287d28d92c", "notes": [], "params": { "pipetteId": "UUID" @@ -84149,7 +84509,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3206e8610c044ae0d0eb7dd348de3a65", + "key": "a36e2771b3e0cd6e2801736d40bf83b3", "notes": [], "params": { "forceDirect": false, @@ -84181,7 +84541,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc5958957fe9418a16de866ae0cfcb1c", + "key": "567821fba8152e070c41c9cd231c1ff9", "notes": [], "params": { "forceDirect": true, @@ -84214,7 +84574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e6db82a7e33fd22cffaa5171e2f9035", + "key": "1c5b35c15a93038394bae1c4e02eff0a", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -84233,7 +84593,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a6ffb9995ed53646e4ae235894a14294", + "key": "6f3f935e661bf86194f19f4af000dbd3", "notes": [], "params": { "seconds": 0.2 @@ -84247,7 +84607,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d13cccfc2ba917aeac690a07b21d7b5", + "key": "d75e93de9a7996d32c14bbefc4abb3c4", "notes": [], "params": { "forceDirect": true, @@ -84280,7 +84640,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e17296fcb30414a7e78cb2cae36caf4e", + "key": "e0c29d6dc9cf4e44bb1ba7ebaea9bc64", "notes": [], "params": { "seconds": 0.5 @@ -84294,7 +84654,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dff913d095870d2b0e6018599a3006cc", + "key": "0e5e2582d1564a2f8afcd6a36e925eb6", "notes": [], "params": { "correctionVolume": -8.453333333333333, @@ -84313,7 +84673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6798465367cfc1255d947d0ace32a89a", + "key": "8bb4a58ffd1d7914f554af3bc14bf8ba", "notes": [], "params": { "seconds": 0.2 @@ -84327,7 +84687,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cffb9900f750edbd377382892da8e248", + "key": "f0a597d819a3e9e27a02833e26b35af3", "notes": [], "params": { "forceDirect": false, @@ -84359,7 +84719,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b1b6a99e004fbb70ef96eb3e640450c", + "key": "7cf8403298821ab40dbc24f778b6cf47", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -84379,7 +84739,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d976809f5ef6f4753e40516def79fd8", + "key": "57a36920ec775e5bf6f3297a45f427df", "notes": [], "params": { "seconds": 1.0 @@ -84393,7 +84753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b015575da763d4feadc13a5a3c4e9858", + "key": "6ae842de9a7874b027a59cc9433d57d6", "notes": [], "params": { "forceDirect": true, @@ -84426,7 +84786,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e899b17a83f55fd4a8c869b979f0527", + "key": "a351f880b1021c413966308b0b1ca9d9", "notes": [], "params": { "correctionVolume": 0.0, @@ -84446,7 +84806,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b6d76eb4b412843466f0df3aa4ecbc5", + "key": "5c2633de760ac647c4f0ce7298bc6f70", "notes": [], "params": { "seconds": 1.0 @@ -84460,7 +84820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fa2ff89e16630101bd75d9e6dbdc149", + "key": "d371986716ed9bab46c8e4e16d340a79", "notes": [], "params": { "forceDirect": true, @@ -84493,7 +84853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "416a0a94252c148bb92b87c96f1bff91", + "key": "89624b6d56b7940c53f06ddad81f63fc", "notes": [], "params": { "seconds": 0.5 @@ -84507,7 +84867,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce2c376f2cef8ecfbaae08add0b5f592", + "key": "fd8a28ad577de3a2f4dbe91bf103a73b", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -84526,7 +84886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49e9795ff25ad8cddfaa157066672022", + "key": "a386be147b1f009c43327967cfeb8adf", "notes": [], "params": { "seconds": 0.2 @@ -84540,7 +84900,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a8fef8f37af2186a34ee4eb5d94c9aa", + "key": "ceae79197ea558dc1ae479eb646153e8", "notes": [], "params": { "forceDirect": false, @@ -84572,7 +84932,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7632955113725834611a03d9984f948f", + "key": "08ec3a5714889a250910638f84cd7fd1", "notes": [], "params": { "correctionVolume": 0.0, @@ -84592,7 +84952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8134a2c8e3dd9a4b4873909244f70747", + "key": "80f8117f9257da2df3fb725819b99402", "notes": [], "params": { "seconds": 1.0 @@ -84606,7 +84966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2acf4c02a56d91256b899ef9ded6fb4c", + "key": "37351ab1346aefa6bb80696aec93cec2", "notes": [], "params": { "pipetteId": "UUID", @@ -84622,7 +84982,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d36d940a8a5902fcdfc47bb4ee422807", + "key": "e64d30578c040dac6cfb99ea311813be", "notes": [], "params": { "pipetteId": "UUID" @@ -84636,7 +84996,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f1849faee43f1e4e5b3cf5d0290df2a", + "key": "e662c972d47969f2169cd84415207f2c", "notes": [], "params": { "forceDirect": false, @@ -84668,7 +85028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "932cd92e2b2c602f725d438f9caf2e7f", + "key": "b6dbe76a4152263471ee1ae67a8ff0e3", "notes": [], "params": { "forceDirect": true, @@ -84701,7 +85061,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da6e36b050490488d9c2eb697d41e3f8", + "key": "5da554ecbd587dbd91d169c977b425e2", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -84720,7 +85080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d09f35bafb287493da9a4acadad0919", + "key": "12ccf564a40494aeb8a90c83a22c353c", "notes": [], "params": { "seconds": 0.2 @@ -84734,7 +85094,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e29e5eb47366bd62113203f145b7d51", + "key": "60e9ab6868c2147f14353bbe43d89e45", "notes": [], "params": { "forceDirect": true, @@ -84767,7 +85127,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16f4f92bea98f02c6ebd84c62ffe9aeb", + "key": "4f761679d60621157101c482de191fa9", "notes": [], "params": { "seconds": 0.5 @@ -84781,7 +85141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d9124dd8c1200e277f3d1a7346e8a70", + "key": "045fc25e30e15b59e8ab9731c11eb2ea", "notes": [], "params": { "correctionVolume": -8.453333333333333, @@ -84800,7 +85160,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a85db83e4baa6c2e6ecca9ef5ebf53f", + "key": "e69fdded9e7180c18583ac3215eb5a70", "notes": [], "params": { "seconds": 0.2 @@ -84814,7 +85174,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aea1943f71c326fc03aaf2111f03ca6d", + "key": "8fe74e02b878e185928e49831b6f6c18", "notes": [], "params": { "forceDirect": false, @@ -84846,7 +85206,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9613f4ade7645cfb62f73c74e2b96ae0", + "key": "4bc254d1fb70201ec44ec4895e83b39e", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -84866,7 +85226,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ece9b685a56e27686f9eb688f63bd8c", + "key": "d8b4afc9f3e5b4376c01bb20c7b7d376", "notes": [], "params": { "seconds": 1.0 @@ -84880,7 +85240,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "673f40f8e71d14bfd0bb4bf246602a61", + "key": "e2b78302767e9ee44cfd5130233cf1de", "notes": [], "params": { "forceDirect": true, @@ -84913,7 +85273,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "267728aeba2c2c03bbf6c246de9ca6b1", + "key": "5dec727b0943a06fc3b1d9516b598591", "notes": [], "params": { "correctionVolume": 0.0, @@ -84933,7 +85293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8dcd2b7b231c794b3f965fe5f1622d50", + "key": "52576b252bc96e6087ab2f23be456a8e", "notes": [], "params": { "seconds": 1.0 @@ -84947,7 +85307,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6003bf5111e8da890fa1e8ac6b5c4e0b", + "key": "de81b5c174fce13fc4a66ff2212cc92c", "notes": [], "params": { "forceDirect": true, @@ -84980,7 +85340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd4c3f813f886ae7b27a8967ee4b6be7", + "key": "ddc9583fa110db22ee8bd4d6e577505f", "notes": [], "params": { "seconds": 0.5 @@ -84994,7 +85354,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d90923823c3c81096c6848917ec7070a", + "key": "4a9334634a6971bea8bccdd863310118", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -85013,7 +85373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9700e24c0292fd29bb0a8d6c8928cdd9", + "key": "1ddccf5079cdd5a8af759645f8ef5e0b", "notes": [], "params": { "seconds": 0.2 @@ -85027,7 +85387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "053b1e60de9ab9325e145654cac30157", + "key": "562039f9a54afce1ad6760d65e4eb03f", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -85056,7 +85416,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b82f43c4c3c5904610bcaf69002d05bd", + "key": "48e8ae69c3083db88b429ff17f5572de", "notes": [], "params": { "homeAfter": false, @@ -85071,7 +85431,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8559236ead8a4ee4b215d220ddcec5d8", + "key": "d5778d8fbb6c55aa90ede72a6014d9d8", "notes": [], "params": { "liquidClassRecord": { @@ -85434,7 +85794,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7d9ed32cf8bec9a76b5123e2fa1de952", + "key": "5a4e02ee3292bfa85ec5b0713ea243a2", "notes": [], "params": { "labwareIds": [ @@ -85456,7 +85816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a779a5bc92f38bfb08e7898b6e26d725", + "key": "114140b100092b42a047e1e250e0b046", "notes": [], "params": { "labwareId": "UUID", @@ -85489,7 +85849,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d1bb4a1af1efcfb8f4bd18efea2d966", + "key": "b0ff33cafdbb2c44576011de98138227", "notes": [], "params": { "forceDirect": false, @@ -85521,7 +85881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21037d4f81c2bc45af995a7bbdd02ce9", + "key": "5402d53aa9db3b1b57a9d3645cf85d64", "notes": [], "params": { "pipetteId": "UUID", @@ -85537,7 +85897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe96d293f30cd122823d56da93a1b8b8", + "key": "7b72e89086ec8449643e8ff65c25b8d7", "notes": [], "params": { "pipetteId": "UUID" @@ -85551,7 +85911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d7261809321158d78d920d5391eecd2", + "key": "84218ae6fb2328d54affee579d911866", "notes": [], "params": { "forceDirect": false, @@ -85583,7 +85943,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba8805c41e705807385aad51c5f66e42", + "key": "8a3998114f02cb96218b21a8a8528a3e", "notes": [], "params": { "forceDirect": true, @@ -85616,7 +85976,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5c854f27b718c41df8ef3de129fea57", + "key": "560e75425d3408fc90d0a10df2accbc4", "notes": [], "params": { "correctionVolume": -0.7333333333333334, @@ -85635,7 +85995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0db5a01315c6f2e0654e0a538c5481d3", + "key": "232784b6813e605622707e58bc15e573", "notes": [], "params": { "seconds": 1.0 @@ -85649,7 +86009,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3c8e1e37e26251ffbb5fce56fabcc21", + "key": "56b5c1b8f47585fdbdc939ae76f50aab", "notes": [], "params": { "forceDirect": true, @@ -85682,7 +86042,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7b5e5f444ae108a8cc6b853eb51e463", + "key": "ffe57c2ecc6fc3366be21e9629eca361", "notes": [], "params": { "forceDirect": false, @@ -85714,7 +86074,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d3604e4c1c09427d8271ea40049a474", + "key": "16aa9f9a4e266ea0ea9381d82ce7aef5", "notes": [], "params": { "forceDirect": true, @@ -85747,7 +86107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f46329762c9420891390dfdff548f8d1", + "key": "0c6dfd48acce14acd6154bdcbe7d683f", "notes": [], "params": { "correctionVolume": 0.0, @@ -85767,7 +86127,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3a5f4789530879f4812f2ebe3d7d1d7", + "key": "f339bb30fded59ae2f5056dc76e6d398", "notes": [], "params": { "seconds": 0.5 @@ -85781,7 +86141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3638e204241a9b88885b7431249626ff", + "key": "b724d2e7fe4e1dc6c523dcb84c917676", "notes": [], "params": { "forceDirect": true, @@ -85814,7 +86174,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d5fdfabf61326eafda4c617cbb30ab2", + "key": "df4c277bd6f2431d018e91efce2e1de5", "notes": [], "params": { "pipetteId": "UUID" @@ -85828,7 +86188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2b0ee6cf9e1640ebb46c8b9ec33f9cc", + "key": "0e2d020982a028b972ad9fb8c26163ef", "notes": [], "params": { "forceDirect": false, @@ -85860,7 +86220,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a93689859f2b27c7e057f2159645c2c", + "key": "ec3135585942e6adb3cf13cb48fae689", "notes": [], "params": { "pipetteId": "UUID", @@ -85876,7 +86236,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f51489545232acf40d37a6fa33bc7f0e", + "key": "d05c277343cdbcfba65153c849d8d435", "notes": [], "params": { "pipetteId": "UUID" @@ -85890,7 +86250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e4dce7f9aa9e8c4c11d8e8a6b56f7f1", + "key": "f7420d223f71818c39073ab8c5fa8766", "notes": [], "params": { "forceDirect": false, @@ -85922,7 +86282,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c17db236e2dca4b07fd90698c5221a8b", + "key": "e8e5b6c9d879fe58c239065f9d2264f0", "notes": [], "params": { "forceDirect": true, @@ -85955,7 +86315,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6439230e5ebd924e4a6e6b924b2347fa", + "key": "11ba204835cef69d33bdcc7fa1f5f061", "notes": [], "params": { "correctionVolume": -0.7333333333333334, @@ -85974,7 +86334,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ff32e822f7bf2bea316dba05500351d", + "key": "4953618298fb065a6b27f1736b0a5f67", "notes": [], "params": { "seconds": 1.0 @@ -85988,7 +86348,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5dad8262d7f22feb1496ab1def403856", + "key": "333a49fe9f18d916b7d84aeb2600989f", "notes": [], "params": { "forceDirect": true, @@ -86021,7 +86381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36f987da9cc81c427b3413ea4557bf69", + "key": "18d7204265099f9b883b8bcd59c49f7b", "notes": [], "params": { "forceDirect": false, @@ -86053,7 +86413,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d93abe9f2d1e195e95d6f3bc9fd9a97", + "key": "fe7e8289521fc1da379baf436fce3b38", "notes": [], "params": { "forceDirect": true, @@ -86086,7 +86446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7957e316bf70f99eca3848f23e86e127", + "key": "bc0054da05dbc5943fb4f2331f09e547", "notes": [], "params": { "correctionVolume": 0.0, @@ -86106,7 +86466,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "38430d508d7df6dc624fc54411b7c4fc", + "key": "5f0f6931f914f7a8b491567a9b803cad", "notes": [], "params": { "seconds": 0.5 @@ -86120,7 +86480,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9503ca0b910ea20500c40ce8fd3d8baf", + "key": "67980d5ea4ff1b243d979205fd39a33c", "notes": [], "params": { "forceDirect": true, @@ -86153,7 +86513,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbb4fa40050a23ae4c2fdc8f712280fd", + "key": "36897f4b680293613748eb593e3bbdc7", "notes": [], "params": { "pipetteId": "UUID" @@ -86167,7 +86527,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a6066459a70cb4e881090ffed5fc6a03", + "key": "da12fa90eced1d7f37fcda72938b5786", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -86196,7 +86556,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c2c4335f8e6c00dd60687f9f056938c", + "key": "4575bc5157cda9a92e06267461cac538", "notes": [], "params": { "homeAfter": false, @@ -86211,7 +86571,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69d4f333fc4e572ae7b3affb2680a5f6", + "key": "2753c75f389a0934343967ac020113e8", "notes": [], "params": { "liquidClassRecord": { @@ -86546,7 +86906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "810118190bcf7ec924e03ddc13e5b438", + "key": "7fae70aae70b1a373b2e0cab0202b773", "notes": [], "params": { "labwareIds": [ @@ -86568,7 +86928,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f83111a59c0ca142ebc113319a71edd4", + "key": "0ff7f4de024debacb4576764f6295cfd", "notes": [], "params": { "labwareId": "UUID", @@ -86601,7 +86961,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "588f1199137708cc64636210a87f7799", + "key": "63ebb9818d96f2a9fd5a6f78ff6fbe1e", "notes": [], "params": { "forceDirect": false, @@ -86633,7 +86993,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc97e775e68d338035799f8fe1922aad", + "key": "c5a3902398bafda6f0541b6472ff548a", "notes": [], "params": { "pipetteId": "UUID", @@ -86649,7 +87009,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2065533cd6753a8b093b7195679ead41", + "key": "a44baf3c44cfc0501ea90d18a53d3e09", "notes": [], "params": { "pipetteId": "UUID" @@ -86663,7 +87023,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c26ddb0e8daace8ef68c2932112c1f50", + "key": "23dae57459dcfa54c24a3c94785a1f12", "notes": [], "params": { "forceDirect": false, @@ -86695,7 +87055,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe2e66a7ce476b2cf87d41cce8662e32", + "key": "85814d284d98f2ad13020cff323d73a1", "notes": [], "params": { "forceDirect": true, @@ -86728,7 +87088,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48a43cf6f83626ddafafbd9f871086a0", + "key": "680c282deb75c90332af2df952e90e7e", "notes": [], "params": { "correctionVolume": 0.0, @@ -86747,7 +87107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "beff656b7946f6ee1f3e015b1b1198b1", + "key": "abffc00192bcbbae574b032b5d15380b", "notes": [], "params": { "seconds": 0.75 @@ -86761,7 +87121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d623d23f798180c7710f7cf376a1c249", + "key": "7aa3533757d1f832faf8a4a69b0d1afc", "notes": [], "params": { "forceDirect": true, @@ -86794,7 +87154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3a378ad93da594e9b4c028250e64db2", + "key": "471c96ad19c9301bb295d7fa9546f4a8", "notes": [], "params": { "correctionVolume": 0.0, @@ -86813,7 +87173,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae3436dc526c80163ee20e6add7c4bf3", + "key": "c5e350d42fb76d3f9d4905a831a7ea9c", "notes": [], "params": { "seconds": 0.75 @@ -86827,7 +87187,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f713b9b1b043750823b068f1152e4a80", + "key": "4002e62fae23827e6f61e8248b8473bf", "notes": [], "params": { "forceDirect": false, @@ -86859,7 +87219,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc7d198a28dcbe6f34d1161480fad802", + "key": "827035ac7286954f87cb18b0e4f3ccea", "notes": [], "params": { "correctionVolume": 0.0, @@ -86879,7 +87239,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb7157fa33368d2522bf5bd88ba59abc", + "key": "bf869add22822c83c052f26cf3b70cbe", "notes": [], "params": { "forceDirect": true, @@ -86912,7 +87272,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0571155054254a34c68dcff7fa8113b0", + "key": "0a6969affe0e50275ccbe3b73a714c96", "notes": [], "params": { "correctionVolume": 0.0, @@ -86932,7 +87292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff94f66c6f916342e1bf479458b5f904", + "key": "a7276fa1f53f8ce49a74a5abc374b41c", "notes": [], "params": { "forceDirect": true, @@ -86965,7 +87325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "031231915c61d24244ff86fb26dc3a2b", + "key": "afbd5947bd6405f6c35cf99cfb5efb7c", "notes": [], "params": { "pipetteId": "UUID" @@ -86979,7 +87339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4927ffe11416d00df45c4188ac49f6d4", + "key": "51937dc51706e80817ad8caa229f6779", "notes": [], "params": { "correctionVolume": 0.0, @@ -86998,7 +87358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d7a32cca945ac77dbb623879befe8c7", + "key": "7b36029ebd51074e0367551a20104e00", "notes": [], "params": { "seconds": 0.75 @@ -87012,7 +87372,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb3bba92a049a9fe0680dec6d01ea2df", + "key": "0d2b53c167da59f3aa0e144d515f7704", "notes": [], "params": { "forceDirect": false, @@ -87044,7 +87404,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a7e91f3d20f04e0c0f199c3dc34a5b0", + "key": "b0f0e5c20205f1f9478812fc03f00337", "notes": [], "params": { "correctionVolume": 0.0, @@ -87064,7 +87424,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ee7b0e37a20f2999305affe9085985a", + "key": "ebd71ac3f7c59aec41eb0637d1c9f95e", "notes": [], "params": { "pipetteId": "UUID", @@ -87080,7 +87440,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c78b65af2a0956d403b7ec23abd504b9", + "key": "803ee8e889fe87caf16366ef72fb6830", "notes": [], "params": { "pipetteId": "UUID" @@ -87094,7 +87454,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7cf30679899b6b6c29d955ea285b078c", + "key": "4ffc2ec4f6adba1991dc99e087be1e06", "notes": [], "params": { "forceDirect": false, @@ -87126,7 +87486,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79485454dd0dbf19f382547ae20af4d8", + "key": "327448d4dbd13eab23029668fed6f1ba", "notes": [], "params": { "forceDirect": true, @@ -87159,7 +87519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d997bf0b6901ca39cd4b3c715ac4782d", + "key": "d0ceaa0a84ea29457418d5538221a49b", "notes": [], "params": { "correctionVolume": 0.0, @@ -87178,7 +87538,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "baf1ca6ec045a94a98ab94e5704b4389", + "key": "6a187e923122bf8fdc9c2f33d9e82a79", "notes": [], "params": { "seconds": 0.75 @@ -87192,7 +87552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "360e2eb187b489d1ac9241ecc9c60ec6", + "key": "3f1b7cc6a3b9b5352b4e5cda2510ed62", "notes": [], "params": { "forceDirect": true, @@ -87225,7 +87585,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d85f70ceef9e80ab1dacafbb8761585", + "key": "2fefa8a602129c5e7fcfc9363d8f0f37", "notes": [], "params": { "correctionVolume": 0.0, @@ -87244,7 +87604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd30306692616825a2a8d14f986999e9", + "key": "38f23ab57afef85f2a03e9405573ea6c", "notes": [], "params": { "seconds": 0.75 @@ -87258,7 +87618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9950dbb8baae07fdbcc37b64540dcb2d", + "key": "0fd3a78c26ad801d5462d64f82025ac9", "notes": [], "params": { "forceDirect": false, @@ -87290,7 +87650,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e9939b58720f056ae504b9821bbbe15", + "key": "f7a3fd7119dc7aa821556f466ade0a8c", "notes": [], "params": { "correctionVolume": 0.0, @@ -87310,7 +87670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80e560d54bfa34339905a8483177b5d1", + "key": "77256c169f6074d4ea332a97e61fd75c", "notes": [], "params": { "forceDirect": true, @@ -87343,7 +87703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbd06b2bcc82fecf9e66dce22de612b2", + "key": "950b160491af39c11843291f04fd1a22", "notes": [], "params": { "correctionVolume": 0.0, @@ -87363,7 +87723,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "455d9c61aa26913fc44257e16fc039b8", + "key": "ed16afa37816277738cb0d5f15be54c4", "notes": [], "params": { "forceDirect": true, @@ -87396,7 +87756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "159a7970c859a947b0265d601660b5e6", + "key": "7c13a6142d5fbb7bd94baed1a41b7cf2", "notes": [], "params": { "pipetteId": "UUID" @@ -87410,7 +87770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bbcf688de6fa088e8a5f15117b1bb62", + "key": "b58d087206d90810d11deda67418327c", "notes": [], "params": { "correctionVolume": 0.0, @@ -87429,7 +87789,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29f299918f48954b3f9465c41f9ede18", + "key": "de2083e1fa9f4eaa937e72ed9d8c39bc", "notes": [], "params": { "seconds": 0.75 @@ -87443,7 +87803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b23fa581f8537889e521010b9300755", + "key": "b17f7e9ed9a657d72b78c57e208d5df1", "notes": [], "params": { "forceDirect": false, @@ -87475,7 +87835,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d54736159f1478110d7a3104e3cda34f", + "key": "412b3bf9e792b205f8b510b20ac22490", "notes": [], "params": { "correctionVolume": 0.0, @@ -87495,7 +87855,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07f4af9dccd05478c8b461aa782d726f", + "key": "c49e4fcea4c0bccbbb7c97119e8c05d7", "notes": [], "params": { "pipetteId": "UUID", @@ -87511,7 +87871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "851bc7d186ae847efdc6abf2a52d0bb4", + "key": "3626788ec35ec99eb8de5c532152a19c", "notes": [], "params": { "pipetteId": "UUID" @@ -87525,7 +87885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0b10b09b5efe974b740ac7a1658ef15", + "key": "493c45805146d6b6afca57a70aeb82c6", "notes": [], "params": { "forceDirect": false, @@ -87557,7 +87917,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98986ee0c20ac7fddb74060760920742", + "key": "28a587b6a79b5c38cac1cf76c4fd9b0f", "notes": [], "params": { "forceDirect": true, @@ -87590,7 +87950,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed023fda3bc79f35076d1c140dadb7a1", + "key": "75e9df8db01d1fc235b1a181b94607af", "notes": [], "params": { "correctionVolume": 0.0, @@ -87609,7 +87969,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1a332b07955626110376fbaea150136", + "key": "7a5e0b50867ab46b2ddd0ab6df486d36", "notes": [], "params": { "seconds": 0.75 @@ -87623,7 +87983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1da1f4ffb7bae09e03c3127a73477a30", + "key": "ea173ab441a10fcb40278157498f4f5b", "notes": [], "params": { "forceDirect": true, @@ -87656,7 +88016,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "acc43c32599d5d79a2474d093c9958cb", + "key": "cd4492e912bf55ba59fe2816eefe7732", "notes": [], "params": { "correctionVolume": 0.0, @@ -87675,7 +88035,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9cf177bf9934c166270278702d662e5a", + "key": "1a97c71f57fed1e3743a720baaaf1856", "notes": [], "params": { "seconds": 0.75 @@ -87689,7 +88049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4a90a23465dcce8f3f4a90d2db4177e", + "key": "e6ad0349a41951335761df5a46b73e88", "notes": [], "params": { "forceDirect": false, @@ -87721,7 +88081,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab103e65e353ef2a579727cfd7013ee3", + "key": "a2554e124b24fcb686b5a14ed98c50d5", "notes": [], "params": { "correctionVolume": 0.0, @@ -87741,7 +88101,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c88be7d1aaea0ed37eb080b0449e31c", + "key": "bdfc28748bc466cc8d9e72a4d43739a4", "notes": [], "params": { "forceDirect": true, @@ -87774,7 +88134,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d12654e6e7adf727e6fab10473141b6", + "key": "ebffb31bd9abe9a25aec704baf14f61a", "notes": [], "params": { "correctionVolume": 0.0, @@ -87794,7 +88154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33653d5c1b1b84fe4d28e1f5b4fbc86d", + "key": "9c19b3914e9b46af5e82b8331d87108d", "notes": [], "params": { "forceDirect": true, @@ -87827,7 +88187,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94a5bf471e2ce56458c5579185cc8583", + "key": "8313de4f737012d83c7b85a483b8bab1", "notes": [], "params": { "pipetteId": "UUID" @@ -87841,7 +88201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c6c215b79236987d7dbc3543b2b92a9e", + "key": "2eea893140e6b4ac9de3dfa5b711ab5c", "notes": [], "params": { "correctionVolume": 0.0, @@ -87860,7 +88220,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d16f83ecec355b427d52fcefd4a2911e", + "key": "9deea286a8683aec0f2870d1ca974a0c", "notes": [], "params": { "seconds": 0.75 @@ -87874,7 +88234,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8cf17eecab5724fa6600801632d1b45", + "key": "69e1bc6dff931e0956e0f90ae16844b7", "notes": [], "params": { "forceDirect": false, @@ -87906,7 +88266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e867dc8f81a483b3c2ebc0c670056f7", + "key": "d71121f3efbcdbf74e6b6e79146df674", "notes": [], "params": { "correctionVolume": 0.0, @@ -87926,7 +88286,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c31b039d89c4c5361136e7d2d1492cb1", + "key": "fab4df94b9c91be36a09f542312a0166", "notes": [], "params": { "pipetteId": "UUID", @@ -87942,7 +88302,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e139665858f2fbdc8561c8b1bfcde180", + "key": "81eda64405d3c11163ec3ba552c1ae83", "notes": [], "params": { "pipetteId": "UUID" @@ -87956,7 +88316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f676361f79b89871e4f9869b3260b9df", + "key": "58b2028c86dfdc0b4501a425d0cca28d", "notes": [], "params": { "forceDirect": false, @@ -87988,7 +88348,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e78efa397566e4ec37f977a23b5a47e6", + "key": "13d2f56b8193539faa3651fa3adc4c07", "notes": [], "params": { "forceDirect": true, @@ -88021,7 +88381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eded19bcc8180ba80d93b35a16208f19", + "key": "2d8c2914bcf3b836bc302be991bc7487", "notes": [], "params": { "correctionVolume": 0.0, @@ -88040,7 +88400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57451a7d6fa8130d8042e35588ac6c93", + "key": "50d4b25d2f54e4844ddd95c5ba0b3a00", "notes": [], "params": { "seconds": 0.75 @@ -88054,7 +88414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1598fc60278ef29ea2b74e1613b259ae", + "key": "b22d8ba9901f650ed1445a89fb6a2599", "notes": [], "params": { "forceDirect": true, @@ -88087,7 +88447,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "671a86499ed3f37e6bbf54c9a92cb4a7", + "key": "97bb634aafd2c265c77934fe3c98e1a6", "notes": [], "params": { "correctionVolume": 0.0, @@ -88106,7 +88466,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a83373caaddb9037d33f81553d9d859b", + "key": "5f69e81015253a11f67aeaff7574f738", "notes": [], "params": { "seconds": 0.75 @@ -88120,7 +88480,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2eb69a3adfc7bba3a72ce0824d59083b", + "key": "ce27bf2319063fe207c429511e3a0b08", "notes": [], "params": { "forceDirect": false, @@ -88152,7 +88512,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b343531a83d6e867b2da1c77fce75c2e", + "key": "0a398a05e98bd479eff66726246c64cb", "notes": [], "params": { "correctionVolume": 0.0, @@ -88172,7 +88532,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3711d73ab4461fe34e80c22a4d0cf0dc", + "key": "12f1289b864942f04b5fa0bd24d99450", "notes": [], "params": { "forceDirect": true, @@ -88205,7 +88565,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1bb10068d8c87f3431afbc22d8a901bb", + "key": "10fde02777cf7b75d4b8effb2d2e1b35", "notes": [], "params": { "correctionVolume": 0.0, @@ -88225,7 +88585,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f3acf27ea99d6425cae976a4efff7d8", + "key": "6ece88d2d2d99972890a5b7a1ae79670", "notes": [], "params": { "forceDirect": true, @@ -88258,7 +88618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2779d21187158bb246cce13d6982984", + "key": "a54169107c279b6eed75ef2d37b361ad", "notes": [], "params": { "pipetteId": "UUID" @@ -88272,7 +88632,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a5164b93eadb13349d023216598ec775", + "key": "4c7a60ca07138228ca0ffe23a205d896", "notes": [], "params": { "correctionVolume": 0.0, @@ -88291,7 +88651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7be77e9fba8a55f72776b8c4742e6e4f", + "key": "51b837baaab051cdd7fce92704794d10", "notes": [], "params": { "seconds": 0.75 @@ -88305,7 +88665,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a29a37c12fd61bdf56da3179aff613cc", + "key": "21d16a6a39cfded978728cf357cc7a52", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -88334,7 +88694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "204ef6e96dc96d3641b88fd23bef7dc1", + "key": "f0c7ba5fd8c45432ff091ceb072e1b65", "notes": [], "params": { "homeAfter": false, @@ -88349,7 +88709,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef433c65a6605337ad07e22a976c3de5", + "key": "201a892ec0ff94ef2c06807598c444b5", "notes": [], "params": { "liquidClassRecord": { @@ -88744,7 +89104,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd58a16fae5a151acebc1acfcd03d45f", + "key": "aa1bcb8c4afaf62c917c758fbe993a47", "notes": [], "params": { "labwareIds": [ @@ -88766,7 +89126,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5939a36a8b1c9a9aa600a90d1ad5b5c", + "key": "42303e8c11f0a9fe13487d1d0c6d81e4", "notes": [], "params": { "labwareId": "UUID", @@ -88799,7 +89159,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b263665106aa2285526b97f2e8b82377", + "key": "4571599e16335ccc1f3febff31e8bd40", "notes": [], "params": { "forceDirect": false, @@ -88831,7 +89191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab19a647c7bebf828204cfc85a4e3b96", + "key": "1456902d6442d09ea9d3b24a29d4360b", "notes": [], "params": { "pipetteId": "UUID", @@ -88847,7 +89207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "660bc49b031abc6b36096370267658dd", + "key": "600e25693c8a6798bc9770de6fbd1bb7", "notes": [], "params": { "pipetteId": "UUID" @@ -88861,7 +89221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4364c1854a87794d4a39c053ed170695", + "key": "d7c39d23c510b15897cf851f9fa6e0fe", "notes": [], "params": { "forceDirect": false, @@ -88893,7 +89253,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "561136b4ab3a0cb1d04c6cd2decad367", + "key": "b7539efea0fe5ea4d44e8cf9ba56cb81", "notes": [], "params": { "forceDirect": true, @@ -88926,7 +89286,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93428a84e208c4bd4be8fa1d6ecfd4f8", + "key": "2d33916b2399024ebf690a6bdaaafb6f", "notes": [], "params": { "correctionVolume": -8.23, @@ -88945,7 +89305,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "511b7f2dff48a9320a5b4845b69a59f8", + "key": "c224fe1cad0b262b5fd72a8ef607fab0", "notes": [], "params": { "seconds": 0.2 @@ -88959,7 +89319,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abea1e5d614b7913fd1b3f20e61a9bb6", + "key": "cb3228243a6e001025a453ede560c8df", "notes": [], "params": { "forceDirect": true, @@ -88992,7 +89352,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e49130f0e2435769535d88d53dfca081", + "key": "c0c8aa8e7663a5b47be59e2b0a2e6bde", "notes": [], "params": { "seconds": 0.5 @@ -89006,7 +89366,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b114c341e933e1a1509fc282cafa3d2", + "key": "1e3e97593b7c175b8957b9ca3a0a726c", "notes": [], "params": { "correctionVolume": -8.676666666666666, @@ -89025,7 +89385,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a747fbe7e3218e89c6d6bfac30ba83e3", + "key": "b41203d3aba12c1245cc25618b09bc79", "notes": [], "params": { "seconds": 0.2 @@ -89039,7 +89399,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ce7a0f75c30b3f703c3e7e44be79b5b", + "key": "defc1437aba105e6fea8d8e0f047d7be", "notes": [], "params": { "forceDirect": false, @@ -89071,7 +89431,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f30dfac556f6790c2cb6039fcd11942", + "key": "ce7a298eaa937b1de018a768e6d4c98c", "notes": [], "params": { "correctionVolume": -8.23, @@ -89091,7 +89451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8153fff05218ecd7ebb980ca3859a231", + "key": "bfd6186a576f4192cad8b000d8e4d5a5", "notes": [], "params": { "seconds": 1.0 @@ -89105,7 +89465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b89d38a4abb8f09746ebd9d1b6e61323", + "key": "0a3c91ca5c8da51c8841f99ce8f7d5f4", "notes": [], "params": { "forceDirect": true, @@ -89138,7 +89498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26b9bce5618c4a8f664755eeffb26243", + "key": "089f5c6d2346890a9b3cf4aec517b55b", "notes": [], "params": { "correctionVolume": 0.0, @@ -89158,7 +89518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95eb10a97107d6ff2f68e9bb5e43c0a1", + "key": "00080409d7ac154840f25ba1bc090011", "notes": [], "params": { "seconds": 1.0 @@ -89172,7 +89532,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86163cc8fbba3f7d49f580e4f0cbb6ca", + "key": "58a6188a4a0b69c0be1071396374b935", "notes": [], "params": { "forceDirect": true, @@ -89205,7 +89565,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f180e95b55477fc4bfc8b2b8ec3d19f", + "key": "ed316b7d0050ce7f71a9bc245f9e7841", "notes": [], "params": { "seconds": 0.5 @@ -89219,7 +89579,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e03019802c92e80c358a86edb102b0e7", + "key": "5d27ddc9a1d59b4816f0b8ab6cda9d13", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -89238,7 +89598,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f074eefa624b03756495bc252eea2f5", + "key": "d98fad39094a3e0af8cfa98e9edfc260", "notes": [], "params": { "seconds": 0.2 @@ -89252,7 +89612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e877c2f2f6a068ab3b814434e19c8ab", + "key": "fed0a915d2e8f56a21feb5c7ab04bce7", "notes": [], "params": { "forceDirect": false, @@ -89284,7 +89644,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "801ea1761ec6400fdad10a08f0b911e3", + "key": "dbdc0a8fa8e30ea3e0e939ddbd61f47e", "notes": [], "params": { "correctionVolume": 0.0, @@ -89304,7 +89664,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c02b114c78fea564b35573b952b71a6", + "key": "a74a5eb8cc6312cb59c1bf24b11ab86e", "notes": [], "params": { "seconds": 1.0 @@ -89318,7 +89678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64122a3756a75962d7b2aa694ca77607", + "key": "f407eeabb33d89d768873cdae63444e9", "notes": [], "params": { "pipetteId": "UUID", @@ -89334,7 +89694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffdfca7d49a4d1c521c340de1f83cafe", + "key": "550650e64f878252a75ed73366952018", "notes": [], "params": { "pipetteId": "UUID" @@ -89348,7 +89708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4be344ad7a1dd3cc103251333d73414d", + "key": "a550d63121c50bafb7677e5c8eeafe7c", "notes": [], "params": { "forceDirect": false, @@ -89380,7 +89740,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c263eaf4b3ddbd63ebf9dc79668a9663", + "key": "e6e4766e43d86b5177583b678e4bb2e2", "notes": [], "params": { "forceDirect": true, @@ -89413,7 +89773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64452801f4eab64a06294c7f614ab0c3", + "key": "70c828e36746ef2a121d142ab8835fa6", "notes": [], "params": { "correctionVolume": -8.23, @@ -89432,7 +89792,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f970ec910f72f70534381268cb3a45f", + "key": "527641c1943a9fb224c779879ec43ac1", "notes": [], "params": { "seconds": 0.2 @@ -89446,7 +89806,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6cdb5ead25282d51f76ee66e794d7bc", + "key": "26fdca201554a371483fd7b253561cae", "notes": [], "params": { "forceDirect": true, @@ -89479,7 +89839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d86a1733bef324b196fa0434c8a7b17d", + "key": "573e19d587cd76e35899f54c3870e148", "notes": [], "params": { "seconds": 0.5 @@ -89493,7 +89853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aaea05fad91ad4babd8a5e3a0313f19a", + "key": "fc2240e671f99f61889f619ba1bffd07", "notes": [], "params": { "correctionVolume": -8.676666666666666, @@ -89512,7 +89872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a331447b0be0be23c57ee6f38e3ad7ef", + "key": "543541d10a601cfff37bb19f623823b1", "notes": [], "params": { "seconds": 0.2 @@ -89526,7 +89886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48955ea75931710434d598c376c3529d", + "key": "83e5d5b5c1acdfcb1e3f961974e5f09a", "notes": [], "params": { "forceDirect": false, @@ -89558,7 +89918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f47096f8e1ebaee6d4bf2f247603857", + "key": "51c06068b7fb0d7f5e0a053aa017a25a", "notes": [], "params": { "correctionVolume": -8.23, @@ -89578,7 +89938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6f2c1dcab71c5fed58a42725e1f10e3", + "key": "5c8e46df6449b3a13bc38935dcd869cd", "notes": [], "params": { "seconds": 1.0 @@ -89592,7 +89952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4ce51a4c7b689b930c87510a6a79491", + "key": "afa4e6dcdc2be3deed015dbfdba9fbd1", "notes": [], "params": { "forceDirect": true, @@ -89625,7 +89985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36eb035a1cecdf50cd3e5de909640860", + "key": "e10a2511e895f670bfa7ecffeb393a73", "notes": [], "params": { "correctionVolume": 0.0, @@ -89645,7 +90005,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e285c307059ef6b9dd090293e662650e", + "key": "bd4588694303b5a21704b1bd947d16f8", "notes": [], "params": { "seconds": 1.0 @@ -89659,7 +90019,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "442b5c113701869b9c33e6e2b226c96e", + "key": "43bb6fbd90bf62b72c3b24c464144f9a", "notes": [], "params": { "forceDirect": true, @@ -89692,7 +90052,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18cbc4043f2410844725ad4c2fe0c42c", + "key": "a2147cbfc7cb572adf6669b79752232f", "notes": [], "params": { "seconds": 0.5 @@ -89706,7 +90066,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32e38f88f53120e17108eeb90f78aa38", + "key": "00c6d6d4b1bf7e0ffb023287fec124ee", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -89725,7 +90085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "360e1e7748a74cad5d631e6e309f3427", + "key": "7f99731167443acaf08f566c90025f9d", "notes": [], "params": { "seconds": 0.2 @@ -89739,7 +90099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e886bb90d61801fd858a797dbde5f85", + "key": "20cc2756f7bc3077123c02252a7f4572", "notes": [], "params": { "forceDirect": false, @@ -89771,7 +90131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "027f04e4c690571c4877e1f11af186ab", + "key": "bf16be85f0427e3c2458c81669b05b2b", "notes": [], "params": { "correctionVolume": 0.0, @@ -89791,7 +90151,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "76e78ed09ab737da701769c0ddfeb693", + "key": "1f81ae469dc97b2f355ac7d4549c87e4", "notes": [], "params": { "seconds": 1.0 @@ -89805,7 +90165,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3c4b78eabe141da41d48b120cbf2ccb", + "key": "5c72163429d815b3841303efd4a37533", "notes": [], "params": { "pipetteId": "UUID", @@ -89821,7 +90181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61c4b60dcc19f7b1d0b9775765f4d9af", + "key": "b523dfdbf6a78f30deed2284cc7355d0", "notes": [], "params": { "pipetteId": "UUID" @@ -89835,7 +90195,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7635ecdc8b4d4ce80793e2002f8ebdf4", + "key": "4a070c9489c0f91f8903ee871f383ccc", "notes": [], "params": { "forceDirect": false, @@ -89867,7 +90227,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aacc347dca45f527e7fbaf2b58fe5b02", + "key": "4000de65577c119480cee4d928b69f5f", "notes": [], "params": { "forceDirect": true, @@ -89900,7 +90260,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f01da1f6846c4617d79c3b51c98963f", + "key": "a5b11169f0ac0cadb7b0e7e4311d0cbf", "notes": [], "params": { "correctionVolume": -8.23, @@ -89919,7 +90279,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa38a09db71110ed766fae6c67e354a7", + "key": "0fea0d04cdf136096597ad5a81b44604", "notes": [], "params": { "seconds": 0.2 @@ -89933,7 +90293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24981f6dc99f30a45c0e2f0ab163e595", + "key": "736a783f474e90ce90f5193e9f48c279", "notes": [], "params": { "forceDirect": true, @@ -89966,7 +90326,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0049661fa549bac076b3111c96b6e488", + "key": "f6cbf31d2fba481f9729953357e346ae", "notes": [], "params": { "seconds": 0.5 @@ -89980,7 +90340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d8b4b3f12d77f3d144a9c9b2d93b105", + "key": "7278cc75fab4b08164b8fa26d568f0c8", "notes": [], "params": { "correctionVolume": -8.676666666666666, @@ -89999,7 +90359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3d75d21867478b280ca2354dcc36124", + "key": "af5de8e797121cd480c4e422f2d103a6", "notes": [], "params": { "seconds": 0.2 @@ -90013,7 +90373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbb4cacafd474209882e253d8e192e92", + "key": "8893ae224a73cb9de48ef24b3c301beb", "notes": [], "params": { "forceDirect": false, @@ -90045,7 +90405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81db052c277abea2c3df30d3456fa587", + "key": "c1a56afdf61cfb2b1b1bbc2c74e982fb", "notes": [], "params": { "correctionVolume": -8.23, @@ -90065,7 +90425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "38e2f13902339c2ad8108e8f26484846", + "key": "737a50c0ef500055c8cac217a715298c", "notes": [], "params": { "seconds": 1.0 @@ -90079,7 +90439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d0605d32b546ccc9096fb2ac719acb9", + "key": "25e1fb8a88477f6f27ea90caf0197bb2", "notes": [], "params": { "forceDirect": true, @@ -90112,7 +90472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4d46af09967904d43bcdf10a44568cc", + "key": "db1fda7b801c72ed367f3604aca91e4b", "notes": [], "params": { "correctionVolume": 0.0, @@ -90132,7 +90492,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca411f2f50710a6160b71dbfe835e2f5", + "key": "e748b868be197e2cbb2dfb22349d3079", "notes": [], "params": { "seconds": 1.0 @@ -90146,7 +90506,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f88078092ce1d83459aa502ec32d9b94", + "key": "b6ce9d2e5c1f34a23e45ffa646416210", "notes": [], "params": { "forceDirect": true, @@ -90179,7 +90539,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d149f685ceb84ccf664ff9df47690da3", + "key": "fd2cacd1069491b24ffb3a820d6d760b", "notes": [], "params": { "seconds": 0.5 @@ -90193,7 +90553,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbf8ec1c599d4a7b516a8537e07d06d1", + "key": "ba588d79d5677be027ff1cb53163e195", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -90212,7 +90572,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a25a5a807faa51725a640c61cbf8543", + "key": "70b67d04243b54fcecacb6f34bd25755", "notes": [], "params": { "seconds": 0.2 @@ -90226,7 +90586,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df06c5152554600ca0ee6c8d55506ca2", + "key": "cd5423195c7947e51bfeeb8689cba7e6", "notes": [], "params": { "forceDirect": false, @@ -90258,7 +90618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f96ee00f358b827bd9713c4619cb2b59", + "key": "6c03a6c1a810484f5b3f270d39bfc9c4", "notes": [], "params": { "correctionVolume": 0.0, @@ -90278,7 +90638,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cafdbd71be5aed1a8312c7a0c4e48169", + "key": "5c6a9e59d4748302a477da14c1a4a7e1", "notes": [], "params": { "seconds": 1.0 @@ -90292,7 +90652,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9b7351d0fce5d059eaf6bb5c06f10a4", + "key": "a9bfa45c3f857393a5eb8d6ee6d37c5b", "notes": [], "params": { "pipetteId": "UUID", @@ -90308,7 +90668,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74fdfe8333a7b3e9492f3b2d08157515", + "key": "4a22a97fd232a4a8912d06f1903a02ba", "notes": [], "params": { "pipetteId": "UUID" @@ -90322,7 +90682,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c364cb1a65b90c2387efa72924979fc2", + "key": "5b37765b7308ccbe5ab91df80f172497", "notes": [], "params": { "forceDirect": false, @@ -90354,7 +90714,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52651988818e8031c540d249af91778f", + "key": "4b7f79fed571220e6d29382d8d0ce0b0", "notes": [], "params": { "forceDirect": true, @@ -90387,7 +90747,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6423aec8949fd68871c6fc8399874bc6", + "key": "b06ec323f2d88f2d09ef30fbc8d2f728", "notes": [], "params": { "correctionVolume": -8.23, @@ -90406,7 +90766,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0628c3046e9523ce0e0ebf14fba96ff6", + "key": "c0af920476f52cde8846d76c8276c7eb", "notes": [], "params": { "seconds": 0.2 @@ -90420,7 +90780,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a3336659c45e989468fae8f84513ca5", + "key": "e636d38d0360f0dcab67f386f42dd9c2", "notes": [], "params": { "forceDirect": true, @@ -90453,7 +90813,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1131a6e5cbfdfb9965edf04d770237bf", + "key": "5642f7c2cac22fffab228aaa28679257", "notes": [], "params": { "seconds": 0.5 @@ -90467,7 +90827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "35959e1d410b72154a5406d532c8f6c0", + "key": "6ee376d926e36ef69eb3b392541f78d3", "notes": [], "params": { "correctionVolume": -8.676666666666666, @@ -90486,7 +90846,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec41347b8dfdf5f7bc3a3b8f23f6f0f0", + "key": "8ebbc058cc2996c0d4c86bffbcc5675e", "notes": [], "params": { "seconds": 0.2 @@ -90500,7 +90860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7414054fda7f54bb1c41438d80b10657", + "key": "215947511b76cfb0b01bca06c8c1f8c8", "notes": [], "params": { "forceDirect": false, @@ -90532,7 +90892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "366ce57df51a197cb11d1d8497dd1840", + "key": "909aebcf5dd7e55314d92fc80b830d74", "notes": [], "params": { "correctionVolume": -8.23, @@ -90552,7 +90912,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81c9f2f7676365cefee0ce4579633bef", + "key": "0cf6c0494e001659b4d5c2f6d4d882a2", "notes": [], "params": { "seconds": 1.0 @@ -90566,7 +90926,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4079aad8a0e2f3ffd8f8757527061434", + "key": "6a4835ad45e3d8416292a260db006af4", "notes": [], "params": { "forceDirect": true, @@ -90599,7 +90959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a748f808fce40809ad32534e0b9c26d0", + "key": "3fabf209513f133f24e6ec7b4b34fb97", "notes": [], "params": { "correctionVolume": 0.0, @@ -90619,7 +90979,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26158c50befcd6ea8efa22239a34086c", + "key": "f3cb5a4a395bbf09b891c41a2887f4d3", "notes": [], "params": { "seconds": 1.0 @@ -90633,7 +90993,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b5eb542370c53b5cf0e6aa99da6cd4c", + "key": "f396d7c2a7551186057fd406c6d8df85", "notes": [], "params": { "forceDirect": true, @@ -90666,7 +91026,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2d31136affd1bf3c072fe99ea8c8d6c", + "key": "7859aeb258dc429d7603221636671e4c", "notes": [], "params": { "seconds": 0.5 @@ -90680,7 +91040,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f056597d8a288bd7073f81eee34ae987", + "key": "3147356c85af411aff800aba1c757854", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -90699,7 +91059,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c3821d9d27d508f8ad8493c062092be", + "key": "87aae82b51b77d423213c18b369f1421", "notes": [], "params": { "seconds": 0.2 @@ -90713,7 +91073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f606b0e30d214d571b1baa78d534d8a", + "key": "0eea7269adb2c374824606cc279d6c6d", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -90742,7 +91102,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc4ce4fd811b2a77076b14f78b24501b", + "key": "5b02fbfb9b09bcb270e3008969e72b9d", "notes": [], "params": { "homeAfter": false, @@ -90757,7 +91117,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cff3c9d18fd744c01bee8db159c34a16", + "key": "7df2c444f8c8193c2616be89ede4bcac", "notes": [], "params": { "liquidClassRecord": { @@ -91120,7 +91480,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22c79680fe008e9499b6d33896452aa6", + "key": "d6ac19fb75a50928fdf623566b4e4a9b", "notes": [], "params": { "labwareIds": [ @@ -91142,7 +91502,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "12b94a77cf65bc3fe40c200c621493e1", + "key": "3709af3280eaecb03c296036bd1f3514", "notes": [], "params": { "labwareId": "UUID", @@ -91175,7 +91535,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36479d14c57b8793986ec70c80bbf2ba", + "key": "5865ba503bee5af9c6f4bab8356ff094", "notes": [], "params": { "forceDirect": false, @@ -91207,7 +91567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec47613f8a229d7554167933a66fe5e9", + "key": "5cb6897573006473a827be100489448e", "notes": [], "params": { "pipetteId": "UUID", @@ -91223,7 +91583,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65764fa8a253239f0aa666b874c408d9", + "key": "45ac7387d0199136a75b3534b4a9313b", "notes": [], "params": { "pipetteId": "UUID" @@ -91237,7 +91597,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7ce91556a58d2a845ed14737f5c1247", + "key": "d87207a818ddd132ec41cabad910998a", "notes": [], "params": { "forceDirect": false, @@ -91269,7 +91629,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11f156ac6a4b1e4661f11b3e531df10e", + "key": "24ecfa0e3b8ea349ae508437bb65871a", "notes": [], "params": { "forceDirect": true, @@ -91302,7 +91662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43c84bf987a3bb8b5c314393aa9c8005", + "key": "d7d29bb9d92e8099efe947a534f69ce0", "notes": [], "params": { "correctionVolume": -0.75, @@ -91321,7 +91681,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c3e217cce28bbf9028a4443b1a830bd", + "key": "141bd013bb81244338e645110599b2b2", "notes": [], "params": { "seconds": 1.0 @@ -91335,7 +91695,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "88aeba6949b3e3b2e532647523ab17a4", + "key": "82a7811a23809913205cea23541dd1ec", "notes": [], "params": { "forceDirect": true, @@ -91368,7 +91728,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a28540be4d0145e72ed7ec272fa3d2c7", + "key": "34ba17308aa1bdc7ece21ea1d71ef1b0", "notes": [], "params": { "forceDirect": false, @@ -91400,7 +91760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95f054d2f6720c876951e7e926e5bbc3", + "key": "736bc780605bf28a762bad5a26f0e46b", "notes": [], "params": { "forceDirect": true, @@ -91433,7 +91793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cca4cfd4635aff27ab3183bb57a0c377", + "key": "c76b4f12144f1a375e0f81c5fe77d14a", "notes": [], "params": { "correctionVolume": 0.0, @@ -91453,7 +91813,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13d178d63392c79731425276858e712e", + "key": "5e8d01b8bedbe6bfc87cd8610166315c", "notes": [], "params": { "seconds": 0.5 @@ -91467,7 +91827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55a365c88478c2491a2457b24d519cef", + "key": "a91d382dc47e6a3d3155882ab5073f8b", "notes": [], "params": { "forceDirect": true, @@ -91500,7 +91860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75db6a865711cce6dc160149abe7a7c5", + "key": "7069df880bc4c55da33d85c077b16325", "notes": [], "params": { "pipetteId": "UUID" @@ -91514,7 +91874,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be0974563189a294edc6779226e08975", + "key": "88fd932aaa0fa45465315bdec2b86152", "notes": [], "params": { "forceDirect": false, @@ -91546,7 +91906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd2c7dc154b323a27513ae274a10adce", + "key": "59be25c41bb25dc2254bcbf95b441d62", "notes": [], "params": { "pipetteId": "UUID", @@ -91562,7 +91922,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0e018bd09c2573daad35f0ab7b7fe35", + "key": "4b16747f07c5e1d92e5b344f3490cd1d", "notes": [], "params": { "pipetteId": "UUID" @@ -91576,7 +91936,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10c893bbc5bf1593e36a8d2ccc96b0b1", + "key": "2fb819d80acd27e00c52880548288dbb", "notes": [], "params": { "forceDirect": false, @@ -91608,7 +91968,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "76226fa677c911a8b8b23acebb173353", + "key": "c38850114e5ac7766b430305f0a84419", "notes": [], "params": { "forceDirect": true, @@ -91641,7 +92001,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a74ff5039981fdaa67a62a147ad6c06f", + "key": "5d7c1be77247bde34389ae7483761e3b", "notes": [], "params": { "correctionVolume": -0.75, @@ -91660,7 +92020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd1d33c42c55e6d80b708b22b2cf8675", + "key": "3e919d17e295317d924ef2cc4c097b49", "notes": [], "params": { "seconds": 1.0 @@ -91674,7 +92034,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a73dd9eea1b7258e4a240c9d6beeb264", + "key": "533e4e0f52a3e3f4ca59c7647fea52ec", "notes": [], "params": { "forceDirect": true, @@ -91707,7 +92067,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c32671b861535527c1e22312509b9641", + "key": "a329d8b06d20a061ed48d90fe1471e83", "notes": [], "params": { "forceDirect": false, @@ -91739,7 +92099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0fb9f9bbd4f0a551e3c4655ddb2bf784", + "key": "13113591d8a9d36a39a04ecc59012f90", "notes": [], "params": { "forceDirect": true, @@ -91772,7 +92132,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cda2937434e534bc48c35e6632790d8f", + "key": "23f9e954de5af931863182f4c2273f3f", "notes": [], "params": { "correctionVolume": 0.0, @@ -91792,7 +92152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7ec6cfb7a76dd814ee17cb469e33b7a", + "key": "e3c48279ebf2c10e7db950c5c900e9fa", "notes": [], "params": { "seconds": 0.5 @@ -91806,7 +92166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d82f7c9b42346e88d618f196c5326b7", + "key": "e774708c7fe19bd5dae81d9da7e211da", "notes": [], "params": { "forceDirect": true, @@ -91839,7 +92199,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5f989a5f7655665fad398a168124699", + "key": "c4212be44535f7a4b5902c884d4abe01", "notes": [], "params": { "pipetteId": "UUID" @@ -91853,7 +92213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e8bbc4c4d11c0e2820048240a2a0540", + "key": "3a8b4b91b6f7e381deacb4abc40d8455", "notes": [], "params": { "forceDirect": false, @@ -91885,7 +92245,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99e20d855f046d8abc1c7a91a06d44ec", + "key": "1a968633b4bfa3935d947bde18230fb5", "notes": [], "params": { "pipetteId": "UUID", @@ -91901,7 +92261,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5661cdefa68ecb8f6a6cb14ed410306", + "key": "c2605bc04b80731c06bc8e12624f51e6", "notes": [], "params": { "pipetteId": "UUID" @@ -91915,7 +92275,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8163656d78d7ca501ed3259cbfab557c", + "key": "78459f83d16f7be5837bfa17e4c23195", "notes": [], "params": { "forceDirect": false, @@ -91947,7 +92307,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a367e875c1a4fbf0e3d6252b00c6a1d7", + "key": "1dd038ae300db511fcecce63d2bd5225", "notes": [], "params": { "forceDirect": true, @@ -91980,7 +92340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34666c3065789051a7a4298f68a65567", + "key": "631cf768b50b61a5f5e2d6c1e3333a72", "notes": [], "params": { "correctionVolume": -0.75, @@ -91999,7 +92359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7abfb17121b03d51a8e00d5971448913", + "key": "1a6d1ce3092947c575d09ab140af4b97", "notes": [], "params": { "seconds": 1.0 @@ -92013,7 +92373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6de1032ebb58ea40db9599df3d10c465", + "key": "49309cc2f56ed931ec2f9eda8fff1d37", "notes": [], "params": { "forceDirect": true, @@ -92046,7 +92406,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7444edcfffaa0a3daa3af9cd3d2a0d5", + "key": "dce61231ab89bdf5d16bd53654244a31", "notes": [], "params": { "forceDirect": false, @@ -92078,7 +92438,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b8a66b83b5cad4ae70c63df666cc572", + "key": "a1bf402ac4389c0930f0b44b3eeeee13", "notes": [], "params": { "forceDirect": true, @@ -92111,7 +92471,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0e34157626c8c49e38551294778b12f", + "key": "c5dd25e08639ab428ccba44d39b7643f", "notes": [], "params": { "correctionVolume": 0.0, @@ -92131,7 +92491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "326bc3bbb02cf9f93610600f66b24301", + "key": "39a5521effc611df83e238ddb6b7da9d", "notes": [], "params": { "seconds": 0.5 @@ -92145,7 +92505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95dd7e8619a4058ba5d14d7fca7a826c", + "key": "7a48f4eec55d8666b652782eb931ecd5", "notes": [], "params": { "forceDirect": true, @@ -92178,7 +92538,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7dfef46b5bb4204245a32f940f21c1fb", + "key": "59fd0c26daf48b8305a395f7561e3844", "notes": [], "params": { "pipetteId": "UUID" @@ -92192,7 +92552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73dc7cbe0335a27094d50f42848a841d", + "key": "474b9d6beee6aad0c9d270aafea59c1e", "notes": [], "params": { "forceDirect": false, @@ -92224,7 +92584,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92fdb1886fad7da35fef663e202be315", + "key": "3f0915a733cbbba2e4908074861354ef", "notes": [], "params": { "pipetteId": "UUID", @@ -92240,7 +92600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f374d1ee9b4afe88cfa7b0cf4255b2e4", + "key": "5515dfd60e6de746d1948c7b046ad842", "notes": [], "params": { "pipetteId": "UUID" @@ -92254,7 +92614,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ea6901dc987dbad8e0cc9052056cb96", + "key": "e8d032adbb13bccbacfd7704eedee427", "notes": [], "params": { "forceDirect": false, @@ -92286,7 +92646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "406843ebdbf3876d9ab216ab83ea9829", + "key": "54ad3ddea6effb92ea7c2c9bec01804d", "notes": [], "params": { "forceDirect": true, @@ -92319,7 +92679,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d8bf3c661a1b504a07a36ebcfd3d1c0", + "key": "c8853996fdb460a312cc04ed023dc7ff", "notes": [], "params": { "correctionVolume": -0.75, @@ -92338,7 +92698,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3cd7837090c55006652792be12251b7a", + "key": "0619df0a3563dbb39227fedd435e64c1", "notes": [], "params": { "seconds": 1.0 @@ -92352,7 +92712,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b8939dfbe34119727e1bb1fd2fe304f7", + "key": "e6df788a02093f1a54645d9803a06ad8", "notes": [], "params": { "forceDirect": true, @@ -92385,7 +92745,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93b19ee51f23b83b470221b5e8597739", + "key": "f0931983c9dde4b161815dc4cf9bbcb1", "notes": [], "params": { "forceDirect": false, @@ -92417,7 +92777,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "774b0dce5241d5e521476df175506372", + "key": "c04fea0fa3964a3797167f1930c38285", "notes": [], "params": { "forceDirect": true, @@ -92450,7 +92810,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7bc6f92855528b3e1d5f930033ab1cc5", + "key": "e404dc6dd68f02d1dc1f86e55002c7b6", "notes": [], "params": { "correctionVolume": 0.0, @@ -92470,7 +92830,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11e33e056e3ca089ae31bd58543ad848", + "key": "fa71828507e7c7044478b34ccac91275", "notes": [], "params": { "seconds": 0.5 @@ -92484,7 +92844,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8806276470a9ca5a71e5ea563b43e1a4", + "key": "d6bce19eb05b68a558bc127858191236", "notes": [], "params": { "forceDirect": true, @@ -92517,7 +92877,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea5f11e5e309061c109ddb3e973fe7d5", + "key": "870f45d101cfbb5656fb071bb3316760", "notes": [], "params": { "pipetteId": "UUID" @@ -92531,7 +92891,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f39dd37eacf5c87c411e6696c998afc9", + "key": "aed7de5fc61240c499695a4624407cf1", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -92560,7 +92920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d120eeef33779c035df8b6078a3c629", + "key": "6c55608125a2bd8e77bb5c2b417a37a5", "notes": [], "params": { "homeAfter": false, @@ -92575,7 +92935,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7924eaeb1179acc295696183f94ed59", + "key": "079d06c956ba101e75183a86b3e57ccb", "notes": [], "params": { "liquidClassRecord": { @@ -92910,7 +93270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02e66bb7aa1fe14986801596905f4935", + "key": "6a3f6f77f021867e584705a9dd8f97db", "notes": [], "params": { "labwareIds": [ @@ -92932,7 +93292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5fbd7376aaee88da614060fa1b43fbe7", + "key": "c6d9d52d1d9358da1dd790d4b1f47d39", "notes": [], "params": { "labwareId": "UUID", @@ -92965,7 +93325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b01a65f032c148a3887c717e2099426f", + "key": "29bcba7817fd0e31e530aa181fbe996a", "notes": [], "params": { "forceDirect": false, @@ -92997,7 +93357,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bad23098cde0db10c4a6b1ef04417aaf", + "key": "045170f1b4da4c8ad48ae4514a739200", "notes": [], "params": { "pipetteId": "UUID", @@ -93013,7 +93373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ea4904ddee78182d7079a75f066c2cd", + "key": "457990a460604e53322e0504fb03fb26", "notes": [], "params": { "pipetteId": "UUID" @@ -93027,7 +93387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfbee6d6a78406f33613612d61ad514c", + "key": "7de837b36f6c932b7c641b4cf33e403a", "notes": [], "params": { "forceDirect": false, @@ -93059,7 +93419,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3498dae52042f902e4cb550075e9e9b9", + "key": "e9c75612a278424f81a61dc3303275ba", "notes": [], "params": { "forceDirect": true, @@ -93092,7 +93452,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "271a8e8a91fd132cc995df70eb78f824", + "key": "94cabdb1f8480853fd22e545104fb06e", "notes": [], "params": { "correctionVolume": 0.0, @@ -93111,7 +93471,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ee969d2a77a2831daf795bcddebc7ce", + "key": "cbc7bfe421a0c2e4f79a83a38b4d53d1", "notes": [], "params": { "seconds": 0.5 @@ -93125,7 +93485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f8d02fe33f359b9f2634deab52b0f0d", + "key": "d5ec92528cebb080fa9c65262210fa93", "notes": [], "params": { "forceDirect": true, @@ -93158,7 +93518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d3d61c2dbf86b73597255da80da0785", + "key": "750507c37537211bea1fae2e36256415", "notes": [], "params": { "correctionVolume": 0.0, @@ -93177,7 +93537,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53a32a006f5ab308bdd698898e3e554b", + "key": "20911ea4b1aeb1c03ed5c556ef413fce", "notes": [], "params": { "seconds": 0.5 @@ -93191,7 +93551,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c6a6ab5d8abacc6b2ffda8c1ca717c3", + "key": "47ce9cb93ea4c6d37a46acc9c8193d15", "notes": [], "params": { "forceDirect": false, @@ -93223,7 +93583,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3aebb2c258fd6049b6c8c00ae4a3c9fc", + "key": "40fa60e578ca2748945679361e0b43f9", "notes": [], "params": { "correctionVolume": 0.0, @@ -93243,7 +93603,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5583124c1428ab4081a71ccd7fe97fe4", + "key": "fa48ec7ceb27948667196da77fde4849", "notes": [], "params": { "forceDirect": true, @@ -93276,7 +93636,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4c29d505ee182bd60fc347bbe49f7e2", + "key": "4d9a65a986aa900b93caddc5296d8225", "notes": [], "params": { "correctionVolume": 0.0, @@ -93296,7 +93656,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "828c3a7f71020f32b5ef18a73048b2ba", + "key": "b0048e0c4460ebd5eadcaf1f2c09c557", "notes": [], "params": { "forceDirect": true, @@ -93329,7 +93689,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f00e1dbcfcaeac010fb3ba5ce642b1d", + "key": "8f478921b001f0fc184367623f545e16", "notes": [], "params": { "pipetteId": "UUID" @@ -93343,7 +93703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0df23a290abefa215b8850d7d742325c", + "key": "98b930517fb0ccc698ece9e9de7c635d", "notes": [], "params": { "correctionVolume": 0.0, @@ -93362,7 +93722,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71f45a60d0ca85c5f05ee213ac984996", + "key": "83ca7083f3fec36d9ebf27a0e8b79551", "notes": [], "params": { "seconds": 0.5 @@ -93376,7 +93736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46e28c191f151cb844b2813d4dc6573f", + "key": "518ac7b392906a0a046db3d304da6376", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -93405,7 +93765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86c4567829adf236298fc327624e7299", + "key": "4d2c8866bf152527c7f777d96c1ed4d4", "notes": [], "params": { "homeAfter": false, @@ -93420,7 +93780,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd96432b825b5958e7f40dcd6af19412", + "key": "a66a6cd7fe946cdfd465e8c0d46f9867", "notes": [], "params": { "liquidClassRecord": { @@ -93815,7 +94175,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9107a6be4ab6a72836d9fff6df1722ad", + "key": "9b7b0cfa57f2e4550b1bb7103cc416be", "notes": [], "params": { "labwareIds": [ @@ -93837,7 +94197,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "896dfcd8a674381df61ebc7dcd8a0ed7", + "key": "36c3c8ef26c8d65956535ad42127b953", "notes": [], "params": { "labwareId": "UUID", @@ -93870,7 +94230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1a0ff3a379319c92fc6bc07be19791e", + "key": "c7190a24d2f47dda9cb810109107456d", "notes": [], "params": { "forceDirect": false, @@ -93902,7 +94262,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a71264a716f282267865a28f85e53dd", + "key": "66d516353a04c3cbfe9af1736f622e10", "notes": [], "params": { "pipetteId": "UUID", @@ -93918,7 +94278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6df266a0555c4e2dd29f054c3fa4e4e5", + "key": "3ba71d846921728008a844285da7a67b", "notes": [], "params": { "pipetteId": "UUID" @@ -93932,7 +94292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e563e0b78b332fa730ea36b94140b96a", + "key": "573ccf7dbb2e15224050f3813b2e5b0f", "notes": [], "params": { "forceDirect": false, @@ -93964,7 +94324,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6308357eccc55f211fa0ec43c17784c6", + "key": "d5d9aef456fcff87e3929b4c3a2004f5", "notes": [], "params": { "forceDirect": true, @@ -93997,7 +94357,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d872c34f1068188e15613d52ce7af7a", + "key": "de9d6b2b52dfc4b40ee5a8abfecaab44", "notes": [], "params": { "correctionVolume": -28.911111111111115, @@ -94016,7 +94376,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6d6a9a0a354f4870b64839b015ce0a5", + "key": "8e067a1b911568e16058a5f90362f5dd", "notes": [], "params": { "seconds": 0.2 @@ -94030,7 +94390,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "67b311d1da535e57dc77de1f2d841422", + "key": "443cff9a97bbf8ab21a80f722e2f2a93", "notes": [], "params": { "forceDirect": true, @@ -94063,7 +94423,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98d7a47340529d5a5d043d63eef05538", + "key": "b1dedcbe8142ea9a51ae785739d30bc1", "notes": [], "params": { "seconds": 0.5 @@ -94077,7 +94437,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1244f4ffd12456e93c46c74078c954c1", + "key": "d2584f2e934efb7de7bda63c1cda96e5", "notes": [], "params": { "correctionVolume": -28.959715380405036, @@ -94096,7 +94456,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed367a0ecc11c0a96e128e92f99dda37", + "key": "b5fec6bb716e1537ce741c83445bc424", "notes": [], "params": { "seconds": 0.2 @@ -94110,7 +94470,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb82c0283f65e5a670f93337200c8a53", + "key": "b0073af96b6613282cf08ef6e2c688d8", "notes": [], "params": { "forceDirect": false, @@ -94142,7 +94502,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13f281c55b743af78a0b8daa906a74c4", + "key": "7847930da60200c3b2421f13d27fd1bb", "notes": [], "params": { "correctionVolume": -28.911111111111115, @@ -94162,7 +94522,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02ebced4a014183813cfbb1acace4b38", + "key": "465e505835b084935b18631391c3468d", "notes": [], "params": { "seconds": 1.0 @@ -94176,7 +94536,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b88d768c5b2c4c18c4b2431edb06c6f1", + "key": "4d495af4b965fbbc0ead7b3380e15e2a", "notes": [], "params": { "forceDirect": true, @@ -94209,7 +94569,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7cd0bac2e78b2f16eccb54252eee114a", + "key": "88f82b2fc371d4a1e60c7dda3fdac9e5", "notes": [], "params": { "correctionVolume": 0.0, @@ -94229,7 +94589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a36ee6857378c4683b8ae1c7263cc797", + "key": "c825c9dc3eb8ecfac17eaef060105547", "notes": [], "params": { "seconds": 1.0 @@ -94243,7 +94603,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df1d82a343cc1667cada99f8613c948c", + "key": "affbf4fae2155fcd5f23704a2915e0ab", "notes": [], "params": { "forceDirect": true, @@ -94276,7 +94636,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ff6428617fa7b9580e30aa50908bcbe", + "key": "65b28027476d76e6a810b14821dc03f4", "notes": [], "params": { "seconds": 0.5 @@ -94290,7 +94650,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ee9015fdab9566a5ef2172074a360b8", + "key": "bbdc613504560da64cd561396fff1bd4", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -94309,7 +94669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8eeca0981de40ac4a06719f51be8a76", + "key": "e6460ab61b86bec496735a09b880c978", "notes": [], "params": { "seconds": 0.2 @@ -94323,7 +94683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cdd86de663de7fdcf812a241b4cd4796", + "key": "9012bcfbcfd76de51eaf7979862c7c6a", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -94352,7 +94712,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1eee468d4e03700493f52cf430ccb717", + "key": "528e45cac110a1fa89df8891c556737f", "notes": [], "params": { "homeAfter": false, @@ -94367,7 +94727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b2ad76c832ff80cb833c6faaa9ff2cc", + "key": "3e78cc595b864975e0a340a196342d88", "notes": [], "params": { "liquidClassRecord": { @@ -94730,7 +95090,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e812bcb7f3fdedc417f9941c6432150", + "key": "2b2984cf1d459a60c46d2102e60c53e2", "notes": [], "params": { "labwareIds": [ @@ -94752,7 +95112,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a352e26029906ea4ca2d7f5b06c592cb", + "key": "b29a289b23db0d4722f1807f432743ce", "notes": [], "params": { "labwareId": "UUID", @@ -94785,7 +95145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f1c7d9f9c5f73215dddbbc8ac26c773", + "key": "8d7f25e439d156f6010558c62c5559cc", "notes": [], "params": { "forceDirect": false, @@ -94817,7 +95177,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "320f1c0cc3d471eed760c6e77906be30", + "key": "9bd624a0cabaf879b5ad67aa00612964", "notes": [], "params": { "pipetteId": "UUID", @@ -94833,7 +95193,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "971e2f533d74e5b8deb01793b94ac550", + "key": "574630ee141277b773e44b2cb4a2dab5", "notes": [], "params": { "pipetteId": "UUID" @@ -94847,7 +95207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9125a5cf790452154edb6c7eb79219cb", + "key": "7b23f76c7b5fb1d1f8cd1ba8023841d4", "notes": [], "params": { "forceDirect": false, @@ -94879,7 +95239,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "729e5e2f4fa77abc6d22447f6ca211b1", + "key": "d04b758082c0568f51391a424f26a10c", "notes": [], "params": { "forceDirect": true, @@ -94912,7 +95272,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3584eee40b50f684dfb9bf4da931eef0", + "key": "1ad9f7b86fa4b580bf3e3cfd2fdf626a", "notes": [], "params": { "correctionVolume": 10.655555555555557, @@ -94931,7 +95291,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "757d8e0c218f6d3ba4d8cb8492381e00", + "key": "2b70cbe34b550df55265d76d08db4cfe", "notes": [], "params": { "seconds": 0.7 @@ -94945,7 +95305,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2884e0579f5f0d21c26466e9bf9231be", + "key": "beb3aace97d18f5dcb4410067850d6e5", "notes": [], "params": { "forceDirect": true, @@ -94978,7 +95338,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1187dd560207a5aeb37917b0c8e0bf98", + "key": "15fc912a99dd8377ac522791e914a531", "notes": [], "params": { "forceDirect": false, @@ -95010,7 +95370,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c3c692ef2e635bd8eee61d7659b52f8a", + "key": "4d97e3652cae27afaf9caf3bb6ee9f49", "notes": [], "params": { "forceDirect": true, @@ -95043,7 +95403,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9eb1d0562d93a9233920004d70b56624", + "key": "936164716af8c1cf5c4db2c2d01e5e49", "notes": [], "params": { "correctionVolume": 0.0, @@ -95063,7 +95423,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6bfb98674a3265f8f717902349b0e3e3", + "key": "447a7d83fe6b2047fc215f14d00630da", "notes": [], "params": { "seconds": 0.5 @@ -95077,7 +95437,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c40c0d8b169e8bc2ba50799f10bc82ba", + "key": "619a2b5b22721ad973e503d49755baf1", "notes": [], "params": { "forceDirect": true, @@ -95110,7 +95470,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2f1a8febe0312daf20c41ad5e41a0fc", + "key": "6500e2d1f6e89eb30f56951db0dc9be8", "notes": [], "params": { "pipetteId": "UUID" @@ -95124,7 +95484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "865486afae7ccea109dc336c2a0e079e", + "key": "f36b4e66bc0e9eb4e5d48c7c66d6a017", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -95153,7 +95513,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b68ba82431ae4901d79c8b9104f63616", + "key": "f9a9d914811ba9b842bd1b3699be2744", "notes": [], "params": { "homeAfter": false, @@ -95168,7 +95528,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "261c6637b1ee9f9803a4801f8768f2f2", + "key": "f7cdc652cf0dec66f7fa86345cc6c213", "notes": [], "params": { "liquidClassRecord": { @@ -95503,7 +95863,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "789eaad3d06cde21e32d7ee74f4915a7", + "key": "85266a8b356d112e5c901214c4cbfdb0", "notes": [], "params": { "labwareIds": [ @@ -95525,7 +95885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "022aeab20994aee6e16f2b65252a2d71", + "key": "e0cd48831186e5d126164ae0dfb121bf", "notes": [], "params": { "labwareId": "UUID", @@ -95558,7 +95918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a4be93fd571cc453feb3217d7f47cf9", + "key": "ac175da105bea211cb1e596ad726af56", "notes": [], "params": { "forceDirect": false, @@ -95590,7 +95950,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c71df14932f722f074829ca104f7bc5c", + "key": "6bd39a33ff0f8a801b898ef59b027d09", "notes": [], "params": { "pipetteId": "UUID", @@ -95606,7 +95966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8fa3b0a96b584225242ee084e8e14088", + "key": "a2c54dfd273050d90bca92d866d4039d", "notes": [], "params": { "pipetteId": "UUID" @@ -95620,7 +95980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "535a79493124e9f69bc5a93a2631df2b", + "key": "b75b34364a39240e46d0fc57f0508db4", "notes": [], "params": { "forceDirect": false, @@ -95652,7 +96012,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e00d0ff0206d6422810e79a715e0a5ba", + "key": "22a6619ec17ac71d67af3e6b737abfa1", "notes": [], "params": { "forceDirect": true, @@ -95685,7 +96045,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fffbcf35dd89aca87fb146811d970c00", + "key": "a59b2fc7fc3359aa5321b82932997af3", "notes": [], "params": { "correctionVolume": 0.0, @@ -95704,7 +96064,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a57f7d4432ede58cf577039a8c061df8", + "key": "d12b9ab632c5050ce60224bd065d64f9", "notes": [], "params": { "seconds": 0.5 @@ -95718,7 +96078,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d94ab56e0b657162c7cdc7de8bc084de", + "key": "c63b80c721f57b4766fd3c973f41cc89", "notes": [], "params": { "forceDirect": true, @@ -95751,7 +96111,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "035537e0db23b9a49401c4d57662bc4e", + "key": "1c6b66d4e97a880a79d017281d88b274", "notes": [], "params": { "correctionVolume": 0.0, @@ -95770,7 +96130,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "614db3b5b04875097a3a6339709e498b", + "key": "4a28e0b6e2e3357a46e7604e7d63c932", "notes": [], "params": { "seconds": 0.5 @@ -95784,7 +96144,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "188715ca6e5bf072dd3b85936735ab1f", + "key": "24524839376fbeefd196bcb5f20bc6b7", "notes": [], "params": { "forceDirect": false, @@ -95816,7 +96176,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "165cf9d6c510e15da0ae2aa46ecd9812", + "key": "a20fa8dafc3119ac43561cc60c753809", "notes": [], "params": { "correctionVolume": 0.0, @@ -95836,7 +96196,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfbfa7b94088e3f170baa69ecf7e83fc", + "key": "d8a5a40e817848648570f16646e2dcc9", "notes": [], "params": { "forceDirect": true, @@ -95869,7 +96229,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb4e31e90e70df7bf358ea470214ca12", + "key": "7a648663df04453c93ef8ccfbe4f63ff", "notes": [], "params": { "correctionVolume": 0.0, @@ -95889,7 +96249,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac93205cf559bdafdfb852ba9ede0d52", + "key": "571163f470fd5f758c0b5d93e074f947", "notes": [], "params": { "forceDirect": true, @@ -95922,7 +96282,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b0813f0f861bb50816d4e939db7e622", + "key": "5a7381bd6ab313a7af9dcb4f405405e4", "notes": [], "params": { "pipetteId": "UUID" @@ -95936,7 +96296,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b49b839daa37ecaf84cb2cf1dcdb9d18", + "key": "e63b2d4d5091d5b3266e089412c63a4a", "notes": [], "params": { "correctionVolume": 0.0, @@ -95955,7 +96315,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "286a904ef44d2abfe0c962ed0289b846", + "key": "9634333d8aa17f8a28f011a230a430b0", "notes": [], "params": { "seconds": 0.5 @@ -95969,7 +96329,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94d75ae1f4155cb0e662bdd91add1877", + "key": "986cc663448074590d769680ed082020", "notes": [], "params": { "forceDirect": false, @@ -96001,7 +96361,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f8243fef5bc9c6aeb19fedc734e1b3b", + "key": "7040c43e91739abd2c31c35aba24ea29", "notes": [], "params": { "correctionVolume": 0.0, @@ -96021,7 +96381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18b71d1b8da9e661e1e52c14de2ad41e", + "key": "c1bd38d5aab7d5bb45e1dc84f5845c4c", "notes": [], "params": { "pipetteId": "UUID", @@ -96037,7 +96397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97065e69b08c902610cfbd01946ff454", + "key": "9f7e8411966a4c1f8b2a62aa78c6dcc2", "notes": [], "params": { "pipetteId": "UUID" @@ -96051,7 +96411,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92275cc27578ad4e81b2305ca06d5456", + "key": "6c6b4043fbf9f0b75c03340d0c21a5f3", "notes": [], "params": { "forceDirect": false, @@ -96083,7 +96443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c980c1da03b22221031d9db8de417c13", + "key": "822a2f2f32312a275d2b8d62614791ae", "notes": [], "params": { "forceDirect": true, @@ -96116,7 +96476,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6196e2a75eba0b46fd535f49c8b993fc", + "key": "3cd795d9b9e27ff5e061b3438fc0b359", "notes": [], "params": { "correctionVolume": 0.0, @@ -96135,7 +96495,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f33a661722f40952ee692b86a167d456", + "key": "4e861db387790943343b73c3e8450b3a", "notes": [], "params": { "seconds": 0.5 @@ -96149,7 +96509,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f20a3229383c7f08a4ab514ae1b3bfbd", + "key": "7102db99abea2e06186bc89e73c2e190", "notes": [], "params": { "forceDirect": true, @@ -96182,7 +96542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60aa28be84cbf650a5780ac54ecd2ece", + "key": "ee1a6122d079050d864369ce3823f848", "notes": [], "params": { "correctionVolume": 0.0, @@ -96201,7 +96561,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bd707cbc6e0cf454ceca823fcd7f123", + "key": "2c1863d5e9ab5d439d57c4ab8eb220df", "notes": [], "params": { "seconds": 0.5 @@ -96215,7 +96575,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6c54368692f2f870b63bb9f97e62e28", + "key": "20cb1efbac7470b01ffda4d426570bba", "notes": [], "params": { "forceDirect": false, @@ -96247,7 +96607,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0995b33e88ef36757f78e176acc85a5f", + "key": "7ffbb3bc8e9676bb0552e07ec39050e8", "notes": [], "params": { "correctionVolume": 0.0, @@ -96267,7 +96627,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5fa723eaf14f574cc08228bc9f940a1d", + "key": "60c9b9274ffb9319b64d51b7e55399fd", "notes": [], "params": { "forceDirect": true, @@ -96300,7 +96660,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96c0970f3a2a012b7ef6d8c79d5557e9", + "key": "8baa4e43c17c18e2b36d3de256353ee8", "notes": [], "params": { "correctionVolume": 0.0, @@ -96320,7 +96680,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0930a9032b4a3c6c9b90444ca0a91ea", + "key": "6f0508fa5a47d8d136d9e3ee443fd347", "notes": [], "params": { "forceDirect": true, @@ -96353,7 +96713,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "970f86a78ee991287b0161c379ad3c29", + "key": "07fb4f478f0cd116ef367963cfddb67a", "notes": [], "params": { "pipetteId": "UUID" @@ -96367,7 +96727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5c5061884eb4b576523221f6bbc3850", + "key": "7da9514fe44ab2337589d098014bc61f", "notes": [], "params": { "correctionVolume": 0.0, @@ -96386,7 +96746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c69ca20ccb63ff7a8f7bd47e41a23a7", + "key": "a0af64dc69bb2c7e9022fce9c1871461", "notes": [], "params": { "seconds": 0.5 @@ -96400,7 +96760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8007710921ab3bc72a05bd1df4634cf6", + "key": "e8d7fd08c1856c1867d6d6fb30daa961", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -96429,7 +96789,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d1fa062ded04b7e119cc9487bb19e83", + "key": "a315bdc85672732f36576b4e3bc9c7eb", "notes": [], "params": { "homeAfter": false, @@ -96444,7 +96804,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57f45918ac58b7e3677d8ead087961b8", + "key": "1c7863b790d6a5cd0a89939530d1c78f", "notes": [], "params": { "liquidClassRecord": { @@ -96839,7 +97199,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf167ccabe7fa3f67cbf37a5a884e3cb", + "key": "57b3e4d3ea02aaf00734d0d008499f5d", "notes": [], "params": { "labwareIds": [ @@ -96861,7 +97221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aaa452cce9372fdab39202a5cdc9e83f", + "key": "35c8f18db7081bf27ec94892db28be62", "notes": [], "params": { "labwareId": "UUID", @@ -96894,7 +97254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a362ed1e537eb04c70d71bb80e778bd", + "key": "7e05d6143c9314318183736c54363847", "notes": [], "params": { "forceDirect": false, @@ -96926,7 +97286,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f173946143b2cd8791d9c5bca958e9c", + "key": "b89198d4d91ed6da24dd23def7c03385", "notes": [], "params": { "pipetteId": "UUID", @@ -96942,7 +97302,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0f071901d5f141419b2f216605e32b2", + "key": "e421351a3543f9e4f207971a52ad5c6c", "notes": [], "params": { "pipetteId": "UUID" @@ -96956,7 +97316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a13ac791258931c01bf393896f2befc", + "key": "f30f2478b8b95d6f12f2359c1c2b46c4", "notes": [], "params": { "forceDirect": false, @@ -96988,7 +97348,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49e4888f709d27925e6c51c39e96b8ba", + "key": "284d1f55f6ab6eb8e9e9d5c55941d86d", "notes": [], "params": { "forceDirect": true, @@ -97021,7 +97381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2f5d2fa623a54d7aa1730b4e67d7c19", + "key": "06332d2a0b3b8d8a783d7df510ed48a8", "notes": [], "params": { "correctionVolume": -25.622222222222224, @@ -97040,7 +97400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "12739cc256059c50b7a9d304f1e51be9", + "key": "c559dbf806125f80cd556b60cf464b02", "notes": [], "params": { "seconds": 0.2 @@ -97054,7 +97414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2489546c6c58bcc4499ccd2f3aecce7c", + "key": "71cf9a960aee7d11ebfd919dd011b69a", "notes": [], "params": { "forceDirect": true, @@ -97087,7 +97447,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d914ab4dfa36cc22791af96733c7c42", + "key": "3aa1359bb3549f07d45f9f58ab685d26", "notes": [], "params": { "seconds": 0.5 @@ -97101,7 +97461,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa924ad1c589ea618c864c65e3e3d153", + "key": "1d25783cee5a1a6831c765f2ac464d4a", "notes": [], "params": { "correctionVolume": -25.719430760810074, @@ -97120,7 +97480,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5e940d799f45aca1739d392d635610a", + "key": "67c0a6696acdf7ee8846040641cc650e", "notes": [], "params": { "seconds": 0.2 @@ -97134,7 +97494,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4284e04ce40dda69c41916452b34c544", + "key": "3b5e697f3514ac8512a7b7b759b973bc", "notes": [], "params": { "forceDirect": false, @@ -97166,7 +97526,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f98b03f2daa089bc21e7ee455fd14ce6", + "key": "d05d08c717fba23d941cfb3237199abf", "notes": [], "params": { "correctionVolume": -25.622222222222224, @@ -97186,7 +97546,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7091ae6b72fab9b8795c47217f085f4", + "key": "050c9b89ce0aa7bc32a21beeaba0491f", "notes": [], "params": { "seconds": 1.0 @@ -97200,7 +97560,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f7cc7d97a1f98161228420e2855ce59", + "key": "5c02b9b146e83012eb582edd24f4a22d", "notes": [], "params": { "forceDirect": true, @@ -97233,7 +97593,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d99415e94f065456c882b491192e742f", + "key": "bc7f2ebc19b0ac0842e4f5dc58f89dab", "notes": [], "params": { "correctionVolume": 0.0, @@ -97253,7 +97613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "283ec993225f44861dede16a7736766d", + "key": "d9868d3b621f3db9a215b40ac4dddb2b", "notes": [], "params": { "seconds": 1.0 @@ -97267,7 +97627,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "343832ee38b5e54f4ac644dee3324f18", + "key": "f5e016d1fe458ed49a61c0b7583516fa", "notes": [], "params": { "forceDirect": true, @@ -97300,7 +97660,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "618adc58d6d7c6708ffad6264f450b29", + "key": "c5c082a238231924f20d6d074d94dabe", "notes": [], "params": { "seconds": 0.5 @@ -97314,7 +97674,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0db33e245473eaed9093deb96992fd02", + "key": "6aab377f70ebe8ba499490d9fc1cdd07", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -97333,7 +97693,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bcf8c05ee6af9dd727578d9dbd9a02d", + "key": "ba4867e34c1660417d1f747c7beb3c6b", "notes": [], "params": { "seconds": 0.2 @@ -97347,7 +97707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7e6772ed0c3fffe9b893466795f0ffb", + "key": "4f7bb078fbfdf9897175b196a958dfa6", "notes": [], "params": { "forceDirect": false, @@ -97379,7 +97739,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89a07c7e9f873840a00a5daefb5b19d8", + "key": "86fcd4478af2a7961d0b7766ac6eaac3", "notes": [], "params": { "correctionVolume": 0.0, @@ -97399,7 +97759,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf9f80d2df62c698882e5fa3a229fd9c", + "key": "363e8e656a11716331b55da17a8e0a7d", "notes": [], "params": { "seconds": 1.0 @@ -97413,7 +97773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c802e1055c6e0436ff77d03102fab095", + "key": "831fec1ceb1357f738b6759559d20f45", "notes": [], "params": { "pipetteId": "UUID", @@ -97429,7 +97789,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e7aa845f5d8962444674c41a7bfa952", + "key": "d66c8326c1903910b134ccd6988b2eb7", "notes": [], "params": { "pipetteId": "UUID" @@ -97443,7 +97803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c88880d7233aec820668615cbf1f32b", + "key": "0ce9511f7a174b2cd18790bb168c6021", "notes": [], "params": { "forceDirect": false, @@ -97475,7 +97835,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94741385470c54f752105dae9b17f13f", + "key": "8b5423e97cd4eb8c722b38930b372c72", "notes": [], "params": { "forceDirect": true, @@ -97508,7 +97868,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7ad461bcd1a771eb30c58761b5fb485", + "key": "60d1212b1989747c2eb18a8cfd7114e7", "notes": [], "params": { "correctionVolume": -25.622222222222224, @@ -97527,7 +97887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a3667b89185ec1b541327e7ec392b76", + "key": "ced9e8ce025b35bb7df18cc3e8bbf1f6", "notes": [], "params": { "seconds": 0.2 @@ -97541,7 +97901,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72013fd6fe75ee17fc39467509949329", + "key": "f02e9b4755f8356db487e938aeea5bd4", "notes": [], "params": { "forceDirect": true, @@ -97574,7 +97934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e04f24f7d402a5cc9b099751b64f8a72", + "key": "d3070961c30d8e3c2a27a80ad4a617d5", "notes": [], "params": { "seconds": 0.5 @@ -97588,7 +97948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1c9af43686a5bd0ead0436363f308b8", + "key": "9a6d344c9bf7f7c95441788a1ebb2810", "notes": [], "params": { "correctionVolume": -25.719430760810074, @@ -97607,7 +97967,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b62f2ea9c9255d3c63ff5b78442a53f2", + "key": "62fc3b609ce671e0997349f79dc2694e", "notes": [], "params": { "seconds": 0.2 @@ -97621,7 +97981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff9221593058eb2ae5d206b69d7e3f7d", + "key": "6d7ad4d155cf96d1ad9edd3c16e4c4f8", "notes": [], "params": { "forceDirect": false, @@ -97653,7 +98013,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a3604b3e6be7eb9cbb5a9f48c756284", + "key": "a87864ffa72b33a3b37d4b80ce91f29e", "notes": [], "params": { "correctionVolume": -25.622222222222224, @@ -97673,7 +98033,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd8a5f2534bc4b7b1a4d053fad6e9b32", + "key": "c0ba7bc0d8ecba04250717953a2de0cc", "notes": [], "params": { "seconds": 1.0 @@ -97687,7 +98047,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f4bd8cb8848f503404e853cd8398579", + "key": "f2508baf6ddaeba0d07d9288998b2926", "notes": [], "params": { "forceDirect": true, @@ -97720,7 +98080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc64e46a68e7f89ecf7a6a4bcc2b787b", + "key": "022cb4f51c3ea3507b4bc5ddb7491ffc", "notes": [], "params": { "correctionVolume": 0.0, @@ -97740,7 +98100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b29fbc7df8671f16ed63cfab61ead9e7", + "key": "0d2d0b471141f2ececaf97bc803f9cc6", "notes": [], "params": { "seconds": 1.0 @@ -97754,7 +98114,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a7a48d4e67ee62349b25470e348b9ce", + "key": "c93332790f9d9accce53862c708105e7", "notes": [], "params": { "forceDirect": true, @@ -97787,7 +98147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d0cb4ad90c948b97ffb8d93af2e7308", + "key": "9c0ffc1afe1106307284a253d9d856e8", "notes": [], "params": { "seconds": 0.5 @@ -97801,7 +98161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8af128c88693dfa9e7f5c1653da0d9ed", + "key": "7a6b277e9f2703266e213ce300bbb7a7", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -97820,7 +98180,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bce33729f7cbb8f4e495901740398e88", + "key": "efb2605eef910b3de48231bd883c0a29", "notes": [], "params": { "seconds": 0.2 @@ -97834,7 +98194,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a65b40c99ff80a66a0f1bb9c1b5a794", + "key": "706880fa79c615cce1f667a89287a756", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -97863,7 +98223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "00a152415d42f2f8d6a3a2feb5cb939d", + "key": "7e0f52be5e3482659067a1951ae992a4", "notes": [], "params": { "homeAfter": false, @@ -97878,7 +98238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6a54099f89aaa8d65a9866615cf580d", + "key": "ac3d6e121e4d3a6f41b29cb4a2b51046", "notes": [], "params": { "liquidClassRecord": { @@ -98241,7 +98601,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "984e0b2543ffb47c559a9a590f3f270e", + "key": "d6096608f49290fa4124ff69137516c3", "notes": [], "params": { "labwareIds": [ @@ -98263,7 +98623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be53ba0f6e63172a11960540d1afd83f", + "key": "c7e5959e2ced34f8665edfc392a96f2a", "notes": [], "params": { "labwareId": "UUID", @@ -98296,7 +98656,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95d35817d2238b0f513e98edcc74188b", + "key": "af24d153d7c14a39c69dfb72d9f6ec60", "notes": [], "params": { "forceDirect": false, @@ -98328,7 +98688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f51a8243b0c1fa5974a38f7e786509cd", + "key": "07b5c168701f36e3016d1f3679aab873", "notes": [], "params": { "pipetteId": "UUID", @@ -98344,7 +98704,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd73f8c0681595d5bbf84e8ca1711c3e", + "key": "21d911fee083c1d9abf31c2ea365531c", "notes": [], "params": { "pipetteId": "UUID" @@ -98358,7 +98718,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22b00ee2aa348727f91e1996b9148361", + "key": "1de5cca07d56096fd7059c867733a989", "notes": [], "params": { "forceDirect": false, @@ -98390,7 +98750,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dd85cdbd9d61fc7bf4d2c8f9a4fede7", + "key": "4008f9778fbfb397df7ef837a255f157", "notes": [], "params": { "forceDirect": true, @@ -98423,7 +98783,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62254380c374fe3fc01bacddc8db076c", + "key": "3fd730eff43eae26b81c3b26787cfa46", "notes": [], "params": { "correctionVolume": 9.311111111111112, @@ -98442,7 +98802,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f529e7c33276ae3687d4bc1aed75a775", + "key": "b52b3191ad57406dd40129d497b94e86", "notes": [], "params": { "seconds": 0.7 @@ -98456,7 +98816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb2a51da5c87a5cdb248b2b8d497d9cb", + "key": "b527834d2e3e08f23af82e7747a9cb73", "notes": [], "params": { "forceDirect": true, @@ -98489,7 +98849,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7574dbbb9d517df7123034fa5fec555c", + "key": "5106f44b53f9b8b3941cd1b583101d3a", "notes": [], "params": { "forceDirect": false, @@ -98521,7 +98881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89992c47a6cd0eb410aabfd2f58c5d60", + "key": "e0be03027f6bb648f00820df6d057614", "notes": [], "params": { "forceDirect": true, @@ -98554,7 +98914,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10ef2508d510c12ec17676e75657c491", + "key": "eb6d66dec852bdb726f0dd0a6d6c793a", "notes": [], "params": { "correctionVolume": 0.0, @@ -98574,7 +98934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bca0ada56ae249d62da3d534aa3c3957", + "key": "b2b25ba6464669c48c613330fb9ebc26", "notes": [], "params": { "seconds": 0.5 @@ -98588,7 +98948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e8494db9277fa9d45e5dc44fe155145", + "key": "8a3bdcf0acc43ad03701e9191d901b4a", "notes": [], "params": { "forceDirect": true, @@ -98621,7 +98981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "931e37cd1e445a727dd600faa7786170", + "key": "660cc41bf6cfb24c5c096eb93639af2c", "notes": [], "params": { "pipetteId": "UUID" @@ -98635,7 +98995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d19c424bc0d1fe977a25bc185677c34", + "key": "ecca8037531ab3e310fb77853f53b81b", "notes": [], "params": { "forceDirect": false, @@ -98667,7 +99027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84dcb435eccd02a247d0e03d91c1acf7", + "key": "326a82f662b4a96f76c416ac3a11becb", "notes": [], "params": { "pipetteId": "UUID", @@ -98683,7 +99043,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba0a50aa4168b600b7a16c4869ba0ec2", + "key": "ca0832616252ba08263f06ec7cd1ee65", "notes": [], "params": { "pipetteId": "UUID" @@ -98697,7 +99057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfcdc78ae21c840553171c6b9418d8d6", + "key": "0f4215b8de75e2ab7419025606886fd8", "notes": [], "params": { "forceDirect": false, @@ -98729,7 +99089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d8cef45c535ada2f9aea7d7d7f7965d0", + "key": "0bb759b0ad8ee9c2028a2b4bc490a471", "notes": [], "params": { "forceDirect": true, @@ -98762,7 +99122,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "654d23b0a0394afbf8d572ef2072a88f", + "key": "eb0f01fa4897dde015973c49fcc647cc", "notes": [], "params": { "correctionVolume": 9.311111111111112, @@ -98781,7 +99141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6deaeefc94d1adbd934285b4cac068dd", + "key": "e7d7302d09e881d4c7d84dddbf06e529", "notes": [], "params": { "seconds": 0.7 @@ -98795,7 +99155,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "feb80168c22bde7474556f04a052abf0", + "key": "a0ddc5c9e55511f94cb3f2114ff2e386", "notes": [], "params": { "forceDirect": true, @@ -98828,7 +99188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01d559312a331c3d4bb6ba0452e4efa6", + "key": "294e841428f019d9a9991ab13f21dae3", "notes": [], "params": { "forceDirect": false, @@ -98860,7 +99220,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a98200b230a87a2cc88311527195fde", + "key": "46916d696eb247bf7bda10f4b86bc7db", "notes": [], "params": { "forceDirect": true, @@ -98893,7 +99253,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89e74bac3e97b028e30c1170e371ec79", + "key": "f7b3a15f9a0ee4cba93179832fa6ee22", "notes": [], "params": { "correctionVolume": 0.0, @@ -98913,7 +99273,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d7146c3011cbd5f70131cc3640f56e2", + "key": "4d80a055ca1e0d6dd5386bf7c678e684", "notes": [], "params": { "seconds": 0.5 @@ -98927,7 +99287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "111d3e4f94cf5cabebab021a8745e9d4", + "key": "f226bab4e5f7a3185c358f8056018443", "notes": [], "params": { "forceDirect": true, @@ -98960,7 +99320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba167ed49b673e505bce5ebc62be9684", + "key": "81e584692f9d62fc6ed9afd18c71ad44", "notes": [], "params": { "pipetteId": "UUID" @@ -98974,7 +99334,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6b733b541d08e9447a460f27227ec78", + "key": "5e26da7959d6a60d0c43ab8ccd53b94a", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -99003,7 +99363,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f793056b0ced1d8c5894142f627be4e", + "key": "9a60fe73d2e4ce86aa792c86acf8760b", "notes": [], "params": { "homeAfter": false, @@ -99018,7 +99378,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e168c44c673731886743da8ee4d22f6c", + "key": "1d4faf18f23b4822b78e5bc47788cdca", "notes": [], "params": { "liquidClassRecord": { @@ -99353,7 +99713,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b5e37bda4eab300271e0e80baaf5d30", + "key": "9cc95ead6673394b7f24615aabe2fca5", "notes": [], "params": { "labwareIds": [ @@ -99375,7 +99735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5108bf90e7389033f6adcb3c39e48a56", + "key": "e5a95abe57ebe2326938c84bbefd56fa", "notes": [], "params": { "labwareId": "UUID", @@ -99408,7 +99768,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "945fe46e85c098515e212f3170792fa3", + "key": "56875341794335be2fbbae264df4b9c7", "notes": [], "params": { "forceDirect": false, @@ -99440,7 +99800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dbb61caafa948792ae76e729303110d", + "key": "fe04679ecf50a2fa5661f2f9e8fd884c", "notes": [], "params": { "pipetteId": "UUID", @@ -99456,7 +99816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "959b10be17e3f1334e49756e1e247215", + "key": "fe1561f5db512528f364b31a0faf1b3b", "notes": [], "params": { "pipetteId": "UUID" @@ -99470,7 +99830,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a077ba2039b200c5a60e4446b98a3d3", + "key": "91b86d245d5a1c256a097bdfe57a833d", "notes": [], "params": { "forceDirect": false, @@ -99502,7 +99862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0cc1931cc9b6e8b95e89e81603bddf2c", + "key": "f8f076caf0bd530f5e2024fde2872fe4", "notes": [], "params": { "forceDirect": true, @@ -99535,7 +99895,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c643377a7fd6c4be1bf4c859dfabc3ef", + "key": "78ee608e81382a2067d03f9f6b10cee7", "notes": [], "params": { "correctionVolume": 0.0, @@ -99554,7 +99914,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d14763672097bb8ede083926ee2bfc26", + "key": "dffdcba338abf0ee7b252465d896c225", "notes": [], "params": { "seconds": 0.5 @@ -99568,7 +99928,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2c9623261c5b504253b678fabdf35f8", + "key": "d0bf2d7d7d886df6d662aac3639f69d9", "notes": [], "params": { "forceDirect": true, @@ -99601,7 +99961,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd7c8e64e267a0a8bf2b7a2b04eaed9b", + "key": "ff5031c2af9eff09b9481b8822315ac8", "notes": [], "params": { "correctionVolume": 0.0, @@ -99620,7 +99980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2696f271f0f66db7467eec68bfa23bfc", + "key": "711ad3d867bbd91192061e7fb11c174d", "notes": [], "params": { "seconds": 0.5 @@ -99634,7 +99994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "548f4d339d8fa86708f7bcfaebad5cd6", + "key": "2ac171449d0549d194432f15c969eb8e", "notes": [], "params": { "forceDirect": false, @@ -99666,7 +100026,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbca8d27dee3f8069ccba98312156d51", + "key": "65d3b91be6c1103e3832166204a1343f", "notes": [], "params": { "correctionVolume": 0.0, @@ -99686,7 +100046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c8a0861d4d675f88209518156b60ccb", + "key": "239772bb1cad23f00c2f34bcf73ef281", "notes": [], "params": { "forceDirect": true, @@ -99719,7 +100079,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "779af04cf52c1d3f25a19081295ad828", + "key": "c27fd18254498ca2b5639263d31d63d5", "notes": [], "params": { "correctionVolume": 0.0, @@ -99739,7 +100099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe83e9100bcae3e9204ac021fe1b801c", + "key": "142a614da328e3f2b145376501069aae", "notes": [], "params": { "forceDirect": true, @@ -99772,7 +100132,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79eb29bc76c463112784493e1fb3c3a0", + "key": "b49faba9a51d36c910dc3dfee0fbc787", "notes": [], "params": { "pipetteId": "UUID" @@ -99786,7 +100146,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3ca262eb8bbc9ec6a0085b56136ba81", + "key": "7de4e96192948d183730817bfda52cd3", "notes": [], "params": { "correctionVolume": 0.0, @@ -99805,7 +100165,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e829baa60d1167998bbe4cf50207858", + "key": "5c9b319aef0983f692a645e31999722b", "notes": [], "params": { "seconds": 0.5 @@ -99819,7 +100179,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2aa73342de6151f810919fd63133f96", + "key": "c8788837bc85b54f6a45b09ca181a0dc", "notes": [], "params": { "forceDirect": false, @@ -99851,7 +100211,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "de33acbc993c3643f65e9f931af88449", + "key": "b6675710331d23c339df66114d017b64", "notes": [], "params": { "correctionVolume": 0.0, @@ -99871,7 +100231,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4c9553b7610745b6728cba09e6d49d7", + "key": "54336bababdc68d37e63466d67332345", "notes": [], "params": { "pipetteId": "UUID", @@ -99887,7 +100247,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f2ab871d94867befb1dd99fd202cd56", + "key": "e1f93645ddd71c7de833fe96c56e85d2", "notes": [], "params": { "pipetteId": "UUID" @@ -99901,7 +100261,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bbd2054f1bec46bd1e23253dee2cb7bc", + "key": "aada1cab735b063b11265e4f412093a2", "notes": [], "params": { "forceDirect": false, @@ -99933,7 +100293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5fbea11b88c7761eb03aa8ea67fae103", + "key": "18c59dae37a3ba4aa041355c83ef00f7", "notes": [], "params": { "forceDirect": true, @@ -99966,7 +100326,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc27aa0a8be834938380bcf763b9ad5b", + "key": "8652aef938819fa140b84a31a3bc73e4", "notes": [], "params": { "correctionVolume": 0.0, @@ -99985,7 +100345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d26c3b7e0672dd26eda2bfc1b96c46e5", + "key": "4d181734b5b8f16a2ca9d32e7aaabb9e", "notes": [], "params": { "seconds": 0.5 @@ -99999,7 +100359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dacff41bab2dbcf4026728e73a9adf77", + "key": "982e3c84444d7f15be3bd4d1cd551e33", "notes": [], "params": { "forceDirect": true, @@ -100032,7 +100392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf4a8ffaa8708d405a1f1c19162bd958", + "key": "f0faf2979388f338b616e111aa9a1350", "notes": [], "params": { "correctionVolume": 0.0, @@ -100051,7 +100411,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc580fae6821f64b231acf20c4ec55f4", + "key": "436bba4ae8653a073e08697cd5fc28b0", "notes": [], "params": { "seconds": 0.5 @@ -100065,7 +100425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6baa4501e8aec72f4a81059dc41782e1", + "key": "3bc383205d2d2edf06cd912c5fadaad9", "notes": [], "params": { "forceDirect": false, @@ -100097,7 +100457,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c0eba54818cbac410f3af51728be93c", + "key": "01bc255dc4ee4833de5adfccbb789fa1", "notes": [], "params": { "correctionVolume": 0.0, @@ -100117,7 +100477,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad53d7b9cd85e0726914063e89a8ce59", + "key": "07d8f186e42427fdaffbcf4dcb66a07e", "notes": [], "params": { "forceDirect": true, @@ -100150,7 +100510,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba51e0508618ad8fd763c067028c7e5a", + "key": "829dfdc7c40ab5eda0b7ce7cfc405502", "notes": [], "params": { "correctionVolume": 0.0, @@ -100170,7 +100530,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7095f999ceb3693e296e45f97da3cced", + "key": "eb9f580e58fb88b682aa776b2755c1e0", "notes": [], "params": { "forceDirect": true, @@ -100203,7 +100563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ee32ce8d528610267713f8a6640e9c43", + "key": "b9cabfc352ac0649dd4ba60da0a80203", "notes": [], "params": { "pipetteId": "UUID" @@ -100217,7 +100577,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "866c0f48c78145181aebc519930866ab", + "key": "0dfbe259894e9560d484dd75d703edbb", "notes": [], "params": { "correctionVolume": 0.0, @@ -100236,7 +100596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b4d007f12608a5ed6903e148bc6792b", + "key": "ab4c02ce12118a263c411eca5524715c", "notes": [], "params": { "seconds": 0.5 @@ -100250,7 +100610,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e9ea17b4e1abb18fa5a7c839049f69e", + "key": "3eb30a92ae039c727e17952a5d8b06e0", "notes": [], "params": { "forceDirect": false, @@ -100282,7 +100642,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07f2dcff33cf5cdaea1c7a40c5b8d669", + "key": "1646dd5d0da186a33f675ffefe8e56ec", "notes": [], "params": { "correctionVolume": 0.0, @@ -100302,7 +100662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fbc96b6dae05c32448ac692c72cefb11", + "key": "314b3cb4cec1ca9bcda64d054bdd0ea3", "notes": [], "params": { "pipetteId": "UUID", @@ -100318,7 +100678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba7a18351c0af570a9ca0f5c2dd9945b", + "key": "a88e00e6ca8186dd281ee5bae364be4e", "notes": [], "params": { "pipetteId": "UUID" @@ -100332,7 +100692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89fc5185dbd55a9d0c82cb1585e3090b", + "key": "0863174480397eaa19fbec43fb51ede3", "notes": [], "params": { "forceDirect": false, @@ -100364,7 +100724,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "effd86f6f92d708b21f74cb0ab9d3139", + "key": "392a88a9f5ffad40a5380f74728f635a", "notes": [], "params": { "forceDirect": true, @@ -100397,7 +100757,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11d5ea2851e2f38dbcc89da38fd5f64e", + "key": "951dfc1f611405223d169ba0dafb86b9", "notes": [], "params": { "correctionVolume": 0.0, @@ -100416,7 +100776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "06f0956eb7300fd8884713f1e49e2ced", + "key": "006e6930af508f31350a5ce9edb5689e", "notes": [], "params": { "seconds": 0.5 @@ -100430,7 +100790,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94a24ae7a049ec10dd050f99431e4e17", + "key": "ff063adb8840ba9e21bb072f056eac22", "notes": [], "params": { "forceDirect": true, @@ -100463,7 +100823,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30963edd623664ecc991c6108418cfcc", + "key": "fa58246e47838ef0b465f9c30183495e", "notes": [], "params": { "correctionVolume": 0.0, @@ -100482,7 +100842,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f2ed59332c1bf863f0f97e77170a120", + "key": "181c23fc65734e87475478a244a70087", "notes": [], "params": { "seconds": 0.5 @@ -100496,7 +100856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7401378178ce0ac04c6379ccaaa9312e", + "key": "44fefdca369be2d461ae0e2b41d579a7", "notes": [], "params": { "forceDirect": false, @@ -100528,7 +100888,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e73d7258e38b9a2b541dae5c2ee390a0", + "key": "026af13116aebcdc242b2cbb2f16edfb", "notes": [], "params": { "correctionVolume": 0.0, @@ -100548,7 +100908,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "062fbd78105287ea136cce2eb84eeba3", + "key": "ed4e7259e9c91e95751573e2654e7bf7", "notes": [], "params": { "forceDirect": true, @@ -100581,7 +100941,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d767085120978e36e8acb6a5b56c0098", + "key": "f59dc5d257e9525a4821b6e6b696ddd9", "notes": [], "params": { "correctionVolume": 0.0, @@ -100601,7 +100961,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f330e7ea3f8371b09455c4d1f4cf92cd", + "key": "6e34d6dc21cd6b9f9b8a927187114a61", "notes": [], "params": { "forceDirect": true, @@ -100634,7 +100994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "349efd5a3b2713693dbd45e71541d403", + "key": "6098c7f75a620b1fb11c8a46784bb83b", "notes": [], "params": { "pipetteId": "UUID" @@ -100648,7 +101008,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "183bd895c04bf9f9d947ebeef6c1d974", + "key": "242efe0bc6f77b02c2e329d70da78a9b", "notes": [], "params": { "correctionVolume": 0.0, @@ -100667,7 +101027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ffc00d4c1182b3c7d55821c954a2f90", + "key": "7e4a7eea274128f93e49100dd2030d2c", "notes": [], "params": { "seconds": 0.5 @@ -100681,7 +101041,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0ddf6fe2f3c1ac02539a1c730a91190", + "key": "6d671b539a7aea2ff640401127865d70", "notes": [], "params": { "forceDirect": false, @@ -100713,7 +101073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69e6fc32cdf77c9e4218e985c78c9143", + "key": "93cd868dddbc9eecbbcf97680c3c4a02", "notes": [], "params": { "correctionVolume": 0.0, @@ -100733,7 +101093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "03fdf7b70547ef59d9e7a97ea0f7a79b", + "key": "c05f442782cc462bdce5f5e79374a80e", "notes": [], "params": { "pipetteId": "UUID", @@ -100749,7 +101109,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "47d9a0b2bd316528b3efa7067aeb2a3a", + "key": "2a87a8076ed299679dd8c43871be392f", "notes": [], "params": { "pipetteId": "UUID" @@ -100763,7 +101123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c02fc02a8048683c89e3fd4314c9278b", + "key": "8d1a3207a887ce5aea7d96fea60cd805", "notes": [], "params": { "forceDirect": false, @@ -100795,7 +101155,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a790e979d9de727593ee7ff6242ea982", + "key": "abdb77dfc3739d1b86e0848d06b2d325", "notes": [], "params": { "forceDirect": true, @@ -100828,7 +101188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "290d449d4a929b948e9ccb293ada0d8d", + "key": "cde917f2c5d697f386dedbf5240f2c44", "notes": [], "params": { "correctionVolume": 0.0, @@ -100847,7 +101207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c710307162fe9ca9d72e973a45c31f87", + "key": "9ea7774e39077a33956b226d03207c7b", "notes": [], "params": { "seconds": 0.5 @@ -100861,7 +101221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "39b4d980bc604b0d948d1c4ce710cc85", + "key": "cfb82152633ff37c4f29fdbbc08fcc7d", "notes": [], "params": { "forceDirect": true, @@ -100894,7 +101254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "effbf716ef7ae303f0e5d31d82ba483d", + "key": "34e7f56e040a27466db46100024aa087", "notes": [], "params": { "correctionVolume": 0.0, @@ -100913,7 +101273,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c95095df79db2d286e04bf3a1c449f35", + "key": "d057dac324646bdaa25903dfa750e671", "notes": [], "params": { "seconds": 0.5 @@ -100927,7 +101287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "897d998de580c6c211e9d4d5e7854067", + "key": "f912bcfe67cd7308bf0faa3485f9f3ad", "notes": [], "params": { "forceDirect": false, @@ -100959,7 +101319,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e29fad049a5a0398af5c42690f7977ef", + "key": "79dd6401822fda1f6b94b958573bd1fb", "notes": [], "params": { "correctionVolume": 0.0, @@ -100979,7 +101339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "587f5d0cd820bd04333b52409fab99bf", + "key": "32e8286c1ad51be52443ddda01537b75", "notes": [], "params": { "forceDirect": true, @@ -101012,7 +101372,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af94a5141ca95d3ec8397edee423b63a", + "key": "7eb5b4a7758c8182b29f5b73ecaa936f", "notes": [], "params": { "correctionVolume": 0.0, @@ -101032,7 +101392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a8725aa704a59a74385da4825ed391f", + "key": "cfafeb6e7ddc4653aeb5e0c3807b7816", "notes": [], "params": { "forceDirect": true, @@ -101065,7 +101425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8237d9ea5e0329124782ecf7e933de11", + "key": "ba113682e5131abb3c614ba31236c978", "notes": [], "params": { "pipetteId": "UUID" @@ -101079,7 +101439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef5ba663394450f6824c18a6f8dede79", + "key": "a7936f8696e8db2a579ecb9424a8625e", "notes": [], "params": { "correctionVolume": 0.0, @@ -101098,7 +101458,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f5f3c45f28ea1cdd22b53e08b85f5eb", + "key": "0615e0043819c4ee8f00d2b944f93102", "notes": [], "params": { "seconds": 0.5 @@ -101112,7 +101472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "429e5a3613552c0108eb2ac60991d7fd", + "key": "f730f8d0984b97959c1313ff25ee67d4", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -101141,7 +101501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3fcbb84be8c4e9763066e0d6c5caf01", + "key": "25bce95c1024530d895c74b154aec7b1", "notes": [], "params": { "homeAfter": false, @@ -101156,7 +101516,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea84a3b4141a6d7145a1ca6d0e9041aa", + "key": "da8fb1546fea35050a05446efc0d6cb8", "notes": [], "params": { "liquidClassRecord": { @@ -101551,7 +101911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0340878a0005dab777f701cd9cfb246", + "key": "6978d0fc1530045a1f678b85161892f1", "notes": [], "params": { "labwareIds": [ @@ -101573,7 +101933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c49fcd157707d58cf8c042a4d95e7915", + "key": "4da6bd3355caa77015a3482864502d22", "notes": [], "params": { "labwareId": "UUID", @@ -101606,7 +101966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "00891779aa496abd28538e8780cd4365", + "key": "4ab9c5f5b4f33315e05bace87a050bd0", "notes": [], "params": { "forceDirect": false, @@ -101638,7 +101998,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9fe9d102df0a88b76877b2cf0918ad9", + "key": "5556c5958a7cd879ed99a45f1bbb8da9", "notes": [], "params": { "pipetteId": "UUID", @@ -101654,7 +102014,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4fad6e2233f5023aca4d70ed7330fad", + "key": "dbd935055bd108d56a1ab74e05926e43", "notes": [], "params": { "pipetteId": "UUID" @@ -101668,7 +102028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e618ceff6e1e97df3dfdf68f010a6515", + "key": "6ffe3c780aad7241b34215aac7247e4a", "notes": [], "params": { "forceDirect": false, @@ -101700,7 +102060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8646c6e45b78e177a6c86c8d3ffba929", + "key": "ebeff53c9b6b78844213af03d3349084", "notes": [], "params": { "forceDirect": true, @@ -101733,7 +102093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c63b53588dedfd0a41ce47999fa8d60", + "key": "afc36eecdcdf23fbc31e318ee76de994", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -101752,7 +102112,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9ab2f737e250c63730d6ef017fc7c142", + "key": "e89e9a7dbb13929aa2c753c661c6fdf8", "notes": [], "params": { "seconds": 0.2 @@ -101766,7 +102126,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8616527a8aa30bcba49d7e68f4b6ceb", + "key": "caf87c177a49bd72465d0b931fe4a237", "notes": [], "params": { "forceDirect": true, @@ -101799,7 +102159,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d334b9431dd15241b011062c32fff2d", + "key": "49da4669451d1f55b8c94d2efc25077e", "notes": [], "params": { "seconds": 0.5 @@ -101813,7 +102173,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af3c31682cd85fb722d00909283841e6", + "key": "f15365ccb3bd7352844da9f389f7bc2b", "notes": [], "params": { "correctionVolume": -20.859003831417628, @@ -101832,7 +102192,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44278818c195a0c318b278db8303a10a", + "key": "5644dff2bbce735c771375315a2ee69c", "notes": [], "params": { "seconds": 0.2 @@ -101846,7 +102206,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6fb4f9d1ad28da9bf5c0ffb6a398eb6a", + "key": "5c485b481db7d9fb02cc1c5a8072b334", "notes": [], "params": { "forceDirect": false, @@ -101878,7 +102238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50969bd761bda1286f11009798e8d634", + "key": "1c34b761936a9a183a80351f5873bae2", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -101898,7 +102258,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2c224abc2e88b4080e24900b4c4ef9f", + "key": "30be47f118a38078e4e1e0496db85bc0", "notes": [], "params": { "seconds": 1.0 @@ -101912,7 +102272,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9b13968ad9431199da39d0bf7f2985f", + "key": "b83045ae1fb790de303d6815fed51a34", "notes": [], "params": { "forceDirect": true, @@ -101945,7 +102305,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53b2eda4b0f6238bf057d0cbeeba1fc5", + "key": "65f5ffc82133d8e6e327d25ef1c9f895", "notes": [], "params": { "correctionVolume": 0.0, @@ -101965,7 +102325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "747b9d5069078999d6813b7e092a0273", + "key": "c749bf27d896d67a4d70006561a40ad3", "notes": [], "params": { "seconds": 1.0 @@ -101979,7 +102339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2baa293401c1872b9d75341338724a67", + "key": "1d0d8621bc2066f4b12c99ecbf6e823c", "notes": [], "params": { "forceDirect": true, @@ -102012,7 +102372,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28fac6022706893179e8e7ab7a6c6a23", + "key": "f8f8be84c62798e53ea874d4156887be", "notes": [], "params": { "seconds": 0.5 @@ -102026,7 +102386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f2585a1fb318ae717baa6381f7dd34d", + "key": "921bcd26167cc61abb9b6a04dd31c659", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -102045,7 +102405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af7185441bf5e1c2ed266a548d11fffc", + "key": "21331d3d7814e94582a0f21b88b5635e", "notes": [], "params": { "seconds": 0.2 @@ -102059,7 +102419,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c270da59d4de66d2364fbcf608c7f5c2", + "key": "f3ed992ac34e7762dedb9a85ed031d94", "notes": [], "params": { "forceDirect": false, @@ -102091,7 +102451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "12b99a6caf47dd2e9557d6431cedaf84", + "key": "ea0e55395c911f58a470833c29ba38db", "notes": [], "params": { "correctionVolume": 0.0, @@ -102111,7 +102471,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d355ce84b2c6e5044bd8709ce7df00c", + "key": "90ee944e66376aebf19ad0765bca61ca", "notes": [], "params": { "seconds": 1.0 @@ -102125,7 +102485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "541214e4cdcc4228395dc7729a502bac", + "key": "714583589e176f7efa8408085d699186", "notes": [], "params": { "pipetteId": "UUID", @@ -102141,7 +102501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96d21ca000daf2578c0f9e49582eff92", + "key": "77476c4a79e998ca5ce454387f14663b", "notes": [], "params": { "pipetteId": "UUID" @@ -102155,7 +102515,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c2041666946c9094d4cc0e28fee8956", + "key": "19229af33154311e8f9e6b9719dd9641", "notes": [], "params": { "forceDirect": false, @@ -102187,7 +102547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "788dce63c5cb70208af38d3c2db23041", + "key": "1a28be8556db70357997fa4744555fbd", "notes": [], "params": { "forceDirect": true, @@ -102220,7 +102580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70577e499ba8fd2c2cafc33f46fcdceb", + "key": "7504b4932c23f112d5dd70aa1ee18455", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -102239,7 +102599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc1e2e98c85140ba9055ddfe4a9972c2", + "key": "412abb06d69fdc16b5e44950c89615f7", "notes": [], "params": { "seconds": 0.2 @@ -102253,7 +102613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5bb52a19458ad3acc001fa4c383214e", + "key": "29d6d9753909bb656514d91bac5bfc58", "notes": [], "params": { "forceDirect": true, @@ -102286,7 +102646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86305cf27890ac49c4be364f65af9d10", + "key": "5cf244c4cd88beb2f4f6041512a9f26f", "notes": [], "params": { "seconds": 0.5 @@ -102300,7 +102660,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6d14c2276806eaf4aec43a8638caf9f", + "key": "7ea1b1380eac7d7196ebc9c28ff7d029", "notes": [], "params": { "correctionVolume": -20.859003831417628, @@ -102319,7 +102679,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c7bec5debeda2bc2c80ecdf63931e5a", + "key": "8995de66f4207743e9dd4166a97074ba", "notes": [], "params": { "seconds": 0.2 @@ -102333,7 +102693,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69ce8a55963af78da43eefef33c9910e", + "key": "1fe333457dea7b4f0a0f94519d27721a", "notes": [], "params": { "forceDirect": false, @@ -102365,7 +102725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f05ef74e2acecceefdac33dd6f79de8", + "key": "0a249b2ca90491713174542b84b122c1", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -102385,7 +102745,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a85ce42b420ab0eabd85e30e9df23697", + "key": "d244cec07550c8eb18bf6a2c236b5869", "notes": [], "params": { "seconds": 1.0 @@ -102399,7 +102759,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3fa9116e40c4226f8d47d82ac4030daf", + "key": "4ab2f48a5a763dab0ccae91dfd011c37", "notes": [], "params": { "forceDirect": true, @@ -102432,7 +102792,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79470453806fee8900dfaf86974815ab", + "key": "222350bae60695ce6ef6f52a450e2109", "notes": [], "params": { "correctionVolume": 0.0, @@ -102452,7 +102812,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8a3230a2404f08fff7805e7518b0d44", + "key": "b109115a4f1aae3101fe1a9069c9ed1f", "notes": [], "params": { "seconds": 1.0 @@ -102466,7 +102826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "972d03550b9ac08c3d0b53cf2649530b", + "key": "d6d25b356f8060da4cc082916a0b53dd", "notes": [], "params": { "forceDirect": true, @@ -102499,7 +102859,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc26283722ce7d418d357d61a133b61d", + "key": "69a5033c4194635cf7c552af665680c7", "notes": [], "params": { "seconds": 0.5 @@ -102513,7 +102873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d9d150a9eccaf87adaa71348750dc44", + "key": "b94468b0b83d81164508745eeaaca017", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -102532,7 +102892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62e9abb931206e9f10bdea3cd50b3780", + "key": "7a3a15b824a6dc1f7aad8ca41ba7e4e0", "notes": [], "params": { "seconds": 0.2 @@ -102546,7 +102906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2beee58fed4206a7230356bbebbf51a", + "key": "b5ef76a25737c6e0c7082616c46f1d40", "notes": [], "params": { "forceDirect": false, @@ -102578,7 +102938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57336a535c69e95caee41215c7c9cf3c", + "key": "88e7dbb54e8835f4870a0c26621b2f89", "notes": [], "params": { "correctionVolume": 0.0, @@ -102598,7 +102958,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "460965109e78b45a84fe16926fae49f1", + "key": "8336da33682045604e155ff65ba26e36", "notes": [], "params": { "seconds": 1.0 @@ -102612,7 +102972,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aac2c2aca10b2569039187cb26eb6acb", + "key": "e48324cc260f8ea49953a49dd5455db7", "notes": [], "params": { "pipetteId": "UUID", @@ -102628,7 +102988,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cececcc46831bbe387b25db9ab2b6bd4", + "key": "c5afce8b04af85c860edc2f904bbaca8", "notes": [], "params": { "pipetteId": "UUID" @@ -102642,7 +103002,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fad7c978e1123578ba0f426371d07472", + "key": "a1d66a9260aad903f9db39a54013025d", "notes": [], "params": { "forceDirect": false, @@ -102674,7 +103034,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "851f3c4ab9f5dfc5e268c089c842b924", + "key": "30946fd9d52fc1db4bc6a05de6aee458", "notes": [], "params": { "forceDirect": true, @@ -102707,7 +103067,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4bb91b43d4c9f342ca22d15c37ff5d0", + "key": "99f492c8160c1e724588adc854996274", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -102726,7 +103086,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96276ac2f91fb9e476b4b524dd03c35c", + "key": "8588aaafdef1cdc3d23578a51f594a35", "notes": [], "params": { "seconds": 0.2 @@ -102740,7 +103100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02cf488bf1a8dec8645ff3e1363851ec", + "key": "e8bdd45ba0ef8b3a563715a534e3c69a", "notes": [], "params": { "forceDirect": true, @@ -102773,7 +103133,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a7d769c7346926ee0bb0192fa80d210", + "key": "e85f2653fc967cf3cbe0da11dca9ddc1", "notes": [], "params": { "seconds": 0.5 @@ -102787,7 +103147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9474108246660e56b504bee508faffee", + "key": "679479fc1c37f3a20f4a451733a8c966", "notes": [], "params": { "correctionVolume": -20.859003831417628, @@ -102806,7 +103166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cff5d2d2172de2d3268eca8f4842fb70", + "key": "52213a89337b25d2692410f23a159d7a", "notes": [], "params": { "seconds": 0.2 @@ -102820,7 +103180,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f47ff0e897825deb4c1c4831a394199", + "key": "bdc32d37c4a61ba7969355930a870172", "notes": [], "params": { "forceDirect": false, @@ -102852,7 +103212,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2e389954dab914ef213f38d6b38a4af", + "key": "4e54c3bdc67a841e151fd666768d023b", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -102872,7 +103232,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0c2dcd31e3ace638da5f8ceba4a6601", + "key": "584ac55aa922a8332d30b015759f8c74", "notes": [], "params": { "seconds": 1.0 @@ -102886,7 +103246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f6fd08bae766f5a7d2ac84590f9a6c5", + "key": "c6746d0461cc13437f9ba1de449715db", "notes": [], "params": { "forceDirect": true, @@ -102919,7 +103279,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10f2c9e71eff642b93aa03b14ecc30bb", + "key": "55e629545bd025d58c29a6cf424a7825", "notes": [], "params": { "correctionVolume": 0.0, @@ -102939,7 +103299,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e12ac75d4d9231154d108019a2fc9d0f", + "key": "4848f7f61f71747b16ae9404eef0a8b5", "notes": [], "params": { "seconds": 1.0 @@ -102953,7 +103313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd5c6dc409613d79831453db690f342f", + "key": "5152d83aae45196a6317633887da18c7", "notes": [], "params": { "forceDirect": true, @@ -102986,7 +103346,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "09793325888a623c9333608d0dfdc8d7", + "key": "6d63180e7f107296f508fb0d30c76661", "notes": [], "params": { "seconds": 0.5 @@ -103000,7 +103360,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49dab69436395b9d759c240a546d63c0", + "key": "5102a696616ec555e34f5a91f42aa574", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -103019,7 +103379,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81320e4343ee9cdd0ac75da5bc49d3d1", + "key": "024310ec1bdc3aa5962a506de42d60d7", "notes": [], "params": { "seconds": 0.2 @@ -103033,7 +103393,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbe97fc19a98cc79b34361a385d1299b", + "key": "e30dbd414eb898d1220e673d299d4716", "notes": [], "params": { "forceDirect": false, @@ -103065,7 +103425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c52762224ab2dc2a73b1190ece74400", + "key": "e3881573962d6f01043452cdfd8b2304", "notes": [], "params": { "correctionVolume": 0.0, @@ -103085,7 +103445,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "550c973646da7cbc32eed5a3e432c683", + "key": "f8960d2c8da07918bdcf48fee87f85e5", "notes": [], "params": { "seconds": 1.0 @@ -103099,7 +103459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9148d9ccb7e0d4f07058d65d142c48cb", + "key": "5b016fe89acec707b8523e2fe5f300c6", "notes": [], "params": { "pipetteId": "UUID", @@ -103115,7 +103475,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb48b7ad3e6c118897e83f0bfe6c9451", + "key": "9f411c497a66453745f721c4d4b5982c", "notes": [], "params": { "pipetteId": "UUID" @@ -103129,7 +103489,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a73f2e2fee48282dc3d616ad2714105", + "key": "fe9ab2b7f266aea1375ad7e0209bfe17", "notes": [], "params": { "forceDirect": false, @@ -103161,7 +103521,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d613ce2a67948f86b7c14e7a3d1d98c", + "key": "6b1966dcbc10deaa3bfef389d66a96d0", "notes": [], "params": { "forceDirect": true, @@ -103194,7 +103554,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5dc2ef57ed60219483559e6231a9ccb2", + "key": "503d2b86e5a352fa1ffe99101618a9b1", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -103213,7 +103573,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f380c900bae85c0d6c7b5dd5e2a206e0", + "key": "a616048252287c0221b56d40cd58b197", "notes": [], "params": { "seconds": 0.2 @@ -103227,7 +103587,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32a492c873736a26984fb4469555388c", + "key": "33682d46b7028ace9028d946d95c22ef", "notes": [], "params": { "forceDirect": true, @@ -103260,7 +103620,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16b2c9577d80178b0ea12fc4d4d8ba10", + "key": "eb7305e8a657b98e1924e3f4ca72ae12", "notes": [], "params": { "seconds": 0.5 @@ -103274,7 +103634,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d5825469fd5c4cb8f44c49ecf66e900", + "key": "ff4700e96613fe8685ca4ae54f0cde4f", "notes": [], "params": { "correctionVolume": -20.859003831417628, @@ -103293,7 +103653,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eee5484bf8d1f930865f8c5ceab4decf", + "key": "356a5d45fdb9866d5714aa29a85b5d65", "notes": [], "params": { "seconds": 0.2 @@ -103307,7 +103667,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b4247429b24171f408217c617ca2e85", + "key": "0190a03ab76c857aaac39fec16ec08e3", "notes": [], "params": { "forceDirect": false, @@ -103339,7 +103699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc5b51641bb68d1a75f9fafaf181c14f", + "key": "8d011ff489b0bd1d23ea83a1e85f2a60", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -103359,7 +103719,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3a089a188fc42e9479e3152f2508783", + "key": "fd743dbb4134ab5507e9839c45f08865", "notes": [], "params": { "seconds": 1.0 @@ -103373,7 +103733,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9dddf0c7f0f027657b4120763ded114f", + "key": "a5eca75431a9cb1f9813935b13cc3ceb", "notes": [], "params": { "forceDirect": true, @@ -103406,7 +103766,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e58fa88cd1104d99efe4ce16a09e3c8d", + "key": "90a498493b1bb1f698f6ebe2bab50f01", "notes": [], "params": { "correctionVolume": 0.0, @@ -103426,7 +103786,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a772570b7eefedd7f0490db202440857", + "key": "c2a69706d54497abea46c0e83648785e", "notes": [], "params": { "seconds": 1.0 @@ -103440,7 +103800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa9dbabd57482e543a40230b0e708cb4", + "key": "0cf9622ec651d2c06b155694ffc31fa5", "notes": [], "params": { "forceDirect": true, @@ -103473,7 +103833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7bf156791543f26f3b0f68455b37ad7a", + "key": "4632a6e72bb6901704e3affbc562ef10", "notes": [], "params": { "seconds": 0.5 @@ -103487,7 +103847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "622ac0b1561548410f88ab7cb8da93b8", + "key": "9502ec211256d6922c715ac38e0bc748", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -103506,7 +103866,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84fc2ea2fb6068be04855776cbc00f80", + "key": "e33a2ac8cad1af139d7e027234f51cc5", "notes": [], "params": { "seconds": 0.2 @@ -103520,7 +103880,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e926272cca17ff8841d7e99d0d8bc5c", + "key": "ef39ae4b6ee05f66d811569dfaa1ee9e", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -103549,7 +103909,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c798e9f466746e49054be24ec5d2f981", + "key": "3237bd26dbfe44e589820e1b3399d0bc", "notes": [], "params": { "homeAfter": false, @@ -103564,7 +103924,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "914c754c02ea05190ccaa6a33acaf198", + "key": "81e677da200006c7df1f4dd654984b42", "notes": [], "params": { "liquidClassRecord": { @@ -103927,7 +104287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf8cce32a9d77c7ab299ddbfa77a1640", + "key": "a8318ee15d9f0f6029d3e4ddb3fc446a", "notes": [], "params": { "labwareIds": [ @@ -103949,7 +104309,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "35493465b22bedb7c85b4a52088658b3", + "key": "12b2e5c2e384d016e69e9092df24393e", "notes": [], "params": { "labwareId": "UUID", @@ -103982,7 +104342,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c621de03b80d83052c355adc300507b", + "key": "607acd29bd6d33759dc7c1f3357dc54e", "notes": [], "params": { "forceDirect": false, @@ -104014,7 +104374,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "456124a6f7c81c0f21728b249fcb8acd", + "key": "679da3c55dc670ecda8d1f01e237fc27", "notes": [], "params": { "pipetteId": "UUID", @@ -104030,7 +104390,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c0f28acf46031cfee2ba5d6ad476954", + "key": "8bd5492c1f36a8a670cf1b0d4b9ff0af", "notes": [], "params": { "pipetteId": "UUID" @@ -104044,7 +104404,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a7b0efc4f0096c057c008911d0199f9", + "key": "95861fa608092cb20a2bce930ad5ad30", "notes": [], "params": { "forceDirect": false, @@ -104076,7 +104436,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0cd413693db2583c38ac1fbfad753a7", + "key": "16d3b21d31689aa1c109e13b93a80a00", "notes": [], "params": { "forceDirect": true, @@ -104109,7 +104469,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29c2866731a3168109f219ced2ef183f", + "key": "955b4abe8a853883aecbd8897eb86d30", "notes": [], "params": { "correctionVolume": 7.294444444444445, @@ -104128,7 +104488,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8c79526c689646ab0bf9563e0fd3ad0", + "key": "07925e54fe00e56510bda55cd657e520", "notes": [], "params": { "seconds": 0.7 @@ -104142,7 +104502,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da2cb39f1b555079fed26c6a5686773e", + "key": "aa964e1611cc964f48f09eff4299fa79", "notes": [], "params": { "forceDirect": true, @@ -104175,7 +104535,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dcf42c25f4d6260e75f85679e18f328", + "key": "bbf6e83b732ab302435efd12ebe4af40", "notes": [], "params": { "forceDirect": false, @@ -104207,7 +104567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60f4d3514d95a48df428a4588e366bb6", + "key": "0340a18f5dce47e3e1e772c89f107bc2", "notes": [], "params": { "forceDirect": true, @@ -104240,7 +104600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7540db231522a38b0517ff35e8a86fe3", + "key": "d39d5ad4af19f91513dd1f5db04e6c00", "notes": [], "params": { "correctionVolume": 0.0, @@ -104260,7 +104620,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "790c059d7a95d4f51a25ae0ddaca0834", + "key": "327b58ff822f402f505e148fe0f90321", "notes": [], "params": { "seconds": 0.5 @@ -104274,7 +104634,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6caa86d6d44d4f3a798501a86c0b3195", + "key": "fb244367df7a7225622682fc4b410348", "notes": [], "params": { "forceDirect": true, @@ -104307,7 +104667,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8df0a575bab47f20791ef8093c19dc14", + "key": "4f66699f3eba91c16a2696c80a62e945", "notes": [], "params": { "pipetteId": "UUID" @@ -104321,7 +104681,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "081503e3f9f6705a1ad1ece72a6cc2bb", + "key": "7b76a728b4c46b3d03ab7fea8055f827", "notes": [], "params": { "forceDirect": false, @@ -104353,7 +104713,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0eb54a59e6e16ecd97a581d4f44a82a", + "key": "0cb62883806112b8e4f30abfebe9d630", "notes": [], "params": { "pipetteId": "UUID", @@ -104369,7 +104729,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e08555cee2f4ebbdc9b177a2a1c58b78", + "key": "02a729c502112fc3148c2e49c5ca540d", "notes": [], "params": { "pipetteId": "UUID" @@ -104383,7 +104743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "08e774d34e1bb602d696f504fba91750", + "key": "2d704fdf797bd97231c857c066cac17e", "notes": [], "params": { "forceDirect": false, @@ -104415,7 +104775,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b19296c35ac0cb5d29c3af976252d1e", + "key": "858755276e23ac74ded5b35f680e4b70", "notes": [], "params": { "forceDirect": true, @@ -104448,7 +104808,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d411ad4ee9824578f19c65b649423e97", + "key": "1d9a94618169230299d1f0948aaf01d7", "notes": [], "params": { "correctionVolume": 7.294444444444445, @@ -104467,7 +104827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2de0118e4d9ecb5e624b33ae119c6a9e", + "key": "6d71c7e01f924037fd10631bb05a5bb4", "notes": [], "params": { "seconds": 0.7 @@ -104481,7 +104841,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d54d0854db6235728066f29ffa772c40", + "key": "b9963e1ac15805ee48f7369031675ac2", "notes": [], "params": { "forceDirect": true, @@ -104514,7 +104874,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f973a63835912008c5ed1ba3e424f29", + "key": "b0ea1de2bdad417a550a380c5735ad2b", "notes": [], "params": { "forceDirect": false, @@ -104546,7 +104906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2def80516b732095b8efbb4ae0ac9a96", + "key": "f62a67ccd2132a1707f479c9259e7397", "notes": [], "params": { "forceDirect": true, @@ -104579,7 +104939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b8663f7acc7d0ad7aa8aad70084e1a1", + "key": "388c1d8e52d85897480a9b61a1f5389b", "notes": [], "params": { "correctionVolume": 0.0, @@ -104599,7 +104959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e72a7ea7231266b845820649f8eeb99f", + "key": "13d55d0e0f00bba232959972000e8cb9", "notes": [], "params": { "seconds": 0.5 @@ -104613,7 +104973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad86b946bc663758f1044d28a386a0b1", + "key": "dd997ce59cd0b60b3841b00c166ed548", "notes": [], "params": { "forceDirect": true, @@ -104646,7 +105006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bd5abb48c0cf69ca9c88cea653bd3ad", + "key": "244047c55c02d8debc43221f72088ae7", "notes": [], "params": { "pipetteId": "UUID" @@ -104660,7 +105020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3bcd68a67dff235a3cfbd699d063fafe", + "key": "1eca2398eeca2f3158f6e91a30a1c6b2", "notes": [], "params": { "forceDirect": false, @@ -104692,7 +105052,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b0644ef866a102940ee8e13aa406529", + "key": "c0e4a668c1508be2ac6980306262563d", "notes": [], "params": { "pipetteId": "UUID", @@ -104708,7 +105068,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33c6e9aa3862c88cc5bd111afe7360db", + "key": "0d690f52120f5efc84a4fc268933c5cd", "notes": [], "params": { "pipetteId": "UUID" @@ -104722,7 +105082,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d41a7d8dcc2e8b6a797122a03deee470", + "key": "17c50cc0558d9252873053e25e3d1335", "notes": [], "params": { "forceDirect": false, @@ -104754,7 +105114,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e392c5e7f63371f904728d6b893d2707", + "key": "d80fde007fe0642f8feccc8313b4ce3c", "notes": [], "params": { "forceDirect": true, @@ -104787,7 +105147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffbf6a15b2f8bef494891287eda2b14a", + "key": "f83c7fa148c7ab73ba1264e9b3d51d8a", "notes": [], "params": { "correctionVolume": 7.294444444444445, @@ -104806,7 +105166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c32c5baa62996f5783815460d21e65f6", + "key": "aba5cc18b1481206be9ece2ae1bea662", "notes": [], "params": { "seconds": 0.7 @@ -104820,7 +105180,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff684b84ff5991984349e7893845891d", + "key": "7942ae2c6abd66baef9c4ed4ef7da396", "notes": [], "params": { "forceDirect": true, @@ -104853,7 +105213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27551564c14fe679285fcbbbb2a207f1", + "key": "8d77b8e111923b1b7f605f321f17dfdf", "notes": [], "params": { "forceDirect": false, @@ -104885,7 +105245,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1b331334b4d8f2e22c28570b67b346a", + "key": "a59e24204316729c5c78f70b927c86c4", "notes": [], "params": { "forceDirect": true, @@ -104918,7 +105278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "018623459e8c381c3e25c11bf4d452c6", + "key": "aacb69673f6798f8c35cc724f621c050", "notes": [], "params": { "correctionVolume": 0.0, @@ -104938,7 +105298,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4cb5462138ba188d204143c9ae4b7ec7", + "key": "58cff8f25ae8c0e0e22c56871896e636", "notes": [], "params": { "seconds": 0.5 @@ -104952,7 +105312,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5799bcb4b8997569289319ba8cf0bcb1", + "key": "fe58a1d9012923b8eefbcc61e1f87b26", "notes": [], "params": { "forceDirect": true, @@ -104985,7 +105345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "42dcc606fa3fc5fd0537a2c0fd812d0b", + "key": "8455c356b6dc2da4937330c4ce70610e", "notes": [], "params": { "pipetteId": "UUID" @@ -104999,7 +105359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "233f87b0289ab87a9fed8df697f2ed18", + "key": "7c3773f9cfb4b460e399766dee8af30b", "notes": [], "params": { "forceDirect": false, @@ -105031,7 +105391,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "631c6c0ea96e447cb231b83387d4569a", + "key": "217c27c8b9848808b71698f0f907037a", "notes": [], "params": { "pipetteId": "UUID", @@ -105047,7 +105407,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "88f13b6c2256e2249b72b5fded641a6f", + "key": "49b0a24ac6e862f29bd72d75b285bb3b", "notes": [], "params": { "pipetteId": "UUID" @@ -105061,7 +105421,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "47c0646e9c55f1b458757b33d8030387", + "key": "5e6920df9204640cf19ced6debb2b76e", "notes": [], "params": { "forceDirect": false, @@ -105093,7 +105453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1c34188c74b662af7fc496f39f01d83", + "key": "23bc8097041e870820492a7faf80e5e1", "notes": [], "params": { "forceDirect": true, @@ -105126,7 +105486,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e8c2d084d2805adf0678e960a105571", + "key": "fb0b469c018f8b5a7111e66996092459", "notes": [], "params": { "correctionVolume": 7.294444444444445, @@ -105145,7 +105505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "673ce88aa4175684878482d5e885d6f4", + "key": "f9b253b38271bdb25bb98cbe956de7c5", "notes": [], "params": { "seconds": 0.7 @@ -105159,7 +105519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2995c7cff83f34fe557ce70a6bba32c", + "key": "6d66f2239605b0fe0e97a9f1f98b4d69", "notes": [], "params": { "forceDirect": true, @@ -105192,7 +105552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f971d4b58d91bf82973acc3cbbf915ea", + "key": "2972d59c7b392bc80ada28b97ac46260", "notes": [], "params": { "forceDirect": false, @@ -105224,7 +105584,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f7f9a0d1f62392a0876912c3d2d6e30", + "key": "987780deb2733b1ee2a0efca21192f7e", "notes": [], "params": { "forceDirect": true, @@ -105257,7 +105617,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bacb8d4932080a2b74422cef247a0ff3", + "key": "63cffcf19edf2f04835f4bf37faa1b5e", "notes": [], "params": { "correctionVolume": 0.0, @@ -105277,7 +105637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db4f751013d1b96f10615f8c65f133f7", + "key": "5a0233b04588664ed1528d2150decb04", "notes": [], "params": { "seconds": 0.5 @@ -105291,7 +105651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b53e30f3a7c901e4aca9b05e3019a6ce", + "key": "b1e3a7fe5175957e005664fdc53843ba", "notes": [], "params": { "forceDirect": true, @@ -105324,7 +105684,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15df81f045940076430355b3e1bf5ada", + "key": "80dbf6eba8edc04ac48dcec3ba6177ef", "notes": [], "params": { "pipetteId": "UUID" @@ -105338,7 +105698,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "305a1c65a5cd5d281f8423aff28b6643", + "key": "cc8661a10cf21a25c88c8b881d54a206", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -105367,7 +105727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "039b53e89bd5ae21abbc7a1b68e1e630", + "key": "498efd7ea8f9f74fdd6047b0e64ee003", "notes": [], "params": { "homeAfter": false, @@ -105382,7 +105742,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6881fc44ac60d0e427af22a5ff4156b0", + "key": "14551f9502afb435231f04607feb1893", "notes": [], "params": { "liquidClassRecord": { @@ -105717,7 +106077,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b897ffa1c82d958b0d1a713047b55f90", + "key": "c2d008d684803dfbaac0d2299afac437", "notes": [], "params": { "labwareIds": [ @@ -105739,7 +106099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a28aab7ceb0853d4495f5f35b1c466c9", + "key": "ab9aad0e1aac5f4d748066d2fe05b000", "notes": [], "params": { "labwareId": "UUID", @@ -105772,7 +106132,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6f9473667656455b1eae9358e9588b8", + "key": "ec6cdfc23e3ef6838fa4b141cd97b57c", "notes": [], "params": { "forceDirect": false, @@ -105804,7 +106164,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfcd4dc708de1ca472f22e91c8fe90b6", + "key": "c2f9af994395075a78a82562288d5eea", "notes": [], "params": { "pipetteId": "UUID", @@ -105820,7 +106180,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a797408eec83ceec63fe6dc5ba62afe", + "key": "dcf4917cd1264fc34f27cd8c516fe884", "notes": [], "params": { "pipetteId": "UUID" @@ -105834,7 +106194,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "00679fec60b4e02e12e9921f78a21e14", + "key": "fb8cbf06d543c61c2a20e999c26c7c83", "notes": [], "params": { "forceDirect": false, @@ -105866,7 +106226,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a6368d977c42aed9bbe1397e0c405aa4", + "key": "ee8d1256c73730de4dedacab9bf817b8", "notes": [], "params": { "forceDirect": true, @@ -105899,7 +106259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d41eccb4b110b6719beb7ee9311ece5", + "key": "a1ca68a5d645f383cebeb3ae22d9b469", "notes": [], "params": { "correctionVolume": 0.0, @@ -105918,7 +106278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d71825b9fb563ef960ef97ef2e145a8", + "key": "8b75d9d6e09bf79139fdc8371f82f659", "notes": [], "params": { "seconds": 0.75 @@ -105932,7 +106292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba880ac63c66ba549d7c36a92d42a907", + "key": "2a1a60fad61f5726bce11cc37c679aa8", "notes": [], "params": { "forceDirect": true, @@ -105965,7 +106325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7ad9ae1c3f8925c4d8e7c325f57f33e", + "key": "3630402b8a267c743443cd005cf3cb8c", "notes": [], "params": { "correctionVolume": 0.0, @@ -105984,7 +106344,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fcf3d21675fb1848db6e396bc762a29c", + "key": "0c95882fc4ba1b17abdc10092845c390", "notes": [], "params": { "seconds": 0.75 @@ -105998,7 +106358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d2691dfb1cc27ce0b0f06d8b8f09373", + "key": "6814eacd6f9123c6eb85e6b1becb2b52", "notes": [], "params": { "forceDirect": false, @@ -106030,7 +106390,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9491d0dd253b57112055590700cf23f5", + "key": "4f4b0c89310308487bc5e9e91dd555ca", "notes": [], "params": { "correctionVolume": 0.0, @@ -106050,7 +106410,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f891a81fa2828a675f45403200a4424", + "key": "b26e510a35ef75004a0d9205753d5e24", "notes": [], "params": { "forceDirect": true, @@ -106083,7 +106443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "203ad599787a0af2d3ccb724697f7449", + "key": "04d233947350833d901d96b6d5a4300e", "notes": [], "params": { "correctionVolume": 0.0, @@ -106103,7 +106463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b64c7f96bbc9e85d2a6f0acf3baccb90", + "key": "a9b51745a578ed0d62748e7e1f3516fd", "notes": [], "params": { "forceDirect": true, @@ -106136,7 +106496,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5698e8ab38a81a53a6ca41179ecddb7", + "key": "ddb7a6bdc23b3c4152b1b96c51197172", "notes": [], "params": { "pipetteId": "UUID" @@ -106150,7 +106510,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5730b8b817404facf75a90496eecec0a", + "key": "eb7ae0d8dd69bda8a1851cb4c29aed85", "notes": [], "params": { "correctionVolume": 0.0, @@ -106169,7 +106529,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5cfa913991af1122af4546817449db6", + "key": "7ed1ed55bf1bb476e64bb01138091366", "notes": [], "params": { "seconds": 0.75 @@ -106183,7 +106543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e06308147d5fe02f03cc6809c44954fd", + "key": "866812ef00fdb93b8f948f9afd0d39d9", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -106212,7 +106572,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d63dc94b77bbb4a246939c8a693f25e5", + "key": "6b5ee9edbed2052dfdab16e2f56cb0e2", "notes": [], "params": { "homeAfter": false, @@ -106227,7 +106587,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6852f96f8707abab6a577e3e8b04b94a", + "key": "8a8783bb176ba11f68c205cb91c80d5c", "notes": [], "params": { "liquidClassRecord": { @@ -106622,7 +106982,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a725f3add7d02443225271d2dee8dd99", + "key": "8438f2fb79832d4188c11f5b6dd92a23", "notes": [], "params": { "labwareIds": [ @@ -106644,7 +107004,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "753999211e9ec975bb79c8e989b4c4b1", + "key": "5838f629fbf85653058bc61645b56a1c", "notes": [], "params": { "labwareId": "UUID", @@ -106677,7 +107037,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8a1ce0eff736d07bdc2b18393592067", + "key": "eaeaea30384cd95288f7756343d1caea", "notes": [], "params": { "forceDirect": false, @@ -106709,7 +107069,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c4305911fb98b43083e0344880f7dc0", + "key": "c1e1898ded92dc1d921a66bc1e3cca20", "notes": [], "params": { "pipetteId": "UUID", @@ -106725,7 +107085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63a991cec2b20cb573b1a7d2194326c1", + "key": "92e5dc3ba4109abdc9148533522d3fef", "notes": [], "params": { "pipetteId": "UUID" @@ -106739,7 +107099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e992ab01f11d50a247ed2b9e8c8eaff", + "key": "b7bfa65bc75664b073bbe14a344ef61f", "notes": [], "params": { "forceDirect": false, @@ -106771,7 +107131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1feeab1353c7a6384e13b49c7e1d992", + "key": "d52ce8eb806601cbc0ee2e8e1afebe0d", "notes": [], "params": { "forceDirect": true, @@ -106804,7 +107164,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b303ec3f6cb826ab5dc658e92b9bc4f", + "key": "3e320dda23f33865fe13de4417c4472e", "notes": [], "params": { "correctionVolume": -6.666666666666667, @@ -106823,7 +107183,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e2b231b84642b062928077f81a5e7fab", + "key": "cec71d8c85a7f8c3190cff9ec1e3afa6", "notes": [], "params": { "seconds": 0.2 @@ -106837,7 +107197,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5b2aa936b5c7a9c1e2ae49c5bc44f81", + "key": "8ded1d51e94b8ac70731b28a34f1a977", "notes": [], "params": { "forceDirect": true, @@ -106870,7 +107230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb72d901da0ffeb8e85d71080d566237", + "key": "b0e7e72d94d82a1b3bd219219ad7b08b", "notes": [], "params": { "seconds": 0.5 @@ -106884,7 +107244,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77452cc641093531a6a944dad6d3b571", + "key": "cb5a6843254dc0713c2a9ce28879a476", "notes": [], "params": { "correctionVolume": -7.113333333333333, @@ -106903,7 +107263,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "922faa23a04c492acb227eea789970a8", + "key": "fed768cdd4ed94e676ccac5ab95bf3a6", "notes": [], "params": { "seconds": 0.2 @@ -106917,7 +107277,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b82bf7cf79c865029c28d64e1734a89b", + "key": "9ba18fc29da9941934347aca69fc010c", "notes": [], "params": { "forceDirect": false, @@ -106949,7 +107309,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4dc884c387f08822fca89f4da224085", + "key": "ba00a63606c23bb2e85152bd3860fd50", "notes": [], "params": { "correctionVolume": -6.666666666666667, @@ -106969,7 +107329,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edd1071f6ac3d4bfd402ad642c9fba07", + "key": "eed75a22e9da062165561c815c4bc043", "notes": [], "params": { "seconds": 1.0 @@ -106983,7 +107343,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70ef5c41ddf42f090bd285de58ab0f5f", + "key": "8151000ed242b274526a9484f90c9a4a", "notes": [], "params": { "forceDirect": true, @@ -107016,7 +107376,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66a415da1cd031bde61c542d14e57255", + "key": "d56ce0e8f9594895f0f3ac0195478d8e", "notes": [], "params": { "correctionVolume": 0.0, @@ -107036,7 +107396,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "728cdbe5652783966604d93505a415a3", + "key": "5a9d8da892cc1b803de203ea2820fa5f", "notes": [], "params": { "seconds": 1.0 @@ -107050,7 +107410,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94d68274015f26881c74ebd45f693589", + "key": "c7a72ca01dcf946a09eaee05a538b628", "notes": [], "params": { "forceDirect": true, @@ -107083,7 +107443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe776c943b7280882aa2506f2a7d6a46", + "key": "1e7425af09141d030b6e4f20062f4179", "notes": [], "params": { "seconds": 0.5 @@ -107097,7 +107457,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90c29c31eada39d93ccf7333a802a406", + "key": "f8e94fea1b38ec2aa96a5fcc2719aab3", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -107116,7 +107476,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d9b3cd97332d103a06bcb9b44a0c8706", + "key": "393a47448165ff1175bee79ab3af51e9", "notes": [], "params": { "seconds": 0.2 @@ -107130,7 +107490,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ea585074a0bb05c9191e4006fb0ca21", + "key": "f2d61cfff13914ead4842cdee6592bfc", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -107159,7 +107519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7d4826807298cfe70f91ecc532678ce8", + "key": "9c1e01aec6b6db653a127da3b61eb132", "notes": [], "params": { "homeAfter": false, @@ -107174,7 +107534,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6caea0f39666f8fc44cec5708123826f", + "key": "6b26a8bba4f6e85b6b2fa3e9bf6e0e8b", "notes": [], "params": { "liquidClassRecord": { @@ -107537,7 +107897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6349621d169ddccff4c1d4e3faec1bdf", + "key": "fc81a3d1f37b9f98e59de43149007e2d", "notes": [], "params": { "labwareIds": [ @@ -107559,7 +107919,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "567f57ff1067fcbce0246df9a44e0dbd", + "key": "ac378148d0a6433470e5bd46425d71f1", "notes": [], "params": { "labwareId": "UUID", @@ -107592,7 +107952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd64037cdeeedfb4f8e8b7dacb408596", + "key": "8cdda5b604d9bfd333a5bfd80004661e", "notes": [], "params": { "forceDirect": false, @@ -107624,7 +107984,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e385bcf0a271620b554c75008bb34cca", + "key": "14375c548651ced27b398b0453ee2dc1", "notes": [], "params": { "pipetteId": "UUID", @@ -107640,7 +108000,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed4c444144f78d66a97d5ee0eadb76e3", + "key": "8bdf5f524d2bf6701998f949a5ec01dc", "notes": [], "params": { "pipetteId": "UUID" @@ -107654,7 +108014,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3acecfec1487f1863fe776d134b5dbc1", + "key": "a4b1f10be1dff5bdb8c9d4d9f7520a8b", "notes": [], "params": { "forceDirect": false, @@ -107686,7 +108046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff2449b1f6a9f1339dd401184b2e9ef8", + "key": "d8875c3d746e6d618df1ceef68386d85", "notes": [], "params": { "forceDirect": true, @@ -107719,7 +108079,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3afcc964a724cb739327fb7667f59a53", + "key": "b97d2a88c688fc1ebaa2839467352eec", "notes": [], "params": { "correctionVolume": -0.6333333333333333, @@ -107738,7 +108098,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec40ef1c4f642b2122856a6d17ff6ca8", + "key": "c6e63ac844ded7e7c52cb6b72ebdb22c", "notes": [], "params": { "seconds": 1.0 @@ -107752,7 +108112,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcd1a1a14119c7bdae4e9610fbdf0d4c", + "key": "0264c212a31b5696db7024781d0b8618", "notes": [], "params": { "forceDirect": true, @@ -107785,7 +108145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d971da96f7178ebaf3fa7c0a0611f62f", + "key": "75065622177fb6a52e4703cff63558c1", "notes": [], "params": { "forceDirect": false, @@ -107817,7 +108177,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8d8384b1a056954b1d2297bc17a40ba", + "key": "2e5e6908f2cde15309d9e159dc965230", "notes": [], "params": { "forceDirect": true, @@ -107850,7 +108210,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e7a5cebda2a4dca618268a950e44cff0", + "key": "32a1cd93d707aa23721db0bd2b01441c", "notes": [], "params": { "correctionVolume": 0.0, @@ -107870,7 +108230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5fb1b103e57e8761a58754356fbed523", + "key": "364b21e398497204f81d4d17c0f4fd0f", "notes": [], "params": { "seconds": 0.5 @@ -107884,7 +108244,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8563c3f1f260766e034a69e78378b8ae", + "key": "a0e568665669cb4463eb9fcf38c916f2", "notes": [], "params": { "forceDirect": true, @@ -107917,7 +108277,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1fc6c403565cfbc971cbf4933fa6b0d5", + "key": "39393cbffcec33759a4e7aeac0051fa7", "notes": [], "params": { "pipetteId": "UUID" @@ -107931,7 +108291,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0cda617c887f39741694f8ba2e7d3fd", + "key": "de7e60e9d2b1017966338a8c09f2509c", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -107960,7 +108320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "56bdc6414c64657ee9bf4af03936407e", + "key": "0e3b9d367fccbcf689476a6ebaf25156", "notes": [], "params": { "homeAfter": false, @@ -107975,7 +108335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3160ecd5c26c7d7b5274cd45ef5973d", + "key": "af97885a798e520670ec4b18e0f98b0b", "notes": [], "params": { "liquidClassRecord": { @@ -108310,7 +108670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7b1f358a72ba29c30d8d63dba21b7f9", + "key": "ff721cb6ca71b42ad38a1875cdea5306", "notes": [], "params": { "labwareIds": [ @@ -108332,7 +108692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3a8ec387c1b0056293af0871f0a4a0a", + "key": "aea03ca10676106ffa716241756efce1", "notes": [], "params": { "labwareId": "UUID", @@ -108365,7 +108725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f93ace06b80451503e2b19e0d2789fb", + "key": "af61dd3a54cd4365ec0b152608b3a5b1", "notes": [], "params": { "forceDirect": false, @@ -108397,7 +108757,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e40cd3e7d7262fc3a3d4b7bbffd5668a", + "key": "8361ae5e9a1eb8789939ea1526f42009", "notes": [], "params": { "pipetteId": "UUID", @@ -108413,7 +108773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54509a46fb87be6760f85b47f3523297", + "key": "50d084176b1421cb014817ac91781a77", "notes": [], "params": { "pipetteId": "UUID" @@ -108427,7 +108787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4136e3721eea2731295721058a2576f0", + "key": "3604484daab17dea1aae4aaf1ac00bfb", "notes": [], "params": { "forceDirect": false, @@ -108459,7 +108819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52c15c7fdf619cba5d2f61b1cf8c8b2b", + "key": "953a6cef11462c3826604b27bf966a2a", "notes": [], "params": { "forceDirect": true, @@ -108492,7 +108852,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ae8693e1370085102dd6b28658f6bb4", + "key": "e04759c4c3f107bda1ead3bcc8320af8", "notes": [], "params": { "correctionVolume": 0.0, @@ -108511,7 +108871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02f907d06fceae2c71ac6b7867aa1a80", + "key": "7d66533872ed4a45ba0cac27c366712b", "notes": [], "params": { "seconds": 0.75 @@ -108525,7 +108885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7006e8bc09c1d6c1879087ddc479d4d4", + "key": "c4ec6ecae525b10f4f49775304d2deb3", "notes": [], "params": { "forceDirect": true, @@ -108558,7 +108918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b855149764b58b6ac1f384e4935c256", + "key": "c7b77ce9580e7de51f7f8454d9013f0e", "notes": [], "params": { "correctionVolume": 0.0, @@ -108577,7 +108937,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f29d1b5c4065bfa8bde27ec1a8da848", + "key": "a8e6f4e3567b76c501033c9efae66507", "notes": [], "params": { "seconds": 0.75 @@ -108591,7 +108951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ac1a068f438f3c76516c98a47e2395b", + "key": "dc4296600e74ddf5f7919a0548f167ab", "notes": [], "params": { "forceDirect": false, @@ -108623,7 +108983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "516c5feb1a673ab3a175fea55c67412e", + "key": "5c19ea45fe6568a524bdbbf505a6a19b", "notes": [], "params": { "correctionVolume": 0.0, @@ -108643,7 +109003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d02ae77a343b950f32cf2709b06fea7", + "key": "55e640fe96e3b13dee14b6535c7b6839", "notes": [], "params": { "forceDirect": true, @@ -108676,7 +109036,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e970c44f40069ed6e132a013af872a2", + "key": "1086adfda03b6ce3b611ee0240dd1f37", "notes": [], "params": { "correctionVolume": 0.0, @@ -108696,7 +109056,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a003864433f8f17a3cb4673e1c74e86", + "key": "64db43c5fdb5011375fb183f14736f35", "notes": [], "params": { "forceDirect": true, @@ -108729,7 +109089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2fa3cb5d79c1925fe612a6a03e94b7e", + "key": "9c94e431d6f7a3a046def76de3ea1c70", "notes": [], "params": { "pipetteId": "UUID" @@ -108743,7 +109103,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "755769ff6378b8fc9c4c2a4188557cd0", + "key": "bfd4378bc2edd6ca1f5c555bd91ecec5", "notes": [], "params": { "correctionVolume": 0.0, @@ -108762,7 +109122,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d40078d7add0bcb8b5520c7244855e57", + "key": "2d88425d9c63393e98423ac51d0c25a8", "notes": [], "params": { "seconds": 0.75 @@ -108776,7 +109136,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "42692d0bbbc0390c33f563b7c106286e", + "key": "79610a070b2921804d1865eed22abdf6", "notes": [], "params": { "forceDirect": false, @@ -108808,7 +109168,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80b3a809d31a1c3d165195aaf1e7b90e", + "key": "d64bd2b637badf2f5f03261909b0574c", "notes": [], "params": { "correctionVolume": 0.0, @@ -108828,7 +109188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5807ec8de9701248c0b9bc600f40a7ff", + "key": "1d1b1688277f16e641fed57e2e5ae6ce", "notes": [], "params": { "pipetteId": "UUID", @@ -108844,7 +109204,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "39628162cdcf1bcb167c2ad7c2f800e9", + "key": "764423458a99ead867c26e429fb18187", "notes": [], "params": { "pipetteId": "UUID" @@ -108858,7 +109218,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "87fc2daf7214e3e91d2719a8008bc1d6", + "key": "93e68b385f4e6125106be2c3b069b95c", "notes": [], "params": { "forceDirect": false, @@ -108890,7 +109250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "808baa971043585dff47fbddfb2293c0", + "key": "1b006ef561e3e048a0f9e36fd3141ec0", "notes": [], "params": { "forceDirect": true, @@ -108923,7 +109283,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b1eeafe7a06b9f70f2db9d9522c80f0", + "key": "5a0c20f7fad8a92446e9e0b6da69213e", "notes": [], "params": { "correctionVolume": 0.0, @@ -108942,7 +109302,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a12aa6925efd3a830fe5581f150975c", + "key": "2ac7f914d53295d7a8a03d9ac2357473", "notes": [], "params": { "seconds": 0.75 @@ -108956,7 +109316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2978d78b2df710a59403fb79621b097", + "key": "1b42fe4f6b587bde21e9937f659c363b", "notes": [], "params": { "forceDirect": true, @@ -108989,7 +109349,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "884bdd37521d2e190f766606f8abe7a4", + "key": "ade6ecb406ce9ab5f2fd36df97c486ee", "notes": [], "params": { "correctionVolume": 0.0, @@ -109008,7 +109368,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fde79928fa2f85619fcee8b3146da7de", + "key": "71bcf1e7bda9be06ecaa40fa9abdbce6", "notes": [], "params": { "seconds": 0.75 @@ -109022,7 +109382,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b6184d45f9729c850559ce17a8c6b78", + "key": "34003d2213b46a70162fc2b98b32aab5", "notes": [], "params": { "forceDirect": false, @@ -109054,7 +109414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0810c06e24c13995d482acafc4ae4000", + "key": "635bdf79e1a4093da023aee93afcb205", "notes": [], "params": { "correctionVolume": 0.0, @@ -109074,7 +109434,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c9511de521b349b6c77af5c20e9c535", + "key": "41e668ae234a2c97ae5d713fe496023c", "notes": [], "params": { "forceDirect": true, @@ -109107,7 +109467,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb984d62242b77d1bdd3be90d2d89b75", + "key": "e41f609457e1cf430cba8b45407353f9", "notes": [], "params": { "correctionVolume": 0.0, @@ -109127,7 +109487,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "128f3a5bb23e91733c0f4cb0f424d005", + "key": "4da71f44b87e45422daff9cc9e8c91bb", "notes": [], "params": { "forceDirect": true, @@ -109160,7 +109520,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "688a98abc5e67be8b5645f688c3c9e7f", + "key": "733d3922a8a6ac4caa13ab95e0211a58", "notes": [], "params": { "pipetteId": "UUID" @@ -109174,7 +109534,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d40fd9159dcacd6ae41f1da13406ef55", + "key": "ba6bfb0d5c4886f765a78e5c02de6b46", "notes": [], "params": { "correctionVolume": 0.0, @@ -109193,7 +109553,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24c06437eb9bd0cdf0287c77ff14a69a", + "key": "21141c2a1718ef3e943a593df83db004", "notes": [], "params": { "seconds": 0.75 @@ -109207,7 +109567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "200b889bbe7ad65d4f2a4b68b0d5832e", + "key": "4d7862c66277f07174cccc96957b5f03", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -109236,7 +109596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e6e1535639889f9a2e934a23b98ee70", + "key": "ca16c68ed4b9dbe7ebd842618eacb48d", "notes": [], "params": { "homeAfter": false, @@ -109251,7 +109611,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10c80974ef9bbff047d63721caf50194", + "key": "9bde318e425dd865513444d267f7ac9c", "notes": [], "params": { "liquidClassRecord": { @@ -109646,7 +110006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "136a0bb272e847d72342b87fdb393a9c", + "key": "7b1fb95fd4c1b672a287c609e52b931c", "notes": [], "params": { "labwareIds": [ @@ -109668,7 +110028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b62a37e0600a665ca811dd386f73d361", + "key": "3a07df1a7ee32db6e7ea5686f82f263c", "notes": [], "params": { "labwareId": "UUID", @@ -109701,7 +110061,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8ea3eb554cf423f8374292e3d589137", + "key": "72c01c8dfcb15cc253ffdf1f36b9a718", "notes": [], "params": { "forceDirect": false, @@ -109733,7 +110093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77a1125eae46241b50f67cdb31ad65b3", + "key": "0ee00d88cbbab927ede2ae4ffb6113ba", "notes": [], "params": { "pipetteId": "UUID", @@ -109749,7 +110109,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abf0da3b685f6fadc8d43517372119ec", + "key": "17716dc83839fcbfa51594430f820853", "notes": [], "params": { "pipetteId": "UUID" @@ -109763,7 +110123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f3ace3359ece5b715af3cd1c904c5a19", + "key": "bf592329dc59523143adce368f2cd317", "notes": [], "params": { "forceDirect": false, @@ -109795,7 +110155,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86a2fd5027b02573465bc437ab48e2df", + "key": "35a0f9c52144888f37984a4104591ce6", "notes": [], "params": { "forceDirect": true, @@ -109828,7 +110188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bcbf4145af9263da3816d7321bc02a4", + "key": "9e9a5aa328f5a81880817dd5bafd3bb6", "notes": [], "params": { "correctionVolume": -5.326666666666666, @@ -109847,7 +110207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "410b2b2ef1b90e31e4bf692ec6fb2e6d", + "key": "766ca47b913065f4d6f88e2f38afd089", "notes": [], "params": { "seconds": 0.2 @@ -109861,7 +110221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6707b73dce6bfb5c92746ac35cf50d48", + "key": "1a1dd65eb63731457abca8419054656f", "notes": [], "params": { "forceDirect": true, @@ -109894,7 +110254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05ba64957e6e21b2727cb38191e0f505", + "key": "9e3d26fe83ed8cdcfdd397c17cdad96d", "notes": [], "params": { "seconds": 0.5 @@ -109908,7 +110268,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1988f0acd7afb6aeccbfd76d5e44c14", + "key": "196bb2c2b30b9ceffd7666be544bfefe", "notes": [], "params": { "correctionVolume": -5.773333333333333, @@ -109927,7 +110287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2dfe436920c130b2085ad86fb3173be", + "key": "4ff97c4b470e3d6c90a32493d79eb466", "notes": [], "params": { "seconds": 0.2 @@ -109941,7 +110301,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f6a1b9ecf02931e2e14b130c92353ea", + "key": "39ddb515929776a74c79ecffb002ed15", "notes": [], "params": { "forceDirect": false, @@ -109973,7 +110333,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "297c371a55a532e2b8b1f2cafea8fe4e", + "key": "5618fd31673d83a1bb633b5d4ddfcfd4", "notes": [], "params": { "correctionVolume": -5.326666666666666, @@ -109993,7 +110353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6765d750dee4d70e3bed708b0630413a", + "key": "d6c9eaa7267bad86f989532ec63f2f18", "notes": [], "params": { "seconds": 1.0 @@ -110007,7 +110367,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a29497f7ff2aaf1921ac358ec160bd6d", + "key": "69b16ca39498027f0a4ad02aff1ebca9", "notes": [], "params": { "forceDirect": true, @@ -110040,7 +110400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "338d8b313e016a580ea17bbd10c027eb", + "key": "40525c15a35e4754d39cd4b1d0a9fd9d", "notes": [], "params": { "correctionVolume": 0.0, @@ -110060,7 +110420,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e45dccf07b4746f677874783725fcdaa", + "key": "1414e22dfac73c9700e2246633fd0187", "notes": [], "params": { "seconds": 1.0 @@ -110074,7 +110434,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "809ba2693f8046c75b707569234a2179", + "key": "e72c5669c2604009e80b1d4fe2ac1f63", "notes": [], "params": { "forceDirect": true, @@ -110107,7 +110467,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "778ce211542a64c932cff8f9639a9023", + "key": "0f5c146565d15d5bfc9db2f27dc60d32", "notes": [], "params": { "seconds": 0.5 @@ -110121,7 +110481,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e609c78029328026b92ea35796736b92", + "key": "d56f190a0bc3bbb8a2450f6899bdf8d1", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -110140,7 +110500,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4cb918b632ddc1ca74929d274145e09", + "key": "24ca7955631045c917a2a4159f1eba88", "notes": [], "params": { "seconds": 0.2 @@ -110154,7 +110514,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7da4f55903e9f186339ef9fb3c4e2179", + "key": "9a93d18d2e43ff23c7f35e47a115db0b", "notes": [], "params": { "forceDirect": false, @@ -110186,7 +110546,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1843af464339a10b8dc2eda906006d25", + "key": "99d140cd224d43f0d131882bad485d9a", "notes": [], "params": { "correctionVolume": 0.0, @@ -110206,7 +110566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a12f1db5a0c874a9a7dca110d899d25b", + "key": "a8a9cef4d144bbfd6aff1a9204d5ad76", "notes": [], "params": { "seconds": 1.0 @@ -110220,7 +110580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4bffa8d15c182b8d43fd08d745ddbd9c", + "key": "51323a8121a700210450338da15cc6aa", "notes": [], "params": { "pipetteId": "UUID", @@ -110236,7 +110596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9503849960095f7ed929d1c52546da8f", + "key": "490d218cc47a7b5c0a6e470240bd6b5b", "notes": [], "params": { "pipetteId": "UUID" @@ -110250,7 +110610,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce9e8c079da81cbb341cc760339f01b0", + "key": "f1b4c28b083164d05ccfb82d03cfc15c", "notes": [], "params": { "forceDirect": false, @@ -110282,7 +110642,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0ce7cb9f12cf9d686cef7547758d949", + "key": "a0f8e83bbd66f64f673a99efe88d4f1f", "notes": [], "params": { "forceDirect": true, @@ -110315,7 +110675,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "193a08f382b0ff42d92cb7420f68a040", + "key": "bd78fd97f52ebb754dd1b8d3a19d8f54", "notes": [], "params": { "correctionVolume": -5.326666666666666, @@ -110334,7 +110694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5d26f9bb31b7d0e2783a991ede1a2cd", + "key": "8380fb4395efd3029e9c2c3287c34aba", "notes": [], "params": { "seconds": 0.2 @@ -110348,7 +110708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a063247068bcb94a9f16c9c623fcf57", + "key": "f3c75952667eca833aa345b79885bf89", "notes": [], "params": { "forceDirect": true, @@ -110381,7 +110741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e1bb2c5e0473b6a21149bee79049bde", + "key": "fe54ea9c1ce872b144c7aee96a25f130", "notes": [], "params": { "seconds": 0.5 @@ -110395,7 +110755,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a40def53785eec6fa4b9ece406921df8", + "key": "614bfba7b938a48aa9d695b48efd1f77", "notes": [], "params": { "correctionVolume": -5.773333333333333, @@ -110414,7 +110774,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1e22ef4a52d9a761c9ccd2c448cf9dc", + "key": "8a00dc1c420213c3557d25703f4576f0", "notes": [], "params": { "seconds": 0.2 @@ -110428,7 +110788,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4adecbb01b2433b1ca90491edd8bf453", + "key": "331f6d4a78aab798ab23df88c3dd16b6", "notes": [], "params": { "forceDirect": false, @@ -110460,7 +110820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57341e26774320ad086cafc9c02c6128", + "key": "547008a26b9c7ef6cb42c25907c0eeea", "notes": [], "params": { "correctionVolume": -5.326666666666666, @@ -110480,7 +110840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f53de175bb3c9a36b31a7af1ee6ebe2", + "key": "f59e9e1b11f2d7e047d636296ace5b40", "notes": [], "params": { "seconds": 1.0 @@ -110494,7 +110854,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7cf8558a6f6eb3ecfaa18cbc19dfb54", + "key": "7e24f74cbb5d40dae4ec37a5063ddf71", "notes": [], "params": { "forceDirect": true, @@ -110527,7 +110887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5705ce7246d2f98d4231d2b6249742b5", + "key": "6819c7a74ef5ac0e69c19eb13e879cea", "notes": [], "params": { "correctionVolume": 0.0, @@ -110547,7 +110907,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bbd313b8a2be1621181ea99e859e22f7", + "key": "2f5cdbea986a6c0224e2bf9eef434d5d", "notes": [], "params": { "seconds": 1.0 @@ -110561,7 +110921,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c68dfc4c565592e1b85f5828540a586", + "key": "03a4c1baffd5b1bd96611f9cc12652fe", "notes": [], "params": { "forceDirect": true, @@ -110594,7 +110954,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a92c8a23bf9d5bc99f5df9dee9c8916", + "key": "b710afe2aae929d3e87818a421d8bf5a", "notes": [], "params": { "seconds": 0.5 @@ -110608,7 +110968,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3271413ec84b0ebc854c3b18bc966cb8", + "key": "4d8a20e263c5e27d6cace9506000fc34", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -110627,7 +110987,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "807edf8ece7b0feb71234817d16473cb", + "key": "c5a4895bdd843e5ce950ad357adbb9af", "notes": [], "params": { "seconds": 0.2 @@ -110641,7 +111001,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75aa6f1b6b0f6ccdabe698af786eee8b", + "key": "8d6e280527d3cf817d25bfe941b6e6a1", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -110670,7 +111030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23781d60df3a1951702194b567b96978", + "key": "ccf06828d263d85b408eed2149f06f11", "notes": [], "params": { "homeAfter": false, @@ -110685,7 +111045,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44c39d43d3403944f1e4100ca1a35a1b", + "key": "0e94fa1815524318a1fda4de4405c906", "notes": [], "params": { "liquidClassRecord": { @@ -111048,7 +111408,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "825a6fd68c18886c154c5842dbd2bf8e", + "key": "9a5e2dac4e597db4b93bd7661b91f845", "notes": [], "params": { "labwareIds": [ @@ -111070,7 +111430,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "424d4cef2a99b88af760903ad583cf32", + "key": "7e3502870c15e24ac2708c7d2c0f1360", "notes": [], "params": { "labwareId": "UUID", @@ -111103,7 +111463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a582976e5c34f45db02f4258cf329c5d", + "key": "a7da0ef143cf97259f14446e41d9de3a", "notes": [], "params": { "forceDirect": false, @@ -111135,7 +111495,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9fd07e410fb6b0fc7e21ba3d11d026a", + "key": "7378db881fec549ce23c9c5e5ff7a3ff", "notes": [], "params": { "pipetteId": "UUID", @@ -111151,7 +111511,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "676c85b320c4ef1ee5fd14e3245b8e15", + "key": "768b0c1b6e300be4037cc44adc80e15e", "notes": [], "params": { "pipetteId": "UUID" @@ -111165,7 +111525,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16f7fbba780511b64df0fd0ce2e663fd", + "key": "29ddcd47ef8a4ef4b768655095a8e93c", "notes": [], "params": { "forceDirect": false, @@ -111197,7 +111557,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41deacfe626969bfb8a06e0e1253e878", + "key": "f0b48b9c175e1762a76d349da9e2a139", "notes": [], "params": { "forceDirect": true, @@ -111230,7 +111590,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f798315738e39f5145401c51f1058971", + "key": "b93bee6c362307dcd5608f81ef7f1065", "notes": [], "params": { "correctionVolume": -0.5333333333333333, @@ -111249,7 +111609,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "537c53ab71707915b68ebaeafe793376", + "key": "ad39e1689b7fe08d0a53b5e46afe17dc", "notes": [], "params": { "seconds": 1.0 @@ -111263,7 +111623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4dcebb6407647b5224f98dc559b9ed9", + "key": "d05ad20bd4efd16f19c1419c4e618381", "notes": [], "params": { "forceDirect": true, @@ -111296,7 +111656,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dfb694710df8e9b8959d0efa2667373c", + "key": "7cb83971304751ffd8c8b6f4ec421c72", "notes": [], "params": { "forceDirect": false, @@ -111328,7 +111688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64496d450028818aabca8d8306590dab", + "key": "0b3f841be9a593da59575b62a264cd3d", "notes": [], "params": { "forceDirect": true, @@ -111361,7 +111721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37011f3141e51cd8849ac09380205489", + "key": "5e1388e975245a547f8cd390d616068b", "notes": [], "params": { "correctionVolume": 0.0, @@ -111381,7 +111741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1560bdfdd47232bd193c6fe515c0b29", + "key": "6ab745cfd1b98747da0451b26f0ac3d7", "notes": [], "params": { "seconds": 0.5 @@ -111395,7 +111755,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6222e9f900d1422a4402c18d73ae9018", + "key": "499a99bd60039bc1ba108d8e93969de3", "notes": [], "params": { "forceDirect": true, @@ -111428,7 +111788,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac6de5921f68e65cd00a2e2d999f264f", + "key": "bc51086a599f34f09430ff5bdcd13f26", "notes": [], "params": { "pipetteId": "UUID" @@ -111442,7 +111802,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9ddb7b9beab06384ca4f339178fefef7", + "key": "8e9f0213fbab5d564f3f5028824c001b", "notes": [], "params": { "forceDirect": false, @@ -111474,7 +111834,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f3803089370258098e0d5f2def3aa861", + "key": "2bd7f09119ec9d8f0cdf64011fd2e77d", "notes": [], "params": { "pipetteId": "UUID", @@ -111490,7 +111850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a823d9923a206126c91c43181e882fb", + "key": "cc00a4ccde4742768bde6a3244906bf5", "notes": [], "params": { "pipetteId": "UUID" @@ -111504,7 +111864,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31bd43f5ffc715b76f86c19f4f99412e", + "key": "84eeb037906ca3cb5ce8e614c36b1c53", "notes": [], "params": { "forceDirect": false, @@ -111536,7 +111896,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c129011480185958e8c228d15ea20eb", + "key": "f6679cfc4e2418064c76fc714bed7ec0", "notes": [], "params": { "forceDirect": true, @@ -111569,7 +111929,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6de7ac16d8718287dd9309213c41f04e", + "key": "d5daadbc1d3ef7bf9540fe36934c740a", "notes": [], "params": { "correctionVolume": -0.5333333333333333, @@ -111588,7 +111948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c67792956bcd80c675ef168de5ab54d", + "key": "19ad504095ca1e60eaedb13ab40385da", "notes": [], "params": { "seconds": 1.0 @@ -111602,7 +111962,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba343ab8d12f1588b0167ededa305edc", + "key": "f760fc179ddb917998abb8cf12291552", "notes": [], "params": { "forceDirect": true, @@ -111635,7 +111995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52c163f4bf5b4b3d1e074b576c34710e", + "key": "9011968bb8213728da1506b29c9cb6b1", "notes": [], "params": { "forceDirect": false, @@ -111667,7 +112027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73dc8eafed85f7ac01f676296d2f4699", + "key": "e41b8369d7df6ce5ac43dcf264c1ba2d", "notes": [], "params": { "forceDirect": true, @@ -111700,7 +112060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b1dedde5bfd4724c4401fead802c5c1", + "key": "2381c92c62f2d2b8ff4585cc84c5f6df", "notes": [], "params": { "correctionVolume": 0.0, @@ -111720,7 +112080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "287003b67bd05183941035ce720aec08", + "key": "f0c1aa79d77a6705d8d77e8746b12f16", "notes": [], "params": { "seconds": 0.5 @@ -111734,7 +112094,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc4ca1b38c3049448e57955ad94a799e", + "key": "c1bf83b9e296084863072c17661c9ff5", "notes": [], "params": { "forceDirect": true, @@ -111767,7 +112127,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4847ca97617caef357abc87a31f6827", + "key": "bbe5d70cae7ba6e274ac1433a68b4e14", "notes": [], "params": { "pipetteId": "UUID" @@ -111781,7 +112141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2380e969a405e62a8c1de146b3c97588", + "key": "4d3bca0739890e319378c1e76faeccb2", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -111810,7 +112170,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f9950cfacc2d8d82f30c01e8836d527", + "key": "33a41330f54cf1a82c443badafcc2907", "notes": [], "params": { "homeAfter": false, @@ -111825,7 +112185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8bc9989a411605ffbdd72e728ef2a54a", + "key": "48385e070428aaaadfb81b7b382e5350", "notes": [], "params": { "liquidClassRecord": { @@ -112160,7 +112520,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f28b777f8bbbee2f8e918dd31e133ff", + "key": "7c1bbbe34931d62c506e8e1a8bfc7949", "notes": [], "params": { "labwareIds": [ @@ -112182,7 +112542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f7497ec0105359af8018e1dbf84d992", + "key": "c050fc25b6f1e7a81980addb9a33d757", "notes": [], "params": { "labwareId": "UUID", @@ -112215,7 +112575,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22c68c21368d541354eba97a010cc1d8", + "key": "a0577bfe4e582e3e9c0b95921d4adfb9", "notes": [], "params": { "forceDirect": false, @@ -112247,7 +112607,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4c4717515c79feedb3ce4094fa93cec", + "key": "e4317a65ce3a2f119d19602005f46b52", "notes": [], "params": { "pipetteId": "UUID", @@ -112263,7 +112623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "432342f5b5fb638ed8895a566e8a0fc3", + "key": "4ed5f2eec0996a26b311c79b97e45555", "notes": [], "params": { "pipetteId": "UUID" @@ -112277,7 +112637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5989f788d022906d32d3caffc88055e", + "key": "cc44b06c8d33ad57e79dac18c3209848", "notes": [], "params": { "forceDirect": false, @@ -112309,7 +112669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a29d19dd8bf20e3a54e01e3e878cf54e", + "key": "9eb97b3a154599a3e54debca76cc0fe7", "notes": [], "params": { "forceDirect": true, @@ -112342,7 +112702,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f868430a6ff8cd7eecb4aa41b20f5479", + "key": "88dcfbb4e3efa4517227ca04ff2cb02d", "notes": [], "params": { "correctionVolume": 0.0, @@ -112361,7 +112721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89c95e8a35ca5a448c8b3acc4cd3d70f", + "key": "20fb8ecafb219ce01f85901555818764", "notes": [], "params": { "seconds": 0.75 @@ -112375,7 +112735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "56b110d5ace9aff336fd6f151fe30062", + "key": "7dcbf7bae09b0de423538f3ea9fcf6bd", "notes": [], "params": { "forceDirect": true, @@ -112408,7 +112768,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d491ecf0e3018895bdf3e25cf78f3ab6", + "key": "197ff1b37c68ab48caaf07358bbed26c", "notes": [], "params": { "correctionVolume": 0.0, @@ -112427,7 +112787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07ee9a0a7ebed0b646d9fad5cc7148e5", + "key": "b42e888c3b9efe3db3c9c53ea15c8101", "notes": [], "params": { "seconds": 0.75 @@ -112441,7 +112801,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1005bc2bea1630fcb0942483342197bc", + "key": "4c73d348f7e8a0dc719371dbcdd47fdd", "notes": [], "params": { "forceDirect": false, @@ -112473,7 +112833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41e6cb1f7102f3e83a1f6274153b02b2", + "key": "6a805cf9b7bd8d222fc5ee98e17e0174", "notes": [], "params": { "correctionVolume": 0.0, @@ -112493,7 +112853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "792a8b92776e4b876e6f4c0236605be8", + "key": "5017759dc4dec045f27a0b769a69d39f", "notes": [], "params": { "forceDirect": true, @@ -112526,7 +112886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b45832c4f279fe659f1b769e0e5cba30", + "key": "aaf95f785ce7431ef6518f04a34b7304", "notes": [], "params": { "correctionVolume": 0.0, @@ -112546,7 +112906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "100a36d9d1372aadd0f9d1b7b92aa59e", + "key": "e1f46de9ca29e9aac40135bb3ad0586a", "notes": [], "params": { "forceDirect": true, @@ -112579,7 +112939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89cf9d58238af00fa93006d508661a50", + "key": "e70e4eaf11304ee2efed546ff5b94432", "notes": [], "params": { "pipetteId": "UUID" @@ -112593,7 +112953,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1fecb40d815ddf2925577491b7e1671", + "key": "b15c458d362d9e9aafb0163cda97b23a", "notes": [], "params": { "correctionVolume": 0.0, @@ -112612,7 +112972,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24b1aa72dd9db1fe3922f4e760181f3b", + "key": "46eb8c582d8981005cae3c0332ac6ad3", "notes": [], "params": { "seconds": 0.75 @@ -112626,7 +112986,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36959fa8d8d87843933db73fee442569", + "key": "c1aa2c664dd0b251140b1d464b32136d", "notes": [], "params": { "forceDirect": false, @@ -112658,7 +113018,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "218c59cd59a7a84bdf22049f85351cfb", + "key": "bbf7846d9a28ecce561b20bc3789737d", "notes": [], "params": { "correctionVolume": 0.0, @@ -112678,7 +113038,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4a3fc4889aaa5d25ea465377af3bc25", + "key": "79e8a3a024ef6cedb1b211260097df96", "notes": [], "params": { "pipetteId": "UUID", @@ -112694,7 +113054,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb3d6619884f4c721399a7c683036869", + "key": "6142f31221f62cacf142e10f85284168", "notes": [], "params": { "pipetteId": "UUID" @@ -112708,7 +113068,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99387efd3ecaee1ec7aef7f50da6b873", + "key": "aa52abec4d239bd76358e7dc08214d86", "notes": [], "params": { "forceDirect": false, @@ -112740,7 +113100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f678c867649e6e1c5e92a980d3f91a7", + "key": "134518412053a10343ced8d033e0a343", "notes": [], "params": { "forceDirect": true, @@ -112773,7 +113133,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45584418e012b2d724ab71c82d0919b2", + "key": "e846153a2db0f7a0a296908f77c109d9", "notes": [], "params": { "correctionVolume": 0.0, @@ -112792,7 +113152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "03dac6cdd6a2d27c7527a96305552c65", + "key": "272dc82b69f9a4b712a55449d2ab314c", "notes": [], "params": { "seconds": 0.75 @@ -112806,7 +113166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f44ebcc0b7f76a04fc0e1d71536615b", + "key": "ad5f3eff3538cb3b4543cdf7b7c0cf28", "notes": [], "params": { "forceDirect": true, @@ -112839,7 +113199,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48847ef13e117a984e4f46d4acb7e631", + "key": "a66fcbd43dfe437388c96d81558fa3b9", "notes": [], "params": { "correctionVolume": 0.0, @@ -112858,7 +113218,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75de1bdf43dedd6d215fcb534ad31d9a", + "key": "4a2685eafac71de466489d0332f019c0", "notes": [], "params": { "seconds": 0.75 @@ -112872,7 +113232,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffad911fc2bbf80521e918ca66fada18", + "key": "1cd5885d0be458eff3a9edd833963ef8", "notes": [], "params": { "forceDirect": false, @@ -112904,7 +113264,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e275f71c555e58f6df08d6f0f4e3cab2", + "key": "4b0bdae7fc77e9369923a01d7a390715", "notes": [], "params": { "correctionVolume": 0.0, @@ -112924,7 +113284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9f1eafb7ca9546d7b961dc85a4fede1", + "key": "2acfa9b83cb0a4cb1947d028819360b7", "notes": [], "params": { "forceDirect": true, @@ -112957,7 +113317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa565cfb87620384b0ed17826eea547d", + "key": "5b3ebc3ead6483502155687ba4b67e94", "notes": [], "params": { "correctionVolume": 0.0, @@ -112977,7 +113337,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "573f5a2ab5685e703be89443c6c164be", + "key": "a2368a9f46090156d15a47edb90d816f", "notes": [], "params": { "forceDirect": true, @@ -113010,7 +113370,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc830964300dc4e99e93bae88ab2770f", + "key": "87bacd5f92fb81cc87422e149054c9b8", "notes": [], "params": { "pipetteId": "UUID" @@ -113024,7 +113384,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e721b39a66ca9fc3f635a1abef39c0c8", + "key": "7a5053e16e3d5043f5ca78114b293f5e", "notes": [], "params": { "correctionVolume": 0.0, @@ -113043,7 +113403,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21b43509396c6de3a545d1c49e241129", + "key": "b9ef10322a442af3edce5f544b56504f", "notes": [], "params": { "seconds": 0.75 @@ -113057,7 +113417,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27d58cf58955b43e54fed6e884be4bc2", + "key": "0b630541c30921cac5fa408f8635b4a2", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -113086,7 +113446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4773c011972b1e4ca0b5bc56ce6e30eb", + "key": "85398a8851a796cfed4d1708799f2d3f", "notes": [], "params": { "homeAfter": false, @@ -113101,7 +113461,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d05ff51f23c2701ff804a1a66c9cc32", + "key": "83c400219e157003531472a9413c2eb8", "notes": [], "params": { "liquidClassRecord": { @@ -113496,7 +113856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8554f0aae346b6729c7f5ac43e2c9030", + "key": "cbc58d91bbc5189a73546ab6948feff5", "notes": [], "params": { "labwareIds": [ @@ -113518,7 +113878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34a8ed4731247e5aee9a1771ab57eede", + "key": "2e0bb6e6277b357d483a9187eae25e23", "notes": [], "params": { "labwareId": "UUID", @@ -113551,7 +113911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ffbb2478bf3a45e417ef0fe36d708bf", + "key": "041777d7d69d8f069001e7228b884bb5", "notes": [], "params": { "forceDirect": false, @@ -113583,7 +113943,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf262cd41283bd3ac51ff8223e0ab736", + "key": "ee866e6ecb4a36ad97b6c07fdff6f387", "notes": [], "params": { "pipetteId": "UUID", @@ -113599,7 +113959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "448273a8b8032e5b1e6d4a561d28acd1", + "key": "99800f96310053fee14f0c5bc02aa628", "notes": [], "params": { "pipetteId": "UUID" @@ -113613,7 +113973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab6acce15576b42e1280ca9ae2c50a13", + "key": "c55902a5beaefc4f18489292b8d3a1d7", "notes": [], "params": { "forceDirect": false, @@ -113645,7 +114005,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd721dc852646621569e0307e0507c99", + "key": "be3a979c58fe52cf9413b4d85f293825", "notes": [], "params": { "forceDirect": true, @@ -113678,7 +114038,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a27904ef5a866bfd4feca3b11657fd18", + "key": "64d894c283325b977f74536f2ac2c2be", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -113697,7 +114057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54346c217792feb567f81df058e5616d", + "key": "5f4bac01d4208b627fb40fc0dfca6d08", "notes": [], "params": { "seconds": 0.2 @@ -113711,7 +114071,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ec060d02dcfe1b7f582245c7633bfc5", + "key": "ef8aae9edf6a388bff8d48d96bbbb322", "notes": [], "params": { "forceDirect": true, @@ -113744,7 +114104,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72b69eac2f49212122b58e2d805f66c6", + "key": "f75dee2be858bf9d56412d456e024e44", "notes": [], "params": { "seconds": 0.5 @@ -113758,7 +114118,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b38b65385dd58b23b7a497103530e037", + "key": "f1987982b6e64ada80bb0bfab43d5b63", "notes": [], "params": { "correctionVolume": -8.453333333333333, @@ -113777,7 +114137,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ade7a8532a39a27560ca1d66a98fa817", + "key": "43fa8605eb5a8e8fccc509daf13f8ef8", "notes": [], "params": { "seconds": 0.2 @@ -113791,7 +114151,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85bd4b2dfa46daba06d027619b0f6f99", + "key": "649fa1c2047da0603a7214bf56d193b1", "notes": [], "params": { "forceDirect": false, @@ -113823,7 +114183,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "347bb029b53faeea6bf12caae3ca1e7d", + "key": "19170c08c40995764887757cf2b01842", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -113843,7 +114203,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c8d73b4c2c01e4c4f9beb87d8533107", + "key": "8ae9bd7e06e8c96709e946460a1d1a56", "notes": [], "params": { "seconds": 1.0 @@ -113857,7 +114217,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec2e7b1235544d8d9d27577a817c4ebc", + "key": "a48a2352a214ad997f7a90dbe4f2fc99", "notes": [], "params": { "forceDirect": true, @@ -113890,7 +114250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e166413560c0e556e7ebcde150242e14", + "key": "b79ed84c94d9a146638d78d3dfaddf7f", "notes": [], "params": { "correctionVolume": 0.0, @@ -113910,7 +114270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ded28854bf91b4e72870a8f69f3978ba", + "key": "a01353fa4486723114171000568f5825", "notes": [], "params": { "seconds": 1.0 @@ -113924,7 +114284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "344dcaa8762a7dba1c683c856efcdf06", + "key": "c2a12fa202a6cdac5eb2d6246c84be29", "notes": [], "params": { "forceDirect": true, @@ -113957,7 +114317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a03eaf6b24e10554f3ab9819c5753dcd", + "key": "826f4ccddc73d8ca472a35f26f7db198", "notes": [], "params": { "seconds": 0.5 @@ -113971,7 +114331,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95f8bf885daaae31b424e56cc0b4c6f6", + "key": "35f9d8d594e4776cc6173725ec8fe2b5", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -113990,7 +114350,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd2a2c9f65e5998a5786024bee2b4e51", + "key": "d1f4287d6d826d475da49a79ac96bdef", "notes": [], "params": { "seconds": 0.2 @@ -114004,7 +114364,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e7988358e41266ec9f51f89d55e44fc", + "key": "e6bf971e36996a5eb48a3a43073aaf1b", "notes": [], "params": { "forceDirect": false, @@ -114036,7 +114396,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7ccbc14e65eb279a24a900729d1b8a9", + "key": "89af1f7aad2387fbdff523a2c2261784", "notes": [], "params": { "correctionVolume": 0.0, @@ -114056,7 +114416,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cea54129787e55ba3d724b4e87416f1d", + "key": "b24961e7fcaa068a20ce2069973dbfc0", "notes": [], "params": { "seconds": 1.0 @@ -114070,7 +114430,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "42e1e90041f5527417955a8840c1ea3d", + "key": "fbaa98fbca341d3b266dcb85bdabee93", "notes": [], "params": { "pipetteId": "UUID", @@ -114086,7 +114446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "181510d31343abc5c147b76638b8817f", + "key": "5b76daac85984114e96a3d9ff6f21fe7", "notes": [], "params": { "pipetteId": "UUID" @@ -114100,7 +114460,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a99e1661ab10c882ef81e69da981a20", + "key": "456b611f185c2cff3a6930d004e2e91c", "notes": [], "params": { "forceDirect": false, @@ -114132,7 +114492,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c47e90d906af030660d194885f035b2a", + "key": "caf1bba7933e4d417298ec5208d5630c", "notes": [], "params": { "forceDirect": true, @@ -114165,7 +114525,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aab8c27824369ca8d67b029c83e09541", + "key": "a5f709e1d60e00f3b4d78a23412050dd", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -114184,7 +114544,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f35bb394c3339a8ac87ebe3132adb6f", + "key": "37607b975dc00566a6ff0c9be38e43e0", "notes": [], "params": { "seconds": 0.2 @@ -114198,7 +114558,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e25bfa0bc65fcfb564d3f4e181487257", + "key": "ed5b6b185a3b154303c69ba070a707b4", "notes": [], "params": { "forceDirect": true, @@ -114231,7 +114591,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "00615ae4d62824274612ea415317f1aa", + "key": "f0d63ce7e5134e52dcef729b9c77449d", "notes": [], "params": { "seconds": 0.5 @@ -114245,7 +114605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36b442913dca29331cf5b574aaac0cb9", + "key": "9a2fe4f7d9f79aa072e39a1562aa3a7c", "notes": [], "params": { "correctionVolume": -8.453333333333333, @@ -114264,7 +114624,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2387fff2d97943345e0e861c3ae70e6", + "key": "f17c9bba43141363ab54bb1fcbcfdf94", "notes": [], "params": { "seconds": 0.2 @@ -114278,7 +114638,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cea4e434d444cd23668830b482b9614", + "key": "85182ea74975d7b4fad74de7b7e4acb9", "notes": [], "params": { "forceDirect": false, @@ -114310,7 +114670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "327170e766005ca44d7ac054e3c410d5", + "key": "276b46264fa83c2c2a0df269582d35b2", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -114330,7 +114690,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ce3f1e66fb129382e69bf83e92ef2e8", + "key": "69bfeb612a0488719986dc260694cb0b", "notes": [], "params": { "seconds": 1.0 @@ -114344,7 +114704,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61251e988ab6963293432d8c0fc4287b", + "key": "9cc8c35db210f5a20c7f7fba3c7f6b55", "notes": [], "params": { "forceDirect": true, @@ -114377,7 +114737,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9edba18d0cca44e977a952e8c43ea3a9", + "key": "a0e213e387661f919b3882ed2eea2cd8", "notes": [], "params": { "correctionVolume": 0.0, @@ -114397,7 +114757,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c91bcc0a2e7f76b607e3c94b199d6ea", + "key": "c3e8f350319117130f2c9b1481619d77", "notes": [], "params": { "seconds": 1.0 @@ -114411,7 +114771,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7340208ddef4a7f0209aeba8e3824282", + "key": "4b15cd651a7a3dc959d610f779e169ae", "notes": [], "params": { "forceDirect": true, @@ -114444,7 +114804,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b113f80e44ff47fefcc775ce1b6f5e2", + "key": "3b534bad38d8691ccb10420735867572", "notes": [], "params": { "seconds": 0.5 @@ -114458,7 +114818,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ecc55ce5eb0b8cbbc67757b65fe16fda", + "key": "57a49e5936c18a2ff4571d3ac78586fc", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -114477,7 +114837,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37f449495c49be05d7cedd2d1ba79508", + "key": "b6084cd9f8529149879cfefb689470d2", "notes": [], "params": { "seconds": 0.2 @@ -114491,7 +114851,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5833928b0ee127398e9e6399b4c4abf", + "key": "288f7b33c6461cf5c907eef9d0eeb71a", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -114520,7 +114880,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd97786c6e67e6be54e90f13f6c9ed21", + "key": "58e8c36e242fea2cc5636f95d6b5e7a2", "notes": [], "params": { "homeAfter": false, @@ -114535,7 +114895,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1580c80cb46c9522948665903ce10b9f", + "key": "aad066a7b8dbf8b62b93301f073207b9", "notes": [], "params": { "liquidClassRecord": { @@ -114898,7 +115258,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b08f0625e4ef44d33f5b862d4b29ab7b", + "key": "348dc92ce7900b3a8601f07ad0415e4a", "notes": [], "params": { "labwareIds": [ @@ -114920,7 +115280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa3d459a455010ee6cb2f84f71bf38a1", + "key": "242bef43df55de41f18762c9b844c1ee", "notes": [], "params": { "labwareId": "UUID", @@ -114953,7 +115313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d49a6efe05681ce58a41120e641c41a5", + "key": "6d44b9a26ed23ee3a9dae4d8619cd9e8", "notes": [], "params": { "forceDirect": false, @@ -114985,7 +115345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74ba85049229fd55449eff0059da2064", + "key": "05d669f7da41794e14f42ada576e3e9e", "notes": [], "params": { "pipetteId": "UUID", @@ -115001,7 +115361,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f52bac9312d1d6391f523370c1d95f83", + "key": "1734fc3eb26df595f862aa37dd4ea23e", "notes": [], "params": { "pipetteId": "UUID" @@ -115015,7 +115375,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abbbde4dc58e830e034572f3e824966a", + "key": "cfd4b3ccfbe7626d51a6960c95cd7ae0", "notes": [], "params": { "forceDirect": false, @@ -115047,7 +115407,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ceefedb266795fae2b749e1f67a6023e", + "key": "6fc829973fd1ef1d25509f44e5093947", "notes": [], "params": { "forceDirect": true, @@ -115080,7 +115440,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f1447c74385cf8b5573dff8f8c6eee08", + "key": "0d08f685b2b15dcaff226e8b5ad953fd", "notes": [], "params": { "correctionVolume": -0.7333333333333334, @@ -115099,7 +115459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79a4b805b89bfab13757bb0ed0b0b961", + "key": "868d850cb71bab372b057cf6f54b04f3", "notes": [], "params": { "seconds": 1.0 @@ -115113,7 +115473,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84be2c05a82c0d7bafa65b0cee24e945", + "key": "2f6453b5b64498d6b604059b2554ad3c", "notes": [], "params": { "forceDirect": true, @@ -115146,7 +115506,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ce754ce2ea9bd3cbc4749a379fcc4f7", + "key": "5d4a9e71f2f1a771c7f262e1c9af6ef6", "notes": [], "params": { "forceDirect": false, @@ -115178,7 +115538,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32079581f88d6d3f6798702741513b2c", + "key": "764511cda18d416428994053fb07ca4e", "notes": [], "params": { "forceDirect": true, @@ -115211,7 +115571,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc7ef7efc4292338721818309d388256", + "key": "cbae269072dc418a6cdbe1aad4095b52", "notes": [], "params": { "correctionVolume": 0.0, @@ -115231,7 +115591,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90c25c1701e608d7ec4b57d42859d11c", + "key": "05415292dc4421c8432a0991a64ec9ad", "notes": [], "params": { "seconds": 0.5 @@ -115245,7 +115605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19ff468e1cdeda496ccabb4b669cba23", + "key": "82b156f68b040aae8ee3652a877594bb", "notes": [], "params": { "forceDirect": true, @@ -115278,7 +115638,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23f1e4200824b296f6b65bdc6677ae5b", + "key": "221c36e5edf3c8ca8c3ba9df35101be3", "notes": [], "params": { "pipetteId": "UUID" @@ -115292,7 +115652,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2737c02b3ad4582f9cd3f6221ec9409", + "key": "7d522e3232d3c299a2a07af1d5785a0e", "notes": [], "params": { "forceDirect": false, @@ -115324,7 +115684,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24bbdfd4227a26b5adce37c823a1de52", + "key": "a14193c498e12e01295fb3ad9fd47e1d", "notes": [], "params": { "pipetteId": "UUID", @@ -115340,7 +115700,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99bfcb73c63f0afbfbe9efc63e4c9840", + "key": "61d0b017d6a40e9fa4e67c09ab845dd0", "notes": [], "params": { "pipetteId": "UUID" @@ -115354,7 +115714,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edc4370b7b100afb41f6b759e3eb06ab", + "key": "340f72679414ba6e87a643a3936ccab3", "notes": [], "params": { "forceDirect": false, @@ -115386,7 +115746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4775e605dcf9c3fdfd0d19d7c606977", + "key": "ef8c95ca14a2f47b9d04f1bf1a8b95da", "notes": [], "params": { "forceDirect": true, @@ -115419,7 +115779,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f33ac35acc09e060a12cb3507a7b735d", + "key": "621fbd2d97aa58466d2b2b1b40835de1", "notes": [], "params": { "correctionVolume": -0.7333333333333334, @@ -115438,7 +115798,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6dd817724c469c80c084c9bef676bd3e", + "key": "87b98c82cc0dead8bcfdfdcca1308fdf", "notes": [], "params": { "seconds": 1.0 @@ -115452,7 +115812,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eade1df85d35a9d79549aacb56998ad1", + "key": "a4407484fe3e82ba7809dd38400a4a43", "notes": [], "params": { "forceDirect": true, @@ -115485,7 +115845,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eeeac12089416552ffb8af5919baaa69", + "key": "ff52cdd2510dcc5c77da25e584418125", "notes": [], "params": { "forceDirect": false, @@ -115517,7 +115877,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa67cae6e84eda5ede98ebe3a1179a97", + "key": "a185f2d9b34f0884665fa69ad6e01d14", "notes": [], "params": { "forceDirect": true, @@ -115550,7 +115910,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8fd4efe49bc4d86071273f9b0165fcd", + "key": "493afb4b132437659a37949f72132abe", "notes": [], "params": { "correctionVolume": 0.0, @@ -115570,7 +115930,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83d872dda08494e406668ad8f4599d8c", + "key": "c7006bf6cf56ca7ad65533d87288ce35", "notes": [], "params": { "seconds": 0.5 @@ -115584,7 +115944,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "105b173836ff6b1476431348ea9d8b1e", + "key": "0d6c9ac7e33ad4f6e52e73a96f13c888", "notes": [], "params": { "forceDirect": true, @@ -115617,7 +115977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a628a594ed7a7dc6dfe802176c8bbebb", + "key": "458283b6520d03d062af3d81895e7250", "notes": [], "params": { "pipetteId": "UUID" @@ -115631,7 +115991,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30fbd2c1b0b3ab6241867e91b3b015ac", + "key": "89f6f0535299270151f9849ad07de179", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -115660,7 +116020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3278c33129b7c208de521e48003ac228", + "key": "57c7e913079d8e2ee3af548acda14aff", "notes": [], "params": { "homeAfter": false, @@ -116044,7 +116404,7 @@ ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 50.0, "location": "destination" @@ -116847,7 +117207,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -116879,11 +117239,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -116918,7 +117278,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -117069,7 +117429,7 @@ "delay": { "enable": false, "params": { - "duration": 0.0 + "duration": 0.5 } }, "dispensePosition": { @@ -117104,7 +117464,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -117114,18 +117474,18 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { - "flowRate": 478.0, + "flowRate": 318.0, "location": "destination" } }, @@ -117160,7 +117520,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -119045,11 +119405,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -119270,7 +119630,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -119280,16 +119640,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c3b37eae0f][Flex_S_v2_25_P200_stacker_2].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c3b37eae0f][Flex_S_v2_25_P200_stacker_2].json index 3531dcb0901..169550061c3 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c3b37eae0f][Flex_S_v2_25_P200_stacker_2].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c3b37eae0f][Flex_S_v2_25_P200_stacker_2].json @@ -24787,7 +24787,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -24930,7 +24930,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -25073,7 +25073,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -25216,7 +25216,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -25359,7 +25359,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -25502,7 +25502,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -25663,7 +25663,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -25806,7 +25806,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -26164,7 +26164,7 @@ "z": 99.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -26307,7 +26307,7 @@ "z": 99.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -26450,7 +26450,7 @@ "z": 99.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -26593,7 +26593,7 @@ "z": 99.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -26736,7 +26736,7 @@ "z": 99.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -26879,7 +26879,7 @@ "z": 99.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -27040,7 +27040,7 @@ "z": 99.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -27183,7 +27183,7 @@ "z": 99.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -27543,7 +27543,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -27686,7 +27686,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -27829,7 +27829,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -27972,7 +27972,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -28115,7 +28115,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -28258,7 +28258,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -28419,7 +28419,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -28562,7 +28562,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -29067,7 +29067,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -29301,7 +29301,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -29645,7 +29645,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -29987,7 +29987,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -30331,7 +30331,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -30673,7 +30673,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -31017,7 +31017,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -31358,7 +31358,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -32018,7 +32018,7 @@ "z": 110.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -32182,7 +32182,7 @@ "z": 110.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -32835,7 +32835,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -33010,7 +33010,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -33185,7 +33185,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -33360,7 +33360,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -33535,7 +33535,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -33710,7 +33710,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -33903,7 +33903,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -34078,7 +34078,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -34785,7 +34785,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -34860,7 +34860,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -34935,7 +34935,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -35010,7 +35010,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -35085,7 +35085,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -35160,7 +35160,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -35253,7 +35253,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -35328,7 +35328,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -36141,7 +36141,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -37075,7 +37075,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -37867,7 +37867,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -38557,7 +38557,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -39349,7 +39349,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -40039,7 +40039,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -40813,7 +40813,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -41745,7 +41745,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -42212,7 +42212,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -42679,7 +42679,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -43146,7 +43146,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -43613,7 +43613,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -44080,7 +44080,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -44565,7 +44565,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -45032,7 +45032,7 @@ "z": 99.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -46073,7 +46073,7 @@ "z": 110.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -48613,7 +48613,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -51767,7 +51767,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -52497,7 +52497,7 @@ "z": 110.0 }, "tipDiameter": 5.58, - "tipLength": 47.4, + "tipLength": 48.32, "tipVolume": 50.0 }, "startedAt": "TIMESTAMP", @@ -52818,7 +52818,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -53108,7 +53108,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -53344,7 +53344,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -53580,7 +53580,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -53816,7 +53816,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -54052,7 +54052,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -54273,7 +54273,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -54676,7 +54676,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", @@ -57183,7 +57183,7 @@ "z": 110.0 }, "tipDiameter": 5.59, - "tipLength": 48.61, + "tipLength": 48.77, "tipVolume": 200.0 }, "startedAt": "TIMESTAMP", diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[dcd3c0777c][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_distribute_liquid_Override_50].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[dcd3c0777c][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_distribute_liquid_Override_50].json index f132d20d170..0de68bcfeb1 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[dcd3c0777c][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_distribute_liquid_Override_50].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[dcd3c0777c][Flex_S_v2_24_P1000_8ch_None_HappyPath_Overrides_distribute_liquid_Override_50].json @@ -5387,7 +5387,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -5419,11 +5419,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -5643,7 +5643,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -5653,16 +5653,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -5930,7 +5930,7 @@ "key": "f196b0c91604eb3dbf74b9af8aa73b89", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -5980,10 +5980,10 @@ "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -5996,7 +5996,7 @@ "key": "927291bd3230c2e293231b52c000e468", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6046,10 +6046,10 @@ "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6098,7 +6098,7 @@ "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 22.0 }, "result": { @@ -6140,12 +6140,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1bd1d804cfbd3f22633e3fda44e5a07", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a69a5c7acdcf4c0c3ecc848077be4d2e", + "key": "1e950c43f02d3566e3677be25de77062", "notes": [], "params": { "pipetteId": "UUID" @@ -6159,16 +6174,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b656345142c00077e6e63b58031664a7", + "key": "2683679857100b15b2931afa39facec0", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6178,10 +6193,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3cf74f7a301b3f147475a0c785b0c441", + "key": "24499f5b348bff8451d0af3e2017e071", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6192,7 +6207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d631bd752cb0c0bf68116b35f3bc6644", + "key": "8c7085aed9c721a935ffa974ac9bb056", "notes": [], "params": { "forceDirect": false, @@ -6224,17 +6239,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "210b54a76f3fbc3cbb725d55bbf52cbc", + "key": "db86f72291440ef416c0b6d80553f3fd", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6244,7 +6259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9095243ccc0e87a5a82309c7558ac13f", + "key": "5ab68ffbdb7e0f83e1f89d3a090c781a", "notes": [], "params": { "pipetteId": "UUID", @@ -6260,7 +6275,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae27f797828a0d263276b27fd5c4b024", + "key": "ec0b4a84fa133a41595be38b5e498c4a", "notes": [], "params": { "pipetteId": "UUID" @@ -6274,7 +6289,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ef6347e677793d726ada0dfdeba795c", + "key": "94aa1524444010703fa6fd085ecc3ff8", "notes": [], "params": { "forceDirect": false, @@ -6306,7 +6321,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9b3d5e78dea684a1ffff0f2dbee1e01", + "key": "73b97dbe583b72d3f132ad975e5b80d6", "notes": [], "params": { "forceDirect": true, @@ -6339,7 +6354,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20eb83450047146ec97bbf53f2aa6844", + "key": "5c9a33ff099fedaf9b94239c6e3fe3d2", "notes": [], "params": { "correctionVolume": 0.0, @@ -6358,10 +6373,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c9197582ad96a4ef09153c814367b3b", + "key": "3606076e37f5b23a5f56f2f1345b4594", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6372,7 +6387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37a831e54cc7fc1f14ab4811b7e30096", + "key": "fd81a626d85b8ad192f9d7fcc4ae52a8", "notes": [], "params": { "forceDirect": true, @@ -6405,16 +6420,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dae9973749156c927fd1c3a16aebf433", + "key": "edb92e11b0c223f8782caf4d5296b9b0", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6424,10 +6439,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "306ae3d76da3250818937c10a6fd6587", + "key": "72fc8ecb29de5625322c60e8119c6b5a", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6438,7 +6453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27c2bdc802b1292f8a6119d974a824e3", + "key": "59cac71fc9f5c6bce4b5379627f12a8d", "notes": [], "params": { "forceDirect": false, @@ -6470,17 +6485,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9b00c17139e0d884af174dedf2cd2d1", + "key": "0229870aa6de9723d2d37a1efaafffc9", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6490,7 +6505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ed6541a07e2c309e768d524fcb2362f", + "key": "f124f007e1f7f17dba56bc6a759ad295", "notes": [], "params": { "forceDirect": true, @@ -6523,13 +6538,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bba406211221c6e82d95a8bdf9fc777", + "key": "008c6c9eeda1f9bcf208cc367331bc63", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 22.0 }, "result": { @@ -6543,7 +6558,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6069c9ba2cf28ff363e63e490eddd7b0", + "key": "00e8147602e827a82afe386b0199c879", "notes": [], "params": { "forceDirect": true, @@ -6571,12 +6586,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a74f1d82e89e45f17c24da219edc0424", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e44c3a2802abffac120024ed8c19ccf4", + "key": "bd2bf48904078b31f8d804a909d764d2", "notes": [], "params": { "pipetteId": "UUID" @@ -6590,16 +6620,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f04025a0c55f9eae9c18e5e9a9ab941", + "key": "3927491fe4796efd2d8c64535d8b93fe", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -6609,10 +6639,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9ad62530a6e1a5e3e8b7c97effedb70d", + "key": "46dfd2e324de79fa0e8b8b404fa8a612", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -6623,7 +6653,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9b54c6bde00f8043800bfadb3f5bec7", + "key": "248284d1bc235bc28ef06b71d2e6d736", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -6652,7 +6682,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55717f67db4b1addd401e0b455cf4052", + "key": "277bbb61b25dea65277163ecb3bebbbd", "notes": [], "params": { "homeAfter": false, @@ -6667,7 +6697,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2c66816174d60f1743811e61c5f878a", + "key": "17f3063811a727cd677c1316c68e6413", "notes": [], "params": { "liquidClassRecord": { @@ -7066,7 +7096,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73cd94b1ed440ca9fde51734be22b9bf", + "key": "f78a2d3598d49036c2821e984f8978a8", "notes": [], "params": { "labwareIds": [ @@ -7090,7 +7120,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8a65c72d6c5735dd84ac92c4d93bf73", + "key": "4ed11312a328123b4e82f8cb183937e8", "notes": [], "params": { "labwareId": "UUID", @@ -7123,7 +7153,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffa610e18f6f1ec024d3996584e817a7", + "key": "b2dc0f8d203464a506a9bf102e647828", "notes": [], "params": { "forceDirect": false, @@ -7155,7 +7185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b0de3b73f95c7df46cb3cc65d716d5e", + "key": "eb401dc0e17229fcc27e255d0be6783b", "notes": [], "params": { "pipetteId": "UUID", @@ -7171,7 +7201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb3e161880b1bbe1f10cf3b59298eb68", + "key": "ba351ce28e487d289b5e2b82bc17f935", "notes": [], "params": { "pipetteId": "UUID" @@ -7185,7 +7215,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4504ef8e9a99652954c507b1798ad8df", + "key": "7ff6c0331beaeef40e6ba4f6eef9283e", "notes": [], "params": { "forceDirect": false, @@ -7217,7 +7247,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a784f4455a6bbdb9cb7200626cf494d", + "key": "c1fa26f6417792f6da23b58a68a3087a", "notes": [], "params": { "forceDirect": true, @@ -7250,7 +7280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8b44059f5508bf415feddfcaf8fef364", + "key": "eb6b7991b5b59f9252f9a2ed6735c3ab", "notes": [], "params": { "correctionVolume": -1.3, @@ -7269,7 +7299,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db100772316adac83283bcc892053508", + "key": "c72e46432054e6efa735deec6ba3a79d", "notes": [], "params": { "seconds": 0.2 @@ -7283,7 +7313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3213e4e0cfda7d716bc961692b1cc05", + "key": "eace050b5a9a21822b305eced900f4c8", "notes": [], "params": { "correctionVolume": -1.225, @@ -7303,7 +7333,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0f4dc1fae135e05f590f59d327d520c", + "key": "86fa76c9465fe1ffdc791372461681da", "notes": [], "params": { "seconds": 2.0 @@ -7317,7 +7347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "625e993f800b11eb5dc827a3c3fd7c2b", + "key": "86d6143a72832442d7490e13965fe826", "notes": [], "params": { "forceDirect": true, @@ -7350,7 +7380,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4fb6d405bb809b7ffc5a81b88264ef7a", + "key": "f83e3301c0ad60406e8f206ac5246a62", "notes": [], "params": { "seconds": 0.5 @@ -7364,7 +7394,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25916c83013b3761eba09b7bde147bfa", + "key": "1028b24d0ed6ed1a37c5aea7109b4d5f", "notes": [], "params": { "forceDirect": false, @@ -7396,7 +7426,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d7bdbd00b4f63704a27657a5f396897", + "key": "04d9f7350bd69601943e9939a3dde42d", "notes": [], "params": { "forceDirect": true, @@ -7429,7 +7459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e88e23a52b4834ac2d198196a5e4a0cc", + "key": "ab537641c47c135e174b918c19278409", "notes": [], "params": { "correctionVolume": -0.895, @@ -7449,7 +7479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fed7523aeaed8f8e9d809dbe587c2d8f", + "key": "509e09e34625d0a1fc336e8b3789c7b8", "notes": [], "params": { "seconds": 2.0 @@ -7463,7 +7493,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a5fc4416ff9217741b5926b17c459c7b", + "key": "d16cf4047d9b1b0abcbe347466f6394d", "notes": [], "params": { "forceDirect": true, @@ -7496,7 +7526,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dde82fa7fc14f9af41cf570674830e6f", + "key": "cbed750c20406107615c055a8cc4ce30", "notes": [], "params": { "seconds": 0.5 @@ -7510,7 +7540,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c0db5b3781fc8225119bc9f3543487a", + "key": "c5ce16b1909347717257c6899dd66d5e", "notes": [], "params": { "forceDirect": false, @@ -7542,7 +7572,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b234bc0182ddbb88c9b6822160793e96", + "key": "777da6ac3bc35b318e0f03bea2efc0cc", "notes": [], "params": { "forceDirect": true, @@ -7575,7 +7605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f64fd63bf4ab8684230f6745731d238", + "key": "cea3090049ff53c5c6452df47f0b1cf3", "notes": [], "params": { "correctionVolume": -0.15, @@ -7595,7 +7625,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a8aa9e4d50d7e4054e1b9e7935521fa", + "key": "6d7017088af03ee3a8ce26d06e0a0109", "notes": [], "params": { "seconds": 2.0 @@ -7609,7 +7639,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92ab6e3b8fc6652f0cf940809eefaccc", + "key": "46dc97c7ec06dd4a2b048b3289da5857", "notes": [], "params": { "forceDirect": true, @@ -7642,7 +7672,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83ea921ce75c9baf27c6ac9cd2dceed6", + "key": "6dc4c5383f1363e08ad0138e162ab4af", "notes": [], "params": { "seconds": 0.5 @@ -7656,7 +7686,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fad5954307aea3a6d4ef60a939e0b721", + "key": "02c29991b8499f7c43f3fa5fa3ba05fc", "notes": [], "params": { "correctionVolume": -0.74, @@ -7675,7 +7705,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffb17360ba8fbe998d7b4d1758e794f8", + "key": "9d4f6029269840ef3ce3ab3e7026b153", "notes": [], "params": { "seconds": 0.2 @@ -7689,7 +7719,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "645832a9ab2ee50410dc3a0b566010aa", + "key": "b593b6dbf2528fa08a0b98831b3e8594", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -7718,7 +7748,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd1be0c724f0dd624de45542bac60463", + "key": "ff20a5564d527b6e77506455c4882c23", "notes": [], "params": { "flowRate": 100.0, @@ -7733,7 +7763,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "170742cee7cdcda07de09f7956292a58", + "key": "43bf9b755eb836637627d8d1253a54b1", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -7762,7 +7792,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cde6513b1e7997b3824f82c431f79374", + "key": "da11e8f9c8fd9c4ccf4c217d0a1560e2", "notes": [], "params": { "pipetteId": "UUID" @@ -7776,7 +7806,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5418f33cced00c23e5235b4883bf7519", + "key": "6e5cbe789d2c1f070686a346e3a0bc59", "notes": [], "params": { "correctionVolume": -0.75, @@ -7795,7 +7825,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4d6308d456683d94cbe7b30f489b862", + "key": "ed26601e2c9b846473aa10cd4aa94ae2", "notes": [], "params": { "seconds": 0.2 @@ -7809,7 +7839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b58734acdc9aee0e798c04d17082227", + "key": "a8c7afe2894f6f6e7676825eeb5ffc0d", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -7838,7 +7868,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a908af9624177586fefdaa02b7b408bc", + "key": "4df34f868b98a2c4d2334c3be708cd08", "notes": [], "params": { "homeAfter": false, @@ -7853,7 +7883,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed00137bceeffaade7877cfde7b56ac6", + "key": "370e7eef90cadd3c3ca37fac3c692087", "notes": [], "params": { "liquidClassRecord": { @@ -8224,7 +8254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21bce6b7b96287b3fb7db63792d739b0", + "key": "090188f86a123b78c88042f014ef3fbc", "notes": [], "params": { "labwareIds": [ @@ -8248,7 +8278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "593a7305305ef644023116020f4f45af", + "key": "36072ac2798c06d65d970147354a07f6", "notes": [], "params": { "labwareId": "UUID", @@ -8281,7 +8311,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6288011743b80d687b24873a1552d99a", + "key": "b09d885127f80a5f910f3a5b1ac0af87", "notes": [], "params": { "forceDirect": false, @@ -8313,7 +8343,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54fe1364ebfd9f7020a062e545ddf408", + "key": "7d277d87db0986fd12bac4ce12e98506", "notes": [], "params": { "pipetteId": "UUID", @@ -8329,7 +8359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5663997b6b043aebfdf2575fbb2b998", + "key": "afa86a319710292ec8a75da987c89a89", "notes": [], "params": { "pipetteId": "UUID" @@ -8343,7 +8373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2bbf91aab3b554eef00c762018a2621", + "key": "46fbf0bde9431a10652a08396f9c24b0", "notes": [], "params": { "forceDirect": false, @@ -8375,7 +8405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b460ecd7484d17acaf974ceefb498f7c", + "key": "b846aba821d1ea8e0b2ecf937de50822", "notes": [], "params": { "forceDirect": true, @@ -8408,7 +8438,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e20843194e6b3ca437c227dacc8bb45", + "key": "6a912fb5abe01491add95e50f58a49f1", "notes": [], "params": { "correctionVolume": 0.19, @@ -8427,7 +8457,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37d269318cb431e086fb3ae722e29cab", + "key": "e3b6f7baa9f0ad25f84ca7c3db26bb13", "notes": [], "params": { "seconds": 2.0 @@ -8441,7 +8471,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1014693c0b1f2eae0c03cb2812abfe6b", + "key": "03d882f5aaacedac53d78cf94d39d887", "notes": [], "params": { "correctionVolume": 0.1875, @@ -8461,7 +8491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97d410dafb3cf1a8e84045492c6e162b", + "key": "976341139ec99e83a33c53cd18b993fe", "notes": [], "params": { "seconds": 1.0 @@ -8475,7 +8505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3b3b1fcb776d85ff669b829f8e7b2aa", + "key": "98421545b833b344c50fbdf4c5271e7b", "notes": [], "params": { "forceDirect": true, @@ -8508,7 +8538,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3fb008f0f53026d576876cb5f5ae7608", + "key": "f0c3336bb27b835b005cdfd06b54a0ec", "notes": [], "params": { "forceDirect": false, @@ -8540,7 +8570,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a5958610ef9bbb768e3da750490e2e22", + "key": "d784b4f6a8f4d201283fbb3665949190", "notes": [], "params": { "forceDirect": true, @@ -8573,7 +8603,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84323cad47a72a2f926f6e52fe79d806", + "key": "cc5c6bf864247b5e37dfbf1f8b8ec158", "notes": [], "params": { "correctionVolume": 0.1325, @@ -8593,7 +8623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "09fd597f3c2628627fc077faae0a5609", + "key": "81b1d16e6f8d39b0ce23d8fd90bdd145", "notes": [], "params": { "seconds": 1.0 @@ -8607,7 +8637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0953b4dbe49dd75994e8acce84579a97", + "key": "e1ba5b65b2f21e4dd473323f55dd32c5", "notes": [], "params": { "forceDirect": true, @@ -8640,7 +8670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15473c621cae1db7b0e143fb2e1bc611", + "key": "89e3c09d5b75f0af88802642b9d5f638", "notes": [], "params": { "forceDirect": false, @@ -8672,7 +8702,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2e6a609e5f866f4d9fc118d3a70ecba", + "key": "4a81c29e4d1c4e09fe74252d37944df4", "notes": [], "params": { "forceDirect": true, @@ -8705,7 +8735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b170434e0b20284ac3b2a4bd1548cac5", + "key": "9a6c65160b8e9c148cff938ba98fc96e", "notes": [], "params": { "correctionVolume": -0.05, @@ -8725,7 +8755,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b2128b974d33ed834946eefe4701bd2", + "key": "3464bb8f43cae17c30bdd3716964a51b", "notes": [], "params": { "seconds": 1.0 @@ -8739,7 +8769,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "695f7268325b6b0237243bd2c09688dd", + "key": "0a0aa5de695d3b2a85d47f0ef24378c9", "notes": [], "params": { "forceDirect": true, @@ -8772,7 +8802,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7c387a0757e1f4d29de7352a0e86191", + "key": "28410b9bee8d7bfbea01a158d17415a3", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -8801,7 +8831,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27efc81caf48a0c10456344162aaf27f", + "key": "b7d1fdc4470658ba08f0fdd3c315948c", "notes": [], "params": { "flowRate": 50.0, @@ -8816,7 +8846,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a615be46707e51cfd3f52312baf30bae", + "key": "8a61b76d871fca00609e5ce632a92443", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -8845,7 +8875,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbc09182b6be431dd44187bb2fe4b3fe", + "key": "bc42afcd54937d7121e9b4d0dd6cb685", "notes": [], "params": { "pipetteId": "UUID" @@ -8859,7 +8889,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a586a8f893addaaf7b0e9b578052daf", + "key": "6f50bbdeb1b32e9b590372010a7d86eb", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -8888,7 +8918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f3ec9a78b33b58e81fb52a31f18ae0a", + "key": "972f6370cf27fbe562e3d13b78c2cfcc", "notes": [], "params": { "homeAfter": false, @@ -8972,7 +9002,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -9004,11 +9034,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -9229,7 +9259,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -9239,16 +9269,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fb40609e73][Flex_S_v2_24_P50_P1000_HappyPath_all3_liquid].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fb40609e73][Flex_S_v2_24_P50_P1000_HappyPath_all3_liquid].json index 06fa1ffdee6..42702d4ce00 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fb40609e73][Flex_S_v2_24_P50_P1000_HappyPath_all3_liquid].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[fb40609e73][Flex_S_v2_24_P50_P1000_HappyPath_all3_liquid].json @@ -9340,7 +9340,7 @@ ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 50.0, "location": "destination" @@ -9844,12 +9844,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6823ba88febe2aed4e909a339f51cd67", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc03ac9dd2f3f816bfc1a9be9c2fa4f7", + "key": "577e20193e47dfb7f44b3b1415082f84", "notes": [], "params": { "pipetteId": "UUID" @@ -9863,7 +9878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "550c8b134799f1423b4039a266fec919", + "key": "65679c2c3694d6844f1261109aaedd5a", "notes": [], "params": { "correctionVolume": 0.0, @@ -9882,7 +9897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ba2bf37fe6371f3707b55479883bf2f", + "key": "eb97f095f49b9e1d856180a97a67759a", "notes": [], "params": { "seconds": 0.2 @@ -9896,7 +9911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fab03947a2525ddb7e4e2b1ba24e969e", + "key": "3b83e6488ee1c565dd19c5ec580867dc", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -9925,7 +9940,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1bd7a286b798800baad61b12821ab965", + "key": "aea780cb5223d554c683c99ce1354c3f", "notes": [], "params": { "homeAfter": false, @@ -9940,7 +9955,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6329e89e5390085918263250accd72a5", + "key": "a4953ca130e87bd9f1dd196dff4fde35", "notes": [], "params": { "liquidClassRecord": { @@ -10327,7 +10342,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db8bfadbbe9d137e54ca6bd8def1f1d3", + "key": "a87990bb4f1bd93e88425fa773c6ef03", "notes": [], "params": { "labwareIds": [ @@ -10349,7 +10364,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf2447b960e288165fa1f0e4bc79e7f6", + "key": "2b578a66293ff84d6961f754e9e209f6", "notes": [], "params": { "labwareId": "UUID", @@ -10382,7 +10397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98a01550aff3cfb0f05a4fa2cceaad86", + "key": "4bcebadd4f3ec6887abcf6df376e56f1", "notes": [], "params": { "forceDirect": false, @@ -10414,7 +10429,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "778c0155e4fd938a23b4bbe4df029cdc", + "key": "9375401335745c73e0bf3ad26f2a3af8", "notes": [], "params": { "pipetteId": "UUID", @@ -10430,7 +10445,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20d884bdf4872d09769af552c763ce4e", + "key": "d2d12e5be162d2e7a09b85312d34c43f", "notes": [], "params": { "pipetteId": "UUID" @@ -10444,7 +10459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bba1e656941a03c93ae686ddb64fa52f", + "key": "8f2f457ccb6f233afb45bb6b2535e213", "notes": [], "params": { "forceDirect": false, @@ -10476,7 +10491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c58af61dd4068c5efeb2cee24020e059", + "key": "bca5432a78a70056a1c1df524e08f842", "notes": [], "params": { "forceDirect": true, @@ -10509,7 +10524,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7249b4e0e35d9c24edff681846fafcb", + "key": "60b3264beb9f1fa6cc4f0efa9fed5a12", "notes": [], "params": { "correctionVolume": -0.4925, @@ -10528,7 +10543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1621be094392792d838e184c3d3fdae", + "key": "86f330ca6862a2ba3ad0c88b249fd048", "notes": [], "params": { "seconds": 0.2 @@ -10542,7 +10557,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7366ad00d6bf7a1b3b767235a8f893c0", + "key": "db8ed99cb44fc1c9d2a795d01c0a0be9", "notes": [], "params": { "forceDirect": true, @@ -10575,7 +10590,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e53d90b72e7a4b4e09fdcdea65424eb", + "key": "ba32f6c17869621e69ae5147a4f6b42d", "notes": [], "params": { "seconds": 0.5 @@ -10589,7 +10604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50a2c63b6829bc24dd4e7582a7be42f9", + "key": "e01bcc9dd919aedcc0eb43b8f1f6c448", "notes": [], "params": { "correctionVolume": -0.5, @@ -10608,7 +10623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8918be4767d361b5f2626f3ed807242", + "key": "07566066d748be621f3416149c5191fe", "notes": [], "params": { "seconds": 0.2 @@ -10622,7 +10637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6daa871c7aa0f7b593d84ac5f2026c7", + "key": "e9dc18a58f3925eb083af20d816329ae", "notes": [], "params": { "forceDirect": false, @@ -10654,7 +10669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5ca40736236ad491309213dee4537c6", + "key": "303f227c322f20e6cd8f5590cb3fcdb4", "notes": [], "params": { "correctionVolume": -0.4925, @@ -10674,7 +10689,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83718eb5c5c78f1592e6fe8dc75e0690", + "key": "05783b224cfb476c2b05282fd817fed2", "notes": [], "params": { "seconds": 0.2 @@ -10688,7 +10703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b12c0cb774bcd88cc1fc3c63462509c", + "key": "319c8740a4727ac96987bc486a64cb78", "notes": [], "params": { "forceDirect": true, @@ -10721,7 +10736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46f14cc3102aaeb39ad223e2a7b0be47", + "key": "4c02906c8518188971db6d9746274add", "notes": [], "params": { "correctionVolume": 0.0, @@ -10741,7 +10756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98f21c161812644c12af19b9ff2be852", + "key": "a5f67ba2b6b27fb1f5393d63526430da", "notes": [], "params": { "seconds": 0.2 @@ -10755,7 +10770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f8003976d3d1dd6dcaf5630d2eda409", + "key": "8a3c5fbffb4b91d9c26c94706ca450c2", "notes": [], "params": { "forceDirect": true, @@ -10788,7 +10803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "890e7f235c68a759050497bcc77b9239", + "key": "db8f1be13fb2b29ff9ec5dc527feb9ca", "notes": [], "params": { "seconds": 0.5 @@ -10802,7 +10817,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "420087a3b60be1d16bd8c3b93a658e83", + "key": "c046b6023aa59cf7c1e7826c4277dfcd", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -10821,7 +10836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "778ebfcefdaa26f97e9173ccf234873d", + "key": "e578d5e66d0f373356171d60a7e36cd8", "notes": [], "params": { "seconds": 0.2 @@ -10835,7 +10850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "015b2db15ef59b1c5a1df9b51af9dd29", + "key": "d657ac393f09c2f581031bca9d6419ce", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -10864,7 +10879,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b113de49d61072afbd511a4c7dc1c1d2", + "key": "ba775e8ce66cb4c2573d1bc4131a9326", "notes": [], "params": { "homeAfter": false, @@ -10879,7 +10894,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f1ddb33e72c6e14becd622d284a4d691", + "key": "0716955f20718bd715a1e326d0b85e81", "notes": [], "params": { "liquidClassRecord": { @@ -11254,7 +11269,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef907b21215d32b4b5e9d426e9c54616", + "key": "2afe2a8f29f6b6143ccc50731b416632", "notes": [], "params": { "labwareIds": [ @@ -11276,7 +11291,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f65bbeeb2f4ef494ca84b745e43f90f", + "key": "093bc0b0041c63694462124ff7ca939d", "notes": [], "params": { "labwareId": "UUID", @@ -11309,7 +11324,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d13eecf07c492bdc7f4e3d8dd9d24cb", + "key": "cb3db5f1d10700e4942183f847117dba", "notes": [], "params": { "forceDirect": false, @@ -11341,7 +11356,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbdc20375bf2ebb4fd5966bb166ed131", + "key": "5273f955812b42bcb77c94d853b2a1db", "notes": [], "params": { "pipetteId": "UUID", @@ -11357,7 +11372,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80c70ee703541de3a5a12262c42c6ab8", + "key": "c139c05895912dbe86738cba0be45728", "notes": [], "params": { "pipetteId": "UUID" @@ -11371,7 +11386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a546ba125d5074ab86a1e568e005b50b", + "key": "0f0c35f8f1d1caed5810eaeea3289984", "notes": [], "params": { "forceDirect": false, @@ -11403,7 +11418,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c11da6047208280283d0d10890a6467d", + "key": "5b704cd5dcde42aab12e2a8f9aae1dfe", "notes": [], "params": { "forceDirect": true, @@ -11436,7 +11451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04aaa66d13ce494b13e1e72748e55741", + "key": "e9487acdc3025e5fbdcad3e3cb32e69f", "notes": [], "params": { "correctionVolume": -0.19250000000000003, @@ -11455,7 +11470,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdd705649a838189ec49f7212e71bc78", + "key": "0d575334e185876aa69e1d9ac83862d8", "notes": [], "params": { "seconds": 1.0 @@ -11469,7 +11484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90623baa11936bef724161e6c13062a9", + "key": "f56de9ed195fda104d7556434015e73c", "notes": [], "params": { "forceDirect": true, @@ -11502,7 +11517,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7679da7dfd6296fb72405b6e426f2120", + "key": "5b7434a4d9580803c3694dbb09cfdc17", "notes": [], "params": { "forceDirect": false, @@ -11534,7 +11549,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64a23378b421737405e68d344c7a009c", + "key": "2beb4fedaa0cf9191c2f0a540032cb5a", "notes": [], "params": { "forceDirect": true, @@ -11567,7 +11582,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74ff5ea3acd4745bba757bf9a1157aec", + "key": "49ff22c8faa1c1f61706645a9243bfb5", "notes": [], "params": { "correctionVolume": 0.0, @@ -11587,7 +11602,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b6f9938143cff3cb1132f639e0fab84", + "key": "dff1bff94ae3483a671816210cc3de1e", "notes": [], "params": { "seconds": 0.5 @@ -11601,7 +11616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29b96b9a2df96951c9548323ef4a7a80", + "key": "46f5ae39ae9a6d37dd3fd72e29d855c5", "notes": [], "params": { "forceDirect": true, @@ -11634,7 +11649,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f0bf818e6961680c5e9d6e8ba97bb7c7", + "key": "dc4ff91cc9b39da88aa3185f33477ac7", "notes": [], "params": { "pipetteId": "UUID" @@ -11648,7 +11663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb8c5147d140567841074353ef72977a", + "key": "3d41538d001eb04d44f4d95de9c5bfeb", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -11677,7 +11692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50befa0e255892ba099618b34d21ccfc", + "key": "937636c976d6fc2b7267bc462b4928cc", "notes": [], "params": { "homeAfter": false, @@ -11692,7 +11707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8fe4d7fa9a6b310a3c9d45c4feb1639f", + "key": "989e25b4f906d274b464d15d774a8edf", "notes": [], "params": { "liquidClassRecord": { @@ -11714,7 +11729,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -11746,11 +11761,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -11785,7 +11800,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -11935,7 +11950,7 @@ "delay": { "enable": false, "params": { - "duration": 0.0 + "duration": 0.5 } }, "dispensePosition": { @@ -11970,7 +11985,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -11980,18 +11995,18 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { - "flowRate": 478.0, + "flowRate": 318.0, "location": "destination" } }, @@ -12026,7 +12041,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -12051,7 +12066,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71417e86df952078a197d2e001b999f3", + "key": "4fef25fddcadaa67d3fd5e44ca4ff732", "notes": [], "params": { "labwareIds": [ @@ -12073,7 +12088,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34e3ece27ef0390e82e1162f2a280923", + "key": "7d0ac79ee058fffa62fc86db40a86f67", "notes": [], "params": { "labwareId": "UUID", @@ -12106,7 +12121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9316511aaa139ed3058180cbe74ba36", + "key": "f38042d42f88743d7a43f6012aaff6e1", "notes": [], "params": { "forceDirect": false, @@ -12138,7 +12153,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "efa33110e11555e49d861a66471f74e0", + "key": "e54d0dddd98871191e5be8b95f45a6d8", "notes": [], "params": { "pipetteId": "UUID", @@ -12154,7 +12169,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49e1d1356542eaf13f804db1f6af8187", + "key": "9ee0edcde0af26d5c393d1b3b975c373", "notes": [], "params": { "pipetteId": "UUID" @@ -12168,7 +12183,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "201edc9de139e47f58da1484d3dd664b", + "key": "ddb11688a629ec0c64d6ff0ce9f66a12", "notes": [], "params": { "forceDirect": false, @@ -12200,13 +12215,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f898f5081cbed69c74627fae265f99a", + "key": "dfc9ae3675dc2d22f383e2cde53c0d47", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -12233,7 +12248,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "566579b7a57d97372e419b8a0da228b6", + "key": "6f83b97dd369b8f305f358a3d274879a", "notes": [], "params": { "correctionVolume": 0.0, @@ -12252,10 +12267,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc6448262a71b90ad762abecff92924e", + "key": "6f9b22a5aed968512bfcedfd575d9c59", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -12266,7 +12281,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c073de5a96d3c25b66a7b668d123d3ad", + "key": "f829efddbafb791204ad4c4f878eb260", "notes": [], "params": { "forceDirect": true, @@ -12299,16 +12314,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14b3af82b7f41a986ee98002849f7486", + "key": "5c56f0b1110368ebf0e1fc434626c785", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -12318,10 +12333,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46a860fb41ce938996423dca6aa273e2", + "key": "84b60f6e1a01f8834530ae41cd2da8b5", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -12332,7 +12347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0fed9ccabb7892967ef81dbcb10b4012", + "key": "27e05a6bb3c1139174425fceafafc387", "notes": [], "params": { "forceDirect": false, @@ -12364,17 +12379,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84174e7e2ef3078a4fb4fdccdbedc7b4", + "key": "e45f244b4b6272f6b02b3f3c4160a9e7", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -12384,13 +12399,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f2e16e76e8ff1d03dc6cc7ffbb934a6", + "key": "402e45226580eabb5beb48fe3d43f03e", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -12417,13 +12432,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2d3226b9115fd4b01fcbf4cb2b1d487", + "key": "8aa8a47788964d29446ea730fd8db5a7", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 49.0 }, "result": { @@ -12437,7 +12452,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf023b12317bcf1cd608cab72d207c4e", + "key": "8aa48057332a625febeefe6f1151bb52", "notes": [], "params": { "forceDirect": true, @@ -12465,12 +12480,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4de9231a8600bee36efe5b30be2ca191", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb9879c3476948ef20603bc1b52c6ba1", + "key": "827b42e08be7f38e27f60a593013feee", "notes": [], "params": { "pipetteId": "UUID" @@ -12484,16 +12514,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0663bdd1f8b11e71fb36ef259cc5dd48", + "key": "99f1097110a7514d43a5ef4d063b49ae", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -12503,10 +12533,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf96f992fd24442f37a717439b68f6ca", + "key": "45e4ca7535944af4a3675b4fa5ae7946", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -12517,7 +12547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "750a0717bae94c01acef2008c75f9571", + "key": "00f3b5bc308c4c9889f7e529133fba08", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -12546,7 +12576,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8505c2a4dbb61b4613c225a4f41ab2b8", + "key": "aaedf5645c3f8a139c905f4793fb20fe", "notes": [], "params": { "homeAfter": false, @@ -12561,7 +12591,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f315277b1f471598afdf8e1ef111dee0", + "key": "2eb99e3195618ed576f93e9874494e12", "notes": [], "params": { "liquidClassRecord": { @@ -12960,7 +12990,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0eae63fed42aab34d0846937833dc37", + "key": "45924d4102bfb2421d6b4e04395dc43a", "notes": [], "params": { "labwareIds": [ @@ -12982,7 +13012,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f54adbba5acb58c1272518a1fe6e3f4", + "key": "c499f335a058e376c2495380b261d62c", "notes": [], "params": { "labwareId": "UUID", @@ -13015,7 +13045,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20fb23347de03e44ace95c9726771b3d", + "key": "22d8395f5a0ca178b0b35b953acd8f47", "notes": [], "params": { "forceDirect": false, @@ -13047,7 +13077,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e93e1cba26c175b47691c6391b669e07", + "key": "b67ff1b655767bcf56988cf764e2c932", "notes": [], "params": { "pipetteId": "UUID", @@ -13063,7 +13093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71e11ab531470a94ecdd466cf454d272", + "key": "e027fa10cd4d090ee949d7179cbb73fb", "notes": [], "params": { "pipetteId": "UUID" @@ -13077,7 +13107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca02dbec875992f94dd7a0ea22dfcce7", + "key": "c1a0935a5f3d3dff96b3b6845e76061c", "notes": [], "params": { "forceDirect": false, @@ -13109,7 +13139,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc7fcc696e30858276b9449a4a831168", + "key": "95b7f01e0a695bc3b249584af0bcfe67", "notes": [], "params": { "forceDirect": true, @@ -13142,7 +13172,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "347a6bf03aeaad695ff22d29717ab354", + "key": "15887c399f107c71d5ae3bb43fb71619", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -13161,7 +13191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c3d576d3b1eafea9b6789b77b4ddfc2", + "key": "929d94a3b557d29fd542393e4e1a8c41", "notes": [], "params": { "seconds": 0.2 @@ -13175,7 +13205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "560d45f7798a317fcec67ce7514d6262", + "key": "e643bdb098342c0805e75321035f9844", "notes": [], "params": { "forceDirect": true, @@ -13208,7 +13238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69fce79e67908f98c4c2c7546a0860db", + "key": "3efbc2644e6897b05a021743247c5b6b", "notes": [], "params": { "seconds": 0.5 @@ -13222,7 +13252,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23fa45b25dbab30f8c1431fe47a875ca", + "key": "6ed7b4a272988bacbb4ad6399fcb48c4", "notes": [], "params": { "correctionVolume": -1.3, @@ -13241,7 +13271,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "924dcd5bfc12f97bdf10b52717333624", + "key": "28a28b03590630c846720779f150d151", "notes": [], "params": { "seconds": 0.2 @@ -13255,7 +13285,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f15e6de14b1ab207c20ff36b42f54ec6", + "key": "13ceb3f4eea836ff72be4438e60d6cc4", "notes": [], "params": { "forceDirect": false, @@ -13287,7 +13317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9af8d6287a43831e168dbddd6ba51250", + "key": "af33aaec6cf97dc1cf6eea0f6575cb21", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -13307,7 +13337,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8535c4384b551e697bedf8744a816386", + "key": "0d53291b80dc46a570f7b816fa756c20", "notes": [], "params": { "seconds": 2.0 @@ -13321,7 +13351,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "045cd07ded78435c8c8734e636cdc5ed", + "key": "a5265e9b6dbf569610d122a087afcaa4", "notes": [], "params": { "forceDirect": true, @@ -13354,7 +13384,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "532771657a4928733665f98c20a2535f", + "key": "2d66269b1ea3ceaac03a95919f552e0f", "notes": [], "params": { "correctionVolume": 0.0, @@ -13374,7 +13404,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9e73753db254ff5109269b03a0c210b", + "key": "a5c74d86acdd944acf588c80af1916e5", "notes": [], "params": { "seconds": 2.0 @@ -13388,7 +13418,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e9590e961247e3bf5f20046e34414fd", + "key": "33e61faf6d9ac8a26480991666e6ab1f", "notes": [], "params": { "forceDirect": true, @@ -13421,7 +13451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81269d4b3d04d543a25a00ec2edab140", + "key": "0ea5670624e6215395419b54f990f99e", "notes": [], "params": { "seconds": 0.5 @@ -13435,7 +13465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97cad363c15b39d3a3a9538bf8ab88c1", + "key": "249b85be0c25ba719106d94bcd388efc", "notes": [], "params": { "correctionVolume": -0.75, @@ -13454,7 +13484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "950f497cfdc1aaccea783fe40900cf92", + "key": "a02f69cff7c3ab2a99b1efec720f5975", "notes": [], "params": { "seconds": 0.2 @@ -13468,7 +13498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7009db8cf981ebec01a9bbe05621951b", + "key": "c5c0af2a987a12dd862e53c4619f02f2", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -13497,7 +13527,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d17ad0cd354d0b12940dca4334b37dd", + "key": "e8d08c13cbe2928c0a0babe750ca16ab", "notes": [], "params": { "homeAfter": false, @@ -13512,7 +13542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "645a84d128b00dae8696d42a417e9161", + "key": "1fd7b31c3012cbc86cb603a3b2414f22", "notes": [], "params": { "liquidClassRecord": { @@ -13883,7 +13913,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "043b1989db136eef51f87c710d0d766b", + "key": "71b4a2865edb09a570dacb31d1e7bef1", "notes": [], "params": { "labwareIds": [ @@ -13905,7 +13935,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96e424dab3113bebffc200d2fe5103c4", + "key": "a60dd1a6197ef883b80f386305731410", "notes": [], "params": { "labwareId": "UUID", @@ -13938,7 +13968,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b59bc09263b0f4a3d88d10941927b514", + "key": "e586c0150627e225ad7a32cd8e32da7f", "notes": [], "params": { "forceDirect": false, @@ -13970,7 +14000,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24e8db27ba395b1539e92822bed5d3be", + "key": "97725d4106f2ce247a607430d253f3bc", "notes": [], "params": { "pipetteId": "UUID", @@ -13986,7 +14016,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "756d7c94dab3f2ca9b530b5d5bf66e1c", + "key": "13aab96505a14fbeb517b5b96f65da2e", "notes": [], "params": { "pipetteId": "UUID" @@ -14000,7 +14030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "038360309a5e272c2f39fccae763cae1", + "key": "0bd60af809c196ea40962db90c7e29a1", "notes": [], "params": { "forceDirect": false, @@ -14032,7 +14062,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c16f4afdc1216919e2c185391e2dde2", + "key": "b8232a7d49308535de6d88ee962cc75f", "notes": [], "params": { "forceDirect": true, @@ -14065,7 +14095,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb522c939f61a3c19d9ce071a56ae685", + "key": "3e53e2b092af4c3da107c206da9982c1", "notes": [], "params": { "correctionVolume": 0.1975, @@ -14084,7 +14114,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e16179a5b23d3dc82e89bf970d14d58", + "key": "69fa83b1893716850a53bc1d5c1ea031", "notes": [], "params": { "seconds": 2.0 @@ -14098,7 +14128,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4fcd0d69ec89d213fa0b5d93954e60e", + "key": "0595845c9d32f75486e004695fb6304f", "notes": [], "params": { "forceDirect": true, @@ -14131,7 +14161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "092bdc94aa3e54f5df15ab9ea0e11c10", + "key": "b140a0387b60e4a67216a86aa615dafb", "notes": [], "params": { "forceDirect": false, @@ -14163,7 +14193,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f1c25c520f44a8f3dba5a7b29306a028", + "key": "b6748c4b1eb9a7cf13078cb0d6a99051", "notes": [], "params": { "forceDirect": true, @@ -14196,7 +14226,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f521f21c5fd783da1edcd76866d53ed", + "key": "ab04c6f29c26727708060961619e1d48", "notes": [], "params": { "correctionVolume": 0.0, @@ -14216,7 +14246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43439b90adf5bc573b716f4b194a03a2", + "key": "4d99036909039fffe27fbb6d821805fa", "notes": [], "params": { "seconds": 1.0 @@ -14230,7 +14260,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c7337ff4aef25a38667cf3d2392c03a", + "key": "c5611f9321fd5811394772d8c6ec9655", "notes": [], "params": { "forceDirect": true, @@ -14263,7 +14293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54cb36972f0eae51cac8bff9ff16aed6", + "key": "87d2f21dbb5f91baebbff122c69072ed", "notes": [], "params": { "pipetteId": "UUID" @@ -14277,7 +14307,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "100886e4fc89be910faca7eb88748d77", + "key": "170e4aa87c5600c344af43de9bd97e40", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -14306,7 +14336,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e26ff41cebacc401a5e01c6f6600ec6b", + "key": "5ffc7e0148f2021efa998a66598f8208", "notes": [], "params": { "homeAfter": false, @@ -14321,7 +14351,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ba592c9ec38bb5a897476323286efc0", + "key": "1c8e1480a27b09ef9303fff59717d767", "notes": [], "params": { "liquidClassRecord": { @@ -14618,7 +14648,7 @@ ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 50.0, "location": "destination" @@ -14680,7 +14710,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83532add73739301bd6268a8b9a7acbf", + "key": "d3fec08be71599580e6aff9008f618ba", "notes": [], "params": { "labwareIds": [ @@ -14702,7 +14732,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98ba8f8b89adbc3101921362da98a613", + "key": "2895f63903c82869d37cacf426d2dd0e", "notes": [], "params": { "labwareId": "UUID", @@ -14735,7 +14765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a5f84369f95b98721082d43ad8bff1f", + "key": "b5640b342fce1036498ea1de5e617a43", "notes": [], "params": { "forceDirect": false, @@ -14767,7 +14797,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d7047cb14249b0114d4ef1494bd28f6", + "key": "9c961e0f8ef76ec7ef073bdd1aeb61ed", "notes": [], "params": { "pipetteId": "UUID", @@ -14783,7 +14813,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2cee408984fb5188f3668c716c7e21c6", + "key": "c2984360675c66896324f38ab50fcf9f", "notes": [], "params": { "pipetteId": "UUID" @@ -14797,7 +14827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a196383b52dd7ba4b57730615703547", + "key": "1ac6743235a8c21261539f40fb656364", "notes": [], "params": { "forceDirect": false, @@ -14829,7 +14859,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2f4afc3af427632a902e7202dfadcbb", + "key": "2505ddeacd859fcaca6e10a61e6e61ba", "notes": [], "params": { "forceDirect": true, @@ -14862,7 +14892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20946d6f205a978081536e7189d43b73", + "key": "1ad213f108d4852404956cea60adf71c", "notes": [], "params": { "correctionVolume": 0.0, @@ -14881,7 +14911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8db50c3cf19db9939f224b8fc616913f", + "key": "3476c85bd94fbbd49354fef545b1ad25", "notes": [], "params": { "seconds": 0.2 @@ -14895,7 +14925,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b01c9a1ccce2ed5ebfdd74e4caac48de", + "key": "98b65e09c96a42f208f2138f8566d77c", "notes": [], "params": { "forceDirect": true, @@ -14928,7 +14958,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb1aaa91ea8d215c2f4c08d033d8f1ee", + "key": "d03c8a7052c08179a82b00a1fb11cae6", "notes": [], "params": { "correctionVolume": 0.0, @@ -14947,7 +14977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d6b126bc5ce074e251680b26d12fcb0", + "key": "748d1c29149a901991d9e941c8923f7a", "notes": [], "params": { "seconds": 0.2 @@ -14961,7 +14991,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "050a0e16232f2452b2e41779b25df606", + "key": "dca3ce03b9e49e1d7d86c6238eba5c1e", "notes": [], "params": { "forceDirect": false, @@ -14993,7 +15023,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9a49948c5494d10a09f2b4750aecac5", + "key": "4060f24dac5c2ce6f380547c3a0a401e", "notes": [], "params": { "correctionVolume": 0.0, @@ -15013,7 +15043,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e85f178e441268bb0f02dfb017e6584d", + "key": "4d011dcd652c1631c9e4d2bf3b705b9c", "notes": [], "params": { "seconds": 0.2 @@ -15027,7 +15057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "393388c86291a60cad1a885dcc257e55", + "key": "b7bc76f1d712f9caa3d9074d21baef6a", "notes": [], "params": { "forceDirect": true, @@ -15060,7 +15090,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7399d7599c22dc4b1a86edb51da5312d", + "key": "3d305082bc251ecdda286fb9343dfc1c", "notes": [], "params": { "correctionVolume": 0.0, @@ -15080,7 +15110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3792a96e4cd0be36920b9658ba62d7bc", + "key": "db2f4f1e6cc9abe989a88fc6db6485db", "notes": [], "params": { "seconds": 0.2 @@ -15094,7 +15124,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4faa6acc96591beab2f706f8e4d66f61", + "key": "2a04a558d3b310112e8eb29e2e51fb9c", "notes": [], "params": { "forceDirect": true, @@ -15122,12 +15152,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "203f4e750ce1361bacf1e8aefc692894", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c6d8029026859aa33723ed3fcef4aee7", + "key": "b9cda508d1ae3deb662f8573090ffb28", "notes": [], "params": { "pipetteId": "UUID" @@ -15141,7 +15186,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8975f9fac56ee979d78a6ffb4d9f0c69", + "key": "34238c3c9a9b21af0d96c8a79ddf31e2", "notes": [], "params": { "correctionVolume": 0.0, @@ -15160,7 +15205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11aec6cbcf02e0b970b5798c90ca93e3", + "key": "0765129fe5bda48755a0382b2d9d31b3", "notes": [], "params": { "seconds": 0.2 @@ -15174,7 +15219,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a8dd825e3cef7dff39770c89691edaf", + "key": "3c9fd6cc5efb67e6f06baa19a8af0e78", "notes": [], "params": { "forceDirect": false, @@ -15206,7 +15251,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da85c04b7d22f21bd3facef2ac87f27a", + "key": "78f679d591f4ab579f1a9d174ff458c2", "notes": [], "params": { "correctionVolume": 0.0, @@ -15226,7 +15271,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc991bf6e5e6ac06f2355b11a8a11bbd", + "key": "3657eb52a5e7cff77d2184a62e5341f2", "notes": [], "params": { "seconds": 0.2 @@ -15240,7 +15285,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dfe09a9e3cd237d3b838de754731d1d7", + "key": "04740de0da44d3c6a3715417e13e957f", "notes": [], "params": { "pipetteId": "UUID", @@ -15256,7 +15301,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cda4b409b67bbcd9a16fc367077f5b7", + "key": "a325e4133a2a045edbbb918761fb9371", "notes": [], "params": { "pipetteId": "UUID" @@ -15270,7 +15315,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "598953d662afd11e674f95820b802b5b", + "key": "73900b390979445d5b4e5770518ea2cd", "notes": [], "params": { "forceDirect": false, @@ -15302,7 +15347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb8133f0c16db7925fb8f6d36369c6f3", + "key": "4049f9a4fc5018dfcd849c0aaff64c75", "notes": [], "params": { "forceDirect": true, @@ -15335,7 +15380,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f67244f66f8286715f0ecf8fae1bae2b", + "key": "c81e3e1f50800efeb662522bc77427db", "notes": [], "params": { "correctionVolume": 0.0, @@ -15354,7 +15399,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f19349110520885eb6f2b84299ecab1e", + "key": "7301090dc5384bbaf48b88bbc5c5838d", "notes": [], "params": { "seconds": 0.2 @@ -15368,7 +15413,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e7938a501c1e3496a5d2933f922535f8", + "key": "a0a3691d7dd63cae999ddd0e2dc027cd", "notes": [], "params": { "forceDirect": true, @@ -15401,7 +15446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6be9537e82c4e37a5517c8b851a2fbdf", + "key": "345785fbd8c4e4adaf2bc6d8dd93e006", "notes": [], "params": { "correctionVolume": 0.0, @@ -15420,7 +15465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4bdebad6ce9f52e984df9717e0a4a21", + "key": "ea3fde697e4c6bed374097b0a9056d54", "notes": [], "params": { "seconds": 0.2 @@ -15434,7 +15479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7eb6a84b18b8901b7437b15cb2139a86", + "key": "aa35ad273ccb224ad763e93996cd5b83", "notes": [], "params": { "forceDirect": false, @@ -15466,7 +15511,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22f27eedc612b6ec8e1e012029d8bd2c", + "key": "d9ecf369c9d17465cf9b2e14e5ddd0f0", "notes": [], "params": { "correctionVolume": 0.0, @@ -15486,7 +15531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab97ec6af7666294f8d9af76c7845ba7", + "key": "673cca7f287677d392f187b7cbeb92d3", "notes": [], "params": { "seconds": 0.2 @@ -15500,7 +15545,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0ac967ec318e8e9fa52dd99d662db44", + "key": "f577aa1301303085080c323724000071", "notes": [], "params": { "forceDirect": true, @@ -15533,7 +15578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e564022943b15b5f93e8351ba0123242", + "key": "c6901545e97ea26a490daccb02de6bbb", "notes": [], "params": { "correctionVolume": 0.0, @@ -15553,7 +15598,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a6280ea7a2167b52764225befcc84e8", + "key": "035b7326700b229cf721af6d7e4f6f99", "notes": [], "params": { "seconds": 0.2 @@ -15567,7 +15612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7624e357f768ae3ea1b59e8caddb0248", + "key": "f608d34aac408c097ac999372a7b372b", "notes": [], "params": { "forceDirect": true, @@ -15595,12 +15640,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb9b69bd9dfbf866a25cda67283f4779", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "39ce03d4cf383fe7dc0d786d868fb86a", + "key": "c20fcb8fef2cc5be3d9855bebfc385d5", "notes": [], "params": { "pipetteId": "UUID" @@ -15614,7 +15674,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b48d6d1f98c9f30946335b3ada4b4d5b", + "key": "aaeeaf8ae52ad7fe92a3273099a7608f", "notes": [], "params": { "correctionVolume": 0.0, @@ -15633,7 +15693,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e338e2777e82a75ee8826f37ebd857b", + "key": "fcbb74b52a522e1e789b631ad91130b1", "notes": [], "params": { "seconds": 0.2 @@ -15647,7 +15707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff0f46c3fb6cd734fd72eac41b861b96", + "key": "e57923650e9a592977423f10d2f4d2c4", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -15676,7 +15736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5f8acd744311b87eb6691238c51fcee", + "key": "ccccd43f15fcbb56021a224a0a6cb6a1", "notes": [], "params": { "homeAfter": false, @@ -15691,7 +15751,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8da0973befa59d3623b816c6cc615d03", + "key": "1ceffb8796248f9170d3c7135b4c9621", "notes": [], "params": { "liquidClassRecord": { @@ -16078,7 +16138,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "365d5637d43ad55f75ae72028e0d4d5b", + "key": "056078c3de1f2a10d64399c592e63a4a", "notes": [], "params": { "labwareIds": [ @@ -16100,7 +16160,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63d05ef4029d4bace3e76a493912333c", + "key": "d7335671a0e38e159c96e6fcfa739122", "notes": [], "params": { "labwareId": "UUID", @@ -16133,7 +16193,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "919309498910b05ab0862db099652152", + "key": "bd00434311d3ecba2453c94afd7ebe73", "notes": [], "params": { "forceDirect": false, @@ -16165,7 +16225,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8323170325d64118648057953e8f85f6", + "key": "055b10905b74167813b54d1dccb4c1bb", "notes": [], "params": { "pipetteId": "UUID", @@ -16181,7 +16241,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c527462f163764a295027ae18cb72ea", + "key": "09d04e3df0ae38f502db973f8f293f0f", "notes": [], "params": { "pipetteId": "UUID" @@ -16195,7 +16255,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2324c9f2fc2580c134daf08e126db956", + "key": "12a63bd93613e46b4ec85a9ff2e7140d", "notes": [], "params": { "forceDirect": false, @@ -16227,7 +16287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b9303cafba209efcffd427c90cef741", + "key": "3e521b32a07113ba3cbe5a97e818ba5e", "notes": [], "params": { "forceDirect": true, @@ -16260,7 +16320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d73dad11e7093809dbb19c872e8c73a0", + "key": "397435ac7eb0d7e90a990039942611a9", "notes": [], "params": { "correctionVolume": -0.4925, @@ -16279,7 +16339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8173ab973040aac16c0e2c58264c4fd", + "key": "de7a99bde055a3f16f1694ca9e008d85", "notes": [], "params": { "seconds": 0.2 @@ -16293,7 +16353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5452f8e12c50aa30d68d41807c84cf4b", + "key": "a5fb352be688fea5d9010cc847baf9f0", "notes": [], "params": { "forceDirect": true, @@ -16326,7 +16386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6e837b2a3108b3d2ae0046620274a7c", + "key": "a55303358363e5e6792ebaa469205ef9", "notes": [], "params": { "seconds": 0.5 @@ -16340,7 +16400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21bfcc0024fe11cc488a92093aca120f", + "key": "29f71e5aa9c60e8102cef566ecd1b21c", "notes": [], "params": { "correctionVolume": -0.5, @@ -16359,7 +16419,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d511b9d616028a3c368faa4a774c4c88", + "key": "5937bf8eea4f07701497397c0ddf0b6e", "notes": [], "params": { "seconds": 0.2 @@ -16373,7 +16433,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad18b8707a58e6816cd8b63c429ad205", + "key": "3a12869a7b5cd1c8a47b636c2d8867b3", "notes": [], "params": { "forceDirect": false, @@ -16405,7 +16465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1f6e38599beb98fc688c08f1eb8a972", + "key": "22061a4f83d7d40c4b1f5fda765cf52b", "notes": [], "params": { "correctionVolume": -0.4925, @@ -16425,7 +16485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d5a1a2a085d00ca5dcaab1c3ce4df0a", + "key": "5101bd001b155bab05318202f241ebc1", "notes": [], "params": { "seconds": 0.2 @@ -16439,7 +16499,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8870e6ccead59add0ec5efdc26800331", + "key": "26b3412f49fe21e8a624b1d0571df211", "notes": [], "params": { "forceDirect": true, @@ -16472,7 +16532,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71cbf676a870ab2036216c4869db06eb", + "key": "79622855d1ef1a783d2e1b1483f8896d", "notes": [], "params": { "correctionVolume": 0.0, @@ -16492,7 +16552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89098e631cc6d0b32bb14b9a9e61f3b9", + "key": "dee320b6e40f004960499a5b0ed542b7", "notes": [], "params": { "seconds": 0.2 @@ -16506,7 +16566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01d401a9deb0d02bc09903218fda17cf", + "key": "d9e041140d546ebb84983e1366393361", "notes": [], "params": { "forceDirect": true, @@ -16539,7 +16599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0bc7e08dcad312abb083d0fd35a99c9", + "key": "a45add7e4171d8f8beed92565e7c6ac3", "notes": [], "params": { "seconds": 0.5 @@ -16553,7 +16613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "201e8d1b0972729edf2439582f55a5c0", + "key": "a15ee8e0112f6b25d0331d5ff280fbd1", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -16572,7 +16632,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f8f8d5cf40d4a9031d031136f783e40", + "key": "01aad536394cc8b0c8c1eb600966876a", "notes": [], "params": { "seconds": 0.2 @@ -16586,7 +16646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05ba119def3b807224c69777777e65a0", + "key": "8fc13bedd0d96fa7d7afaf00712bfe64", "notes": [], "params": { "forceDirect": false, @@ -16618,7 +16678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d68daa2eef91e0e06b027787c282a9a", + "key": "40238d5930164de55d1c10cc66495aa7", "notes": [], "params": { "correctionVolume": 0.0, @@ -16638,7 +16698,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f846359408d1a34266ff779118c263ce", + "key": "4590bda8d00b962b89b0d90be2cecea0", "notes": [], "params": { "seconds": 0.2 @@ -16652,7 +16712,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b758891f0f34439f0b4ae568cd68be14", + "key": "e1a2298f11ec53b9dfdc565725c72604", "notes": [], "params": { "pipetteId": "UUID", @@ -16668,7 +16728,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77dc75bd540340e344693b5b865bb327", + "key": "27d1fb8726bd6a63b144fa09a6703ecb", "notes": [], "params": { "pipetteId": "UUID" @@ -16682,7 +16742,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ae690ef5c8f481afc0858037c00a972", + "key": "2d52389dcb13d828c0eb5ce9688b479d", "notes": [], "params": { "forceDirect": false, @@ -16714,7 +16774,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22d837e580d33457f79b5cd08bb218b6", + "key": "5ad0b381698fe9a1192abc3fe65af75d", "notes": [], "params": { "forceDirect": true, @@ -16747,7 +16807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0113d76d4e104279ca6e412dcbbedffd", + "key": "8c632d997de256fbd6984e8b7f9deed4", "notes": [], "params": { "correctionVolume": -0.4925, @@ -16766,7 +16826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "439e9683b550651321999a1f97be9d41", + "key": "ab36ec4e18c24f13444fbbc57e9937e6", "notes": [], "params": { "seconds": 0.2 @@ -16780,7 +16840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da965ff4ddb946033d65c311e6c76145", + "key": "10a2e517c404f65d4e3aae542bed89a9", "notes": [], "params": { "forceDirect": true, @@ -16813,7 +16873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36fac2ad4fa6176f8017a3824583657b", + "key": "267118397c1f2aa7ca13e5f84f5e8eca", "notes": [], "params": { "seconds": 0.5 @@ -16827,7 +16887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "956de29df22c19659a125d7f2f2d3f9f", + "key": "9112691a94eb79122c3e0acfad9fb2c9", "notes": [], "params": { "correctionVolume": -0.5, @@ -16846,7 +16906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "acdc7bcbf4d700daecbe321fb22bb148", + "key": "e0a5e6220dcc6b15b3561add2fc760e6", "notes": [], "params": { "seconds": 0.2 @@ -16860,7 +16920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "308af52b19cc019af440adfb7d50f507", + "key": "2c46abeeb7b862ae5c39d1c472b2d19f", "notes": [], "params": { "forceDirect": false, @@ -16892,7 +16952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b64e3596bf6f7e125fb0da4018c6e1fc", + "key": "c69c29f65b452783d0456a0f5982c60d", "notes": [], "params": { "correctionVolume": -0.4925, @@ -16912,7 +16972,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7362adf03d892086801d87f01fdf8511", + "key": "06c7a8ed324fac41ef4eae7f24b8378c", "notes": [], "params": { "seconds": 0.2 @@ -16926,7 +16986,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c25f6b43e504bef7f2245a5ad537638c", + "key": "0407b58e2cb97db6ca0cca2abe6e46a8", "notes": [], "params": { "forceDirect": true, @@ -16959,7 +17019,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e70370ccca94ebdd76cbb3248014825", + "key": "a65ee381d8ffd8f2fa9f1769fffbd715", "notes": [], "params": { "correctionVolume": 0.0, @@ -16979,7 +17039,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97a799f42d155057bf8ee7eb3d92b738", + "key": "ebc9792c3e08b212ce6500e0bb9f9160", "notes": [], "params": { "seconds": 0.2 @@ -16993,7 +17053,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb021d8a52283cd8a4c6bb86279ea6e9", + "key": "bff4cee840fe1cd7700b23256149e4fb", "notes": [], "params": { "forceDirect": true, @@ -17026,7 +17086,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16927b95d806e713b209e14967de11c2", + "key": "9343ec6f5184dd66ecdcd7536c43b5bf", "notes": [], "params": { "seconds": 0.5 @@ -17040,7 +17100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05a2dc71edae6b842ef74a398b85b5aa", + "key": "961077b1360775a70645782fbf606910", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -17059,7 +17119,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea01fa605627ab6e2a1badbfb9c63b91", + "key": "fa8565798c30ab2c7979f8e45d636c77", "notes": [], "params": { "seconds": 0.2 @@ -17073,7 +17133,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84130167199830484f63b8645044f6e3", + "key": "87f1b97028412fcdd449c7c417eac5c4", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -17102,7 +17162,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "758e1b5945e58343d5fc71511ce2c1ec", + "key": "5277737d45e0928a657073dc358f6f18", "notes": [], "params": { "homeAfter": false, @@ -17117,7 +17177,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9eb961de3e66c8ade44d67a2c5c1ab55", + "key": "cfe53cd9ec3e2ef4ad992009708c6ee3", "notes": [], "params": { "liquidClassRecord": { @@ -17492,7 +17552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c8efa4ed86bc547ff5959cf80679cdb", + "key": "e1d7e4f2e89383b0c2ed4d581813bcb6", "notes": [], "params": { "labwareIds": [ @@ -17514,7 +17574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "534094dbc42b93bce937f0ef3872abc7", + "key": "d5b61eb1694685b4568f80b298788c85", "notes": [], "params": { "labwareId": "UUID", @@ -17547,7 +17607,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c400d4e32c9e090eed540be12aec889a", + "key": "782b612895aee79f484b6631efa07f86", "notes": [], "params": { "forceDirect": false, @@ -17579,7 +17639,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c285e2f49bde044024fa5715eaa5b1e0", + "key": "d4ade08a4a5517e699be2fed46d31048", "notes": [], "params": { "pipetteId": "UUID", @@ -17595,7 +17655,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9ce7eef39b77dbdc3d24083df52d2d4", + "key": "5b786ad663f1384f757e88333cc09211", "notes": [], "params": { "pipetteId": "UUID" @@ -17609,7 +17669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b915ccae727134e96b1b2b16c3acd89f", + "key": "bfaa19ea77ad9949235270a39f390ec3", "notes": [], "params": { "forceDirect": false, @@ -17641,7 +17701,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a13dc0795f1dc5fb8fccebf8fcb2f39c", + "key": "5889c08a0ce872035d64495eeb2e458e", "notes": [], "params": { "forceDirect": true, @@ -17674,7 +17734,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63287d0dff3901dd37d34c80db375b2b", + "key": "8a616c234267cb4ccf1963fd67fb80f1", "notes": [], "params": { "correctionVolume": -0.19250000000000003, @@ -17693,7 +17753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f25ad0e42e651db2f8f3e07240a1f3d", + "key": "4bf6e3b02fb7d5d4598045e7686f5449", "notes": [], "params": { "seconds": 1.0 @@ -17707,7 +17767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc5bb168d9a9682a6874c079c5959338", + "key": "24371b110e31f272660f04ae6980ffe7", "notes": [], "params": { "forceDirect": true, @@ -17740,7 +17800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69ec6c2c12d20375b99e71809b9e651a", + "key": "9c051fe4bb8b80eb7fd567845aa9a8b3", "notes": [], "params": { "forceDirect": false, @@ -17772,7 +17832,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "325b7526395113a746a9e4210689ba56", + "key": "973e28bb97b8c1fc20e0358fa319fbe7", "notes": [], "params": { "forceDirect": true, @@ -17805,7 +17865,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4cb41a26de1ad34eab62bafcabee9a4f", + "key": "8d4b7915ec5766e6e84f6465d26b1617", "notes": [], "params": { "correctionVolume": 0.0, @@ -17825,7 +17885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffe1f0468ea16fd0b962049d47ac9a34", + "key": "edf074667b8d13a1d388c4fc0cbdec12", "notes": [], "params": { "seconds": 0.5 @@ -17839,7 +17899,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23ee40f108823ffd47e3b409edd9b612", + "key": "4d6599231cb7cb75f9c7885f3391a571", "notes": [], "params": { "forceDirect": true, @@ -17872,7 +17932,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c48160a6521d868c1682dba5da7c257", + "key": "293a5cb88b640e7af23af43bc02dffab", "notes": [], "params": { "pipetteId": "UUID" @@ -17886,7 +17946,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ba1d0a4fac6b7a929abd209c093d9ed", + "key": "d2a909b26ede25fde402e7963a8a6acb", "notes": [], "params": { "forceDirect": false, @@ -17918,7 +17978,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8dd3316ecdf543186a60e9826191f1c8", + "key": "efe613a0255bf6ca33fab7f23b389735", "notes": [], "params": { "pipetteId": "UUID", @@ -17934,7 +17994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "caa0d68dba565272e318c90c701395af", + "key": "40f8e67b8dc917ba47cd8f084fb8c0d3", "notes": [], "params": { "pipetteId": "UUID" @@ -17948,7 +18008,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc692ca123b7b921f310bd9acf35739b", + "key": "212d381f94ee723c809f6dda0ed70de0", "notes": [], "params": { "forceDirect": false, @@ -17980,7 +18040,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19d8e9fdd515f69d28814dbd131c14b4", + "key": "ddcce63d8e67fedc0abb9bbe248a518f", "notes": [], "params": { "forceDirect": true, @@ -18013,7 +18073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa7cc543c5b80792c29b4338e81dad43", + "key": "953248d0490b63b28b1b71a60c191fbe", "notes": [], "params": { "correctionVolume": -0.19250000000000003, @@ -18032,7 +18092,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e2d6b327bc82b5205220080bff8db458", + "key": "6e1dfc6282443bb0b483057fae2e693c", "notes": [], "params": { "seconds": 1.0 @@ -18046,7 +18106,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6215fbe51c09867cb89ffe6e813dbda", + "key": "c7cbc7a1e41038b7e57e935a04ad2691", "notes": [], "params": { "forceDirect": true, @@ -18079,7 +18139,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "310568a5f1a07b3e55d44af5c9ead865", + "key": "3e63cd868b5963ad3f56f3ce1e70dbe7", "notes": [], "params": { "forceDirect": false, @@ -18111,7 +18171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "acf40eaf1e3c6a7747d82314ba2447f1", + "key": "53907785e733debeeea3d81140be6a0e", "notes": [], "params": { "forceDirect": true, @@ -18144,7 +18204,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ebadb21c761658df470df845f8b77f2", + "key": "d363a7689873658445f8a1803a03f64a", "notes": [], "params": { "correctionVolume": 0.0, @@ -18164,7 +18224,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98fa6b092759f975b2c4432b8bd3a129", + "key": "7bb8481eed2776bf272147c5c6093561", "notes": [], "params": { "seconds": 0.5 @@ -18178,7 +18238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a50fd40cc4c1f12c2f39cc934708aef9", + "key": "04933375bbf876bb75ae89b600ede0f3", "notes": [], "params": { "forceDirect": true, @@ -18211,7 +18271,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d155bfc0ff120cdc953537c58b152b5", + "key": "9cf9792b6b2ec58572fc317fc6e97a6b", "notes": [], "params": { "pipetteId": "UUID" @@ -18225,7 +18285,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1916057991f03ec9b4577f55ab6ef924", + "key": "fa404b1d2057fe05892672a44caf7d99", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -18254,7 +18314,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6dda4d6b3eb4ec7387b75168d9b6cd68", + "key": "b099e4b4cec8e6724d73695c25945c35", "notes": [], "params": { "homeAfter": false, @@ -18269,7 +18329,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04d84957584962c0c891d1d8ae9e6b41", + "key": "9aadb6d3665e6e6f52ec1dac014c419b", "notes": [], "params": { "liquidClassRecord": { @@ -18291,7 +18351,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -18323,11 +18383,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -18362,7 +18422,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -18512,7 +18572,7 @@ "delay": { "enable": false, "params": { - "duration": 0.0 + "duration": 0.5 } }, "dispensePosition": { @@ -18547,7 +18607,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -18557,18 +18617,18 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { - "flowRate": 478.0, + "flowRate": 318.0, "location": "destination" } }, @@ -18603,7 +18663,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -18628,7 +18688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81c36098889b148b7ba0a6ed2a8a3d64", + "key": "716cedab6ac74b98cb40a242cbae0f2f", "notes": [], "params": { "labwareIds": [ @@ -18650,7 +18710,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3553f9bb181cfcf8db3f824e23da20f8", + "key": "9c3ec4817afc4597fe09f04ddc924107", "notes": [], "params": { "labwareId": "UUID", @@ -18683,7 +18743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "931bd73cf728e50261e602daaacb22a0", + "key": "11535f6feb8eeb42913f7c714f93582c", "notes": [], "params": { "forceDirect": false, @@ -18715,7 +18775,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b62d6281016ff6e2aa9ced299ab48aa7", + "key": "a14b79a3fdb3d939fcc45a3991ea1f0c", "notes": [], "params": { "pipetteId": "UUID", @@ -18731,7 +18791,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd5bcacd182daab9e6758ad737edf552", + "key": "89e19edfad7ce70a26c6766b561fb1ec", "notes": [], "params": { "pipetteId": "UUID" @@ -18745,7 +18805,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1dc6d8b0f62b588db93dc37e113b6245", + "key": "bdc988663be7f1752e19c399cf7288a1", "notes": [], "params": { "forceDirect": false, @@ -18777,13 +18837,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "092e3717bfe3b1131080458c8c1646b3", + "key": "b004f2e940a9b856bc4d3a2264432505", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -18810,7 +18870,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce271b2338183e34cc9bbe69e4b498af", + "key": "cf64a47cff37f9f4e9a58fc3a9794d1d", "notes": [], "params": { "correctionVolume": 0.0, @@ -18829,10 +18889,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0281c55a291f29b3df14680e77dc6e33", + "key": "05ed4acf870e0585aa8823117140dd07", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -18843,7 +18903,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0eaa05ac4fb6773a6134982bcf6e4a53", + "key": "5301110be5910a94f0513418cd192d2e", "notes": [], "params": { "forceDirect": true, @@ -18876,16 +18936,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36d7651819cb63c34da28d4123a43104", + "key": "46fb7324cea0d78160abb641091f284f", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -18895,10 +18955,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2d986c3b3f5d15ead584906c2db897d", + "key": "5719a45d1ecbd399467b6acd3f913927", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -18909,7 +18969,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9113020977c80361e89ae9d79e9249f9", + "key": "95e1c4ea1c75218c138ebdfc2e26e34c", "notes": [], "params": { "forceDirect": false, @@ -18941,17 +19001,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "640ff74a4a96d803a81a2f843b6242a3", + "key": "4bff84f53dd6a23c9d9b8dc20def9640", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -18961,13 +19021,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7479a4062d798a28728fbd6f815b4d30", + "key": "aef56dc3dae5365a5af7f641f7b0a4b5", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -18994,13 +19054,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "488a137239be24a5c3b5310559979992", + "key": "572d17dc31a6efaf1eeedf8b284040a5", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 49.0 }, "result": { @@ -19014,7 +19074,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce261016c30427ed90c8e355bd4f6301", + "key": "696f254fc505713a2a2c705d599fd8c3", "notes": [], "params": { "forceDirect": true, @@ -19042,12 +19102,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "491a6ad60cca5ef587359182ef2ca0df", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0cb7ca2a239d25ee9e0599e63797914e", + "key": "4b242483185ffccc12d495d3e489a051", "notes": [], "params": { "pipetteId": "UUID" @@ -19061,16 +19136,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2ec78146d25f4620186a203d8a3190c", + "key": "f67af92cd641f5e042439f1ebcc4137e", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -19080,10 +19155,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed966c8a145df43e272a0371a082d12e", + "key": "e230ebaeb74491054fc3225b0b97eedb", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -19094,7 +19169,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf38fc4ea83ca0360c284dc5e4e65451", + "key": "a92bac7e9ed982f0ec7f7e3ea3ff462e", "notes": [], "params": { "forceDirect": false, @@ -19126,17 +19201,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b0de90a0cbab52408bd9b9c85a05708", + "key": "24564360b1063ec84916ab06840bbe76", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -19146,7 +19221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4404846cdd1c5754b640b94f23031d18", + "key": "5ce147f8a5b39e7d7576e8a6217ff1c3", "notes": [], "params": { "pipetteId": "UUID", @@ -19162,7 +19237,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "367904e8b1ebc4fdf3933555d870c58d", + "key": "9ebb4ee649bde382119de4be9fba1ec9", "notes": [], "params": { "pipetteId": "UUID" @@ -19176,7 +19251,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d5d522672a6e5120475f7154421336e", + "key": "066da50fd61ca7c79ec498ac3ccc57b1", "notes": [], "params": { "forceDirect": false, @@ -19208,13 +19283,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "591b98d2062552526443919cda4d23dd", + "key": "05afa77e4deb71228e3f5b1832addfc3", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -19241,7 +19316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5fbfbb40d20c18c1bd7d7af484f7bb4", + "key": "20ff1dce9b4fe817c65bf8c2da79ab32", "notes": [], "params": { "correctionVolume": 0.0, @@ -19260,10 +19335,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6fd4c8bb49d933bc9c5c6cdb30a325f3", + "key": "668069b187424e023e3d3353855e1e35", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -19274,7 +19349,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce83689226bc8797642882d1b4931a34", + "key": "b58d09fda43cb86f4d9c7ef71cbb30f3", "notes": [], "params": { "forceDirect": true, @@ -19307,16 +19382,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4dfcee7cb466056e52e4c4356a86c07", + "key": "9ecf01b46e7d44cd578c0c697665906a", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -19326,10 +19401,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3db8ad33ed7425e09c51f40d34b9ede3", + "key": "f038a7633efbd58f05074d5fa0a8a1ac", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -19340,7 +19415,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5251364334c2c676be69ceb9796ae6c1", + "key": "45a2ef8115efcd193bf0de4aeebfdc4f", "notes": [], "params": { "forceDirect": false, @@ -19372,17 +19447,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1ecc1bd8c56b0afcb2418a1d3f0579d", + "key": "38651a5e8e35066a5aa2ab1f3d464d21", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -19392,13 +19467,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f0ddd256aa33064f0af2bfd6c2033653", + "key": "9675f7b7d7b0dc14c58c44cd65708a2f", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -19425,13 +19500,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66e27c45ca796564bb045356c74b6f7f", + "key": "5f0c11784037ed8d320d5a6617a6257f", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 49.0 }, "result": { @@ -19445,7 +19520,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0495542eec62b2c13252fc35c03aebe2", + "key": "b45e4db72568e59f4b5aaf05cec5dd49", "notes": [], "params": { "forceDirect": true, @@ -19473,12 +19548,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c838db5a8034ca506c2a1e81381ab4e4", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ffc560cd1122044f76a4d40d3a0354b", + "key": "f6fc1004f8c2dbcc3f1cc2ab66f02805", "notes": [], "params": { "pipetteId": "UUID" @@ -19492,16 +19582,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91af58d0439c0c0d07f5d47fff66455e", + "key": "13b591fa2387b42688312d1ff473e168", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -19511,10 +19601,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0e0cbfc0cea567cf26172cd4d390f03", + "key": "e8472333333fa3cbfa00c76ca6e2b502", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -19525,7 +19615,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f79e9218d20ad840c981604736c48a99", + "key": "89c768dde8fa4fb43c594e82a583e653", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -19554,7 +19644,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d5da4ded86e6d4149cebe324f82ba1e", + "key": "989f5d3cf932022e7ca32e3e332d210d", "notes": [], "params": { "homeAfter": false, @@ -19569,7 +19659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc2102252367193fe80644aa073c6b38", + "key": "432c2d2ae406ad86196b6882718336af", "notes": [], "params": { "liquidClassRecord": { @@ -19968,7 +20058,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50f4f4ceb58bb9ed9ce994c74be59e88", + "key": "3778946eaa3e30d345a846491ff5274e", "notes": [], "params": { "labwareIds": [ @@ -19990,7 +20080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a6d86b6a58a632926f71d406b484fda", + "key": "85c3a79749fb87f36580afea94e96ab6", "notes": [], "params": { "labwareId": "UUID", @@ -20023,7 +20113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d056975fb20c80db8a08aedb5bd3f7b", + "key": "b84be9ee7939eac4dae6b116f3d2d28c", "notes": [], "params": { "forceDirect": false, @@ -20055,7 +20145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "580bea4137c5e451f92f8e754ada6351", + "key": "5fd5a31a451dffd4cffce6490f7abc68", "notes": [], "params": { "pipetteId": "UUID", @@ -20071,7 +20161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c41b3be651a2f6923f10792187dd2ff4", + "key": "52f3500d1e50c8801ac31fdc7419c292", "notes": [], "params": { "pipetteId": "UUID" @@ -20085,7 +20175,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "de2cf3e930063b1e82d52bd4ad4db687", + "key": "a1dfc1a1aaa1c9c51d3fb2d4118968f0", "notes": [], "params": { "forceDirect": false, @@ -20117,7 +20207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f5184cb7a433a09440619986088987c", + "key": "c026f1d318b1e81787f8d85244221167", "notes": [], "params": { "forceDirect": true, @@ -20150,7 +20240,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f73a24710dabf9155ee0ec1ed65f9cab", + "key": "8485811f1abca54f5d800dbc177e099b", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -20169,7 +20259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf94ad93c659b4b44195ddcc232db781", + "key": "b39480ec751b7183d5cd4f03f9a27726", "notes": [], "params": { "seconds": 0.2 @@ -20183,7 +20273,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f80511f8b118095182613e4b6c368121", + "key": "66853902518bb112ba80cb14c50c7c14", "notes": [], "params": { "forceDirect": true, @@ -20216,7 +20306,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ca7950e046ae240c9bfdc9c7656a4b9", + "key": "debade2089799a06d01f18019de587ce", "notes": [], "params": { "seconds": 0.5 @@ -20230,7 +20320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e43085028583732fc547f47dfc6e5bff", + "key": "45763db9e00041303d588dd0c5a6bf33", "notes": [], "params": { "correctionVolume": -1.3, @@ -20249,7 +20339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7e9a067494d4c63c00e7e62df4b887b", + "key": "d09f20d10084cf189078f7a6fe2d8402", "notes": [], "params": { "seconds": 0.2 @@ -20263,7 +20353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bed367fcb85bc3ddee5a9c5f139a767b", + "key": "d06677b60280001782c488dc991dee85", "notes": [], "params": { "forceDirect": false, @@ -20295,7 +20385,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3f42b991691bbb82411d38666a0488b", + "key": "2a36c330b2068f600437793f00292f65", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -20315,7 +20405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7218f721d8081ca693f9b6e6fdce975e", + "key": "a69d31bdb406a865cf71eade7246cffa", "notes": [], "params": { "seconds": 2.0 @@ -20329,7 +20419,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8ffbdf352649f69725ae6414e7cd401", + "key": "32fec43e50c190710a4bcd421ec30611", "notes": [], "params": { "forceDirect": true, @@ -20362,7 +20452,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21f53608ef0fd9556f80223d9c560740", + "key": "55e9d8316d0a713326f92253c406042f", "notes": [], "params": { "correctionVolume": 0.0, @@ -20382,7 +20472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24689b21afa215715297a23468abde7f", + "key": "0f9c35ee9b5c045164062badf255a840", "notes": [], "params": { "seconds": 2.0 @@ -20396,7 +20486,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50a22e6c2e54edd7c6208ad1282dddf6", + "key": "f460dd66cc31e86eacaf406a25e2fc4a", "notes": [], "params": { "forceDirect": true, @@ -20429,7 +20519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7dd09a6af42b115a1053e2256d7dad1e", + "key": "f23f7ae2439c48f7a9d9e100c4ebfa64", "notes": [], "params": { "seconds": 0.5 @@ -20443,7 +20533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5116db458a461a8201a5ff61eb719f91", + "key": "f1b3b567da2cc55eba12aea691c4bc17", "notes": [], "params": { "correctionVolume": -0.75, @@ -20462,7 +20552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dab232e682fb9adf6147373a57e0f391", + "key": "ba1d9f4143927e747cbd21c3d077fb10", "notes": [], "params": { "seconds": 0.2 @@ -20476,7 +20566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b7745301b88713b7e4a8e426a7c690a", + "key": "a90c79ba650dbfc804de1fdd8dbe86a1", "notes": [], "params": { "forceDirect": false, @@ -20508,7 +20598,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b6699342bc8a3cf4095a6597948f608", + "key": "caec913f12c099a0ba084013714bd039", "notes": [], "params": { "correctionVolume": 0.0, @@ -20528,7 +20618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e31db942076fc91a8c71d5105486dc33", + "key": "07e6c21bd1b9fb550870c19e11ee0fac", "notes": [], "params": { "seconds": 2.0 @@ -20542,7 +20632,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b8d1df12dc319e1e49c90358e30f49c", + "key": "8259969a370d58395cc11fe8d6149744", "notes": [], "params": { "pipetteId": "UUID", @@ -20558,7 +20648,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e012a03c04fc19642800cb0851709f59", + "key": "8b5906ec5f2f548f9373c8a8b9fff251", "notes": [], "params": { "pipetteId": "UUID" @@ -20572,7 +20662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9ea109fc8f02dad3e96466949a265bd9", + "key": "4efee06cc8a7bd205c944bb179218f09", "notes": [], "params": { "forceDirect": false, @@ -20604,7 +20694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd47b106ea0610c116f3b003b8fd1fc4", + "key": "aee288fbe4d7982a99ed8d41e528848d", "notes": [], "params": { "forceDirect": true, @@ -20637,7 +20727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26b69d1e35545457fe5c2eb374224bd2", + "key": "3a2435ce7d6aa5f994060637f93363e2", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -20656,7 +20746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "633371c79f00792e712d0f121a213580", + "key": "2c026f968b3fba863e8521d95ad2e6ca", "notes": [], "params": { "seconds": 0.2 @@ -20670,7 +20760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "741053a32aaa9a4a6d5c02ae9af0d16f", + "key": "4e8b49a17f4096303eb0dd479edcf445", "notes": [], "params": { "forceDirect": true, @@ -20703,7 +20793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11564dead98d3f6c9cb27ff61a4ca74b", + "key": "7cf52b5977f9dc0e48ecfb1c007cb933", "notes": [], "params": { "seconds": 0.5 @@ -20717,7 +20807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f88de9691db593782d5616d2b3f4d9fc", + "key": "5ba5e851259cbac3d75b18cc9fb034b4", "notes": [], "params": { "correctionVolume": -1.3, @@ -20736,7 +20826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "578ad8b4b0b5508fcf639463d1df1692", + "key": "f22f23a0f245a10b11d887e3516d1989", "notes": [], "params": { "seconds": 0.2 @@ -20750,7 +20840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49df8a1eebe6ed6ba557ee1edb4348e5", + "key": "85135f3c3df33c7d8e2939446dca58d5", "notes": [], "params": { "forceDirect": false, @@ -20782,7 +20872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd2a415614da8a2c3aee6f01ae3d8ae9", + "key": "9c8979c67f56222c1cb4dad3ccfbb551", "notes": [], "params": { "correctionVolume": -1.2850000000000001, @@ -20802,7 +20892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a62f04d00214c462ba3c70b21a95b7e7", + "key": "6588856eedb7e9bdd51afa2a16e388ac", "notes": [], "params": { "seconds": 2.0 @@ -20816,7 +20906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e62f907f084fd36c8184ac0a770ab956", + "key": "e9e2271c4e78e145473e005d782c8173", "notes": [], "params": { "forceDirect": true, @@ -20849,7 +20939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ecab5af88cc839a8f59e36011e5e04e", + "key": "3c9bb252b92558dddf679fbb72793571", "notes": [], "params": { "correctionVolume": 0.0, @@ -20869,7 +20959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb1550a241e2e44d5cef1b882438a1f6", + "key": "c8026100675b90d2ecdbb56398873a23", "notes": [], "params": { "seconds": 2.0 @@ -20883,7 +20973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20242eb9bea360d3b66493565e5b16d1", + "key": "a067b4b836311c27998f346d3af02ac5", "notes": [], "params": { "forceDirect": true, @@ -20916,7 +21006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb1beebc2f8aad83a0976027e0acb715", + "key": "9ba04b5d54fab1a2d35a91826d0d7f53", "notes": [], "params": { "seconds": 0.5 @@ -20930,7 +21020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ca885300eb0146cc47890289c0c7ad8", + "key": "ff6da61a243d5dc0216e56d0aab66fc5", "notes": [], "params": { "correctionVolume": -0.75, @@ -20949,7 +21039,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "12cd319953934e3afdf9d2eb9381a1ec", + "key": "8247351fbf98443042cfd7c4b6e999d1", "notes": [], "params": { "seconds": 0.2 @@ -20963,7 +21053,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a3b7f8f4646719135d5626ae0d890b6", + "key": "d3a0fb8559e77b400b0a4f1fd8ed2c1c", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -20992,7 +21082,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3de80716dbcf2035216a71b60c89ab08", + "key": "3ec5e628a588821e582ac7ac00c8bec8", "notes": [], "params": { "homeAfter": false, @@ -21007,7 +21097,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "683541992e6d78e0aa034bc136fc2949", + "key": "e25bb628a64b1b79614080d4185dce4c", "notes": [], "params": { "liquidClassRecord": { @@ -21378,7 +21468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f3901b78dcf18c4f230390936cb6b4e", + "key": "c1afb0d242ff8db854b6404a0ac9b083", "notes": [], "params": { "labwareIds": [ @@ -21400,7 +21490,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c54852092cbc4ee82f91b0fcd83d3507", + "key": "69502351a2524b20c8a0c1fe5a7ea3d6", "notes": [], "params": { "labwareId": "UUID", @@ -21433,7 +21523,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b6d1ac7edcfa56ff5a9746a5c11684b", + "key": "3fbb47f7b92f1652b18780a176c6502c", "notes": [], "params": { "forceDirect": false, @@ -21465,7 +21555,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2de58a6182afb5a8f18056dc3fbdb179", + "key": "69844f26618726990caad3ce88d6ce04", "notes": [], "params": { "pipetteId": "UUID", @@ -21481,7 +21571,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdf8a60f3811e75ccda18ec00ffd2690", + "key": "f7ff48e33f3c07e508e3319ce4fd8c91", "notes": [], "params": { "pipetteId": "UUID" @@ -21495,7 +21585,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69494eddbc2de4aa0ac4848fbbc81f8b", + "key": "0d27896eaa2e8e60cf07435a218533b5", "notes": [], "params": { "forceDirect": false, @@ -21527,7 +21617,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f4a80060d0a261c3c6184c66b59e8fc", + "key": "dc78714c80ae4c620c6b997f9ed3867f", "notes": [], "params": { "forceDirect": true, @@ -21560,7 +21650,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e230bfee4a006e71f0178579581b56e", + "key": "0ed9f2c04069bdbabb8f71b16945b455", "notes": [], "params": { "correctionVolume": 0.1975, @@ -21579,7 +21669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94bef328380dbc7ecd934a3775f0c1d8", + "key": "574c2633db79f6bec348990d07eff17e", "notes": [], "params": { "seconds": 2.0 @@ -21593,7 +21683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80237a3a9a92af436fa640d992b57c7e", + "key": "a2363efadf5feef0bcacaecddcbc3fc1", "notes": [], "params": { "forceDirect": true, @@ -21626,7 +21716,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ebc602b0621341f81ab9d28490b3ed6", + "key": "1defe9e6d9b519b24a8d6906a7c0f0ba", "notes": [], "params": { "forceDirect": false, @@ -21658,7 +21748,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83ca56d9ac7aa29eaba7b2eb0a3ba11e", + "key": "90c542ea686cdc81404646627fb0634c", "notes": [], "params": { "forceDirect": true, @@ -21691,7 +21781,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "daa0b1e2ee51f548530c041a39d641f6", + "key": "4b287a8e29e8c55e5c9cb3f776eea9ee", "notes": [], "params": { "correctionVolume": 0.0, @@ -21711,7 +21801,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d720d0769870b3df76fdb9e639f23a37", + "key": "1f828bf1da9d06a4d1efe912e6ac9457", "notes": [], "params": { "seconds": 1.0 @@ -21725,7 +21815,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b502322f16d25f4a41530859d0e0d115", + "key": "bfa9066f9fab3957c644171634016b40", "notes": [], "params": { "forceDirect": true, @@ -21758,7 +21848,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2db8fd31e22e230583a2adb90a01bce3", + "key": "24f74e35d1f31461e94b1bfd756eb9a9", "notes": [], "params": { "pipetteId": "UUID" @@ -21772,7 +21862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15b0e4f2e7702b6affc86fc86bda0658", + "key": "ea271e12f510f25a73dee16806b9724a", "notes": [], "params": { "forceDirect": false, @@ -21804,7 +21894,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b951fd41a30fdac093178c2d5c068b14", + "key": "7891dbb8f9378e82d465a144ce03d91f", "notes": [], "params": { "pipetteId": "UUID", @@ -21820,7 +21910,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2886bbe582ddf3ee844929e9975bc44b", + "key": "3020a1e0318ae600db86452165e9c5ea", "notes": [], "params": { "pipetteId": "UUID" @@ -21834,7 +21924,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e016cf9c2666be8e93aa545e9a396fe1", + "key": "f7d417ebbc247c4e7d2746f39a5dacd7", "notes": [], "params": { "forceDirect": false, @@ -21866,7 +21956,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f435297ae5466d23649f15bd4d9fadb", + "key": "d777858eba09d18b354302b03cfa9a86", "notes": [], "params": { "forceDirect": true, @@ -21899,7 +21989,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c0c23664a04c5aee181f87486a2c76d", + "key": "c3fd5bba42ee120bc986b4436fdafaeb", "notes": [], "params": { "correctionVolume": 0.1975, @@ -21918,7 +22008,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a398a32a48e59f894ca691541ccdabd3", + "key": "7959ca7e76d2c92f170d34b4182ae7c8", "notes": [], "params": { "seconds": 2.0 @@ -21932,7 +22022,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d0aa6ccad6575bfb8c9743cbd0d0e5a", + "key": "ad667e6cdac0bfb99c1fdf238e7fe2aa", "notes": [], "params": { "forceDirect": true, @@ -21965,7 +22055,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d67fdce2df5f8da9811231227d625818", + "key": "3c28c1f0b3133f6e03123771eba6d762", "notes": [], "params": { "forceDirect": false, @@ -21997,7 +22087,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce6848555ca84b01b4aa97aabb9be79a", + "key": "5ef92893a8448be939352fe8f58f8c26", "notes": [], "params": { "forceDirect": true, @@ -22030,7 +22120,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb8007b31f3753fb9bce463e9127cc60", + "key": "975f02604a3cdfe2f0edd4fa0aa758eb", "notes": [], "params": { "correctionVolume": 0.0, @@ -22050,7 +22140,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "839ab6d65fed7314f746c63a998f3d08", + "key": "df22db65b8e47f0eec67ea7780e1949b", "notes": [], "params": { "seconds": 1.0 @@ -22064,7 +22154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd961b76099999992d8a1fdff16fffb7", + "key": "608deda54714a4b41c6291f3477b91fd", "notes": [], "params": { "forceDirect": true, @@ -22097,7 +22187,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "392fa8089c178335c14afc58be0abc76", + "key": "737d6e6c23eae4c90ada21eb0046f36a", "notes": [], "params": { "pipetteId": "UUID" @@ -22111,7 +22201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "222d7e2f11639ce3641e5d55e7699d27", + "key": "9644921ae411c850f0e46ef1696a5e2f", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -22140,7 +22230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7334337fa688d183ea9ca2fcb26b8f32", + "key": "846530f81db7a6b3a2d47187bab41988", "notes": [], "params": { "homeAfter": false, @@ -22155,7 +22245,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89c19a34df3b42503ad775bfd0bbfbe1", + "key": "777051b1cb3a5f320b74b34133051c77", "notes": [], "params": { "liquidClassRecord": { @@ -22452,7 +22542,7 @@ ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 50.0, "location": "destination" @@ -22514,7 +22604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4741be8e3fb7853c1fe2480e004d582c", + "key": "6671db05e0a4f8330e9b2765294c2855", "notes": [], "params": { "labwareIds": [ @@ -22536,7 +22626,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c59f1ea4cd0ed8f012f78eed89240d0b", + "key": "6f40b9f0cdf1ec4b43c32cac3dac96ea", "notes": [], "params": { "labwareId": "UUID", @@ -22569,7 +22659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90e155756b1b6cdcf151ddedcee08300", + "key": "8b93d368a58c4d2aff15fafb9e97a048", "notes": [], "params": { "forceDirect": false, @@ -22601,7 +22691,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f3f7adfb654510ab1e603f61743b0d0", + "key": "8a024bb8e505177372a2623c3a0a67ee", "notes": [], "params": { "pipetteId": "UUID", @@ -22617,7 +22707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ed2a4ba03de57724be449126271a280", + "key": "a433cf07b1ae933b5c181e34e3d058eb", "notes": [], "params": { "pipetteId": "UUID" @@ -22631,7 +22721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "816544a88d5b6ac6e00b1fad57d5b14c", + "key": "0af6edab60832836d93c9a0897f8bdce", "notes": [], "params": { "forceDirect": false, @@ -22663,7 +22753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe9801fe666ab660a0cd0f9f33f63355", + "key": "ca1097de7f35798ed0a3c540467b137d", "notes": [], "params": { "forceDirect": true, @@ -22696,7 +22786,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "527ef39a1dab51eee8d5f59b5b9393fc", + "key": "dd7f7fa2fed0188eccd50509b7ce501e", "notes": [], "params": { "correctionVolume": 0.0, @@ -22715,7 +22805,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a9bf409b7f449b4711e4da509885ba1", + "key": "8e5821ef2e877199cf6df96bca639fd7", "notes": [], "params": { "seconds": 0.2 @@ -22729,7 +22819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07defaf368dc6766017cbe6b7108574e", + "key": "de722ed853071d2198b262def9af08b4", "notes": [], "params": { "forceDirect": true, @@ -22762,7 +22852,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8fb47ca0d722d1ffde76228af42651c", + "key": "3c937a71ebb43409264bf2e9e195d1fc", "notes": [], "params": { "correctionVolume": 0.0, @@ -22781,7 +22871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10d57c49a0d180f2aeacf61aa5117055", + "key": "688619c960f578b7723be0b5c6ac8752", "notes": [], "params": { "seconds": 0.2 @@ -22795,7 +22885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86150aa6abf4dd06a7335b6a4d7baa2e", + "key": "b8c24851d5528d656183b2ab089acf39", "notes": [], "params": { "forceDirect": false, @@ -22827,7 +22917,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4570425ac3adc0aede5b21ca1d138457", + "key": "37658abbd85c355e32d0253baac62d11", "notes": [], "params": { "correctionVolume": 0.0, @@ -22847,7 +22937,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0243ff69ee40b829ae54911acd016cb", + "key": "372d66c00361a09b3b873cb81325627f", "notes": [], "params": { "seconds": 0.2 @@ -22861,7 +22951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02f458ab65fdc105b4ee83ec0c231965", + "key": "7c1a537f8571b6a5b84a644845fb84ac", "notes": [], "params": { "forceDirect": true, @@ -22894,7 +22984,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a469d7d05ad952e75bb9ffbc972248f5", + "key": "0799a9d58d7772a7520f1565c93f9401", "notes": [], "params": { "correctionVolume": 0.0, @@ -22914,7 +23004,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "241d0be5d9dd1f30252dd1b9117eea8e", + "key": "082b1f591fceabe2448fae0d1cddc9cb", "notes": [], "params": { "seconds": 0.2 @@ -22928,7 +23018,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b9be8933cbe6c8fe0344f2733a8d6fd", + "key": "fe7e59023918d6c326ae0c7d1380622b", "notes": [], "params": { "forceDirect": true, @@ -22956,12 +23046,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bb21f8c411e6c085fbac5ea7641226d", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "005b3b0c22e62f056f1719e189f79c07", + "key": "3cd0f56d8d2f924d5cf70e7bfbdabbb4", "notes": [], "params": { "pipetteId": "UUID" @@ -22975,7 +23080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5651c0d0feb0400311d5bedb6a525871", + "key": "d5b9f6d2b9b5371252448cbd4dab3e6a", "notes": [], "params": { "correctionVolume": 0.0, @@ -22994,7 +23099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2b99337efd1ad8b93efd00b7fc5dfdc2", + "key": "f72490be16ff08414d88a27b397ef3fd", "notes": [], "params": { "seconds": 0.2 @@ -23008,7 +23113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a92574629b70aaadd1c24525de823331", + "key": "25521b95b3d81e648f61329c383fa450", "notes": [], "params": { "forceDirect": false, @@ -23040,7 +23145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72e185e03214639c314553232d506f67", + "key": "92c03b9ed4a836baae4d81f37012c0f5", "notes": [], "params": { "correctionVolume": 0.0, @@ -23060,7 +23165,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "08345fd364f632f72372485474a2be3f", + "key": "9649b191b3adf8fbfd1b169154d4c3a0", "notes": [], "params": { "seconds": 0.2 @@ -23074,7 +23179,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa400cdda3cc1a8807a679c583ea800d", + "key": "c2ec2f4e5e67aa0ed7103233cb71f2b9", "notes": [], "params": { "pipetteId": "UUID", @@ -23090,7 +23195,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ba430c4a4feb831537fb3cbff9d0239", + "key": "1e1fbcbc125dbcb4a3847476d9764c11", "notes": [], "params": { "pipetteId": "UUID" @@ -23104,7 +23209,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb88960f7a705f13ad6608d37d011733", + "key": "c637da49a1c4abe34a5ef58922e50c3f", "notes": [], "params": { "forceDirect": false, @@ -23136,7 +23241,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6efae5d47c34ae7fc123b097d65c3277", + "key": "5268290d9e2511f37b6cf8f8d4bf9d00", "notes": [], "params": { "forceDirect": true, @@ -23169,7 +23274,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8b89e584912986238018236cee84b26e", + "key": "09470c14cabda77c98d5c9a6c811e4fa", "notes": [], "params": { "correctionVolume": 0.0, @@ -23188,7 +23293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4482ad2637b6d78ff0092943a6cec17", + "key": "217c6e61c96cb16a83190b34527b7d35", "notes": [], "params": { "seconds": 0.2 @@ -23202,7 +23307,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a31294da957b83175cf4ec32a7d8d619", + "key": "bc61d9045f9b5c54b6455e2ae445bc1d", "notes": [], "params": { "forceDirect": true, @@ -23235,7 +23340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b03efb90f13fc3ff7cf466210824642", + "key": "7e0df5ab6cd15960d5bf932f59863629", "notes": [], "params": { "correctionVolume": 0.0, @@ -23254,7 +23359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e05505c4049c2c784af2cf5020a75eb6", + "key": "9743bda5fb90013a0ff0740951f88410", "notes": [], "params": { "seconds": 0.2 @@ -23268,7 +23373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1eebb04c0b03a217468274e659601b4", + "key": "7f06400162d16df5567073095ea927ab", "notes": [], "params": { "forceDirect": false, @@ -23300,7 +23405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d00217f6eae3759e795bba48a276e0f8", + "key": "b3968f42790130607dd8bba2a90fd637", "notes": [], "params": { "correctionVolume": 0.0, @@ -23320,7 +23425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d55d7eb2b4daa9f1feac6fbc71ff86b", + "key": "5e3bec0d12bafc87f23a1af82014b778", "notes": [], "params": { "seconds": 0.2 @@ -23334,7 +23439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49ae0a0298ebcbc4e3f3a9b9aa55ecaf", + "key": "251d37aa28e45088e992a46e23a70b53", "notes": [], "params": { "forceDirect": true, @@ -23367,7 +23472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdb4e0710353b50fe8197a62a31ef1ba", + "key": "826e46e0296550d6f2a499131af6212c", "notes": [], "params": { "correctionVolume": 0.0, @@ -23387,7 +23492,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64ac02825ce83c01d9320948d4113979", + "key": "499dc418709e58e1593eb7dbd3ab553d", "notes": [], "params": { "seconds": 0.2 @@ -23401,7 +23506,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28f5d1770947b87ddbd4a987f81b2340", + "key": "d1b2cdca407d39724e744692cbe62b07", "notes": [], "params": { "forceDirect": true, @@ -23429,12 +23534,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e62e5dc2ba1b1d788540d378ada68db", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a4f68c9fc822180129262b0a7679024", + "key": "5a447685c5f5406ee4586728b8227f0d", "notes": [], "params": { "pipetteId": "UUID" @@ -23448,7 +23568,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edef3d11975a365a178527136cefd9d6", + "key": "d5104c33e6835776a31eb2d778cea35f", "notes": [], "params": { "correctionVolume": 0.0, @@ -23467,7 +23587,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e7d909035db0a7e8fdc84fff7ee432b", + "key": "9e06284066979b744746b653832f5000", "notes": [], "params": { "seconds": 0.2 @@ -23481,7 +23601,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a08f625332287f12bafd6ac36155dff8", + "key": "58b088dab8c82926fd43116a8b62a797", "notes": [], "params": { "forceDirect": false, @@ -23513,7 +23633,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75728afcb307dad7920012e0b3cd7b5d", + "key": "47e5653f3448548ed7afba412b0e4604", "notes": [], "params": { "correctionVolume": 0.0, @@ -23533,7 +23653,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24400fff5f5c72150a337f6487c373b3", + "key": "2b0a8869434423dc0776014bd80fd401", "notes": [], "params": { "seconds": 0.2 @@ -23547,7 +23667,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "547e3b6e2d6823f4e6a65c73d674776e", + "key": "8e865dc79d5da212eb1ae47dc10287d4", "notes": [], "params": { "pipetteId": "UUID", @@ -23563,7 +23683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b5bcbd7924633b963018042ddedd79c", + "key": "24a9556f851a6f23bb11ad18f66453e6", "notes": [], "params": { "pipetteId": "UUID" @@ -23577,7 +23697,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb10de26d38ef059e2306538409300b0", + "key": "15a20ec662cd050a168534efb1834ab6", "notes": [], "params": { "forceDirect": false, @@ -23609,7 +23729,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d40ba6cffbe981fe573d92b25645a9c7", + "key": "40b7e12740f75a033f5127947cc16b48", "notes": [], "params": { "forceDirect": true, @@ -23642,7 +23762,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb8a3bbd444d96739477b13664e0603a", + "key": "76a7de9eebe77ea490aa0bcfaa172e4a", "notes": [], "params": { "correctionVolume": 0.0, @@ -23661,7 +23781,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "125e849d3dc59852c79b500369203fb8", + "key": "6636b4260be3fd0862a871db1464fad8", "notes": [], "params": { "seconds": 0.2 @@ -23675,7 +23795,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f4f7ef60b3fb93611bbb6fae5d873b9", + "key": "e8f48bdd6c5f99f20884437266a295f8", "notes": [], "params": { "forceDirect": true, @@ -23708,7 +23828,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd3fc8e23aa9ee542c0061ffbec3c97d", + "key": "9d2d5e6ee0e20e3dc2bdd64b0c3e8ba6", "notes": [], "params": { "correctionVolume": 0.0, @@ -23727,7 +23847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3dc73ae8229fc43088aa258d312c55f", + "key": "c20f09d78777c4613165e26f22ad5ae9", "notes": [], "params": { "seconds": 0.2 @@ -23741,7 +23861,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e1e810f33630942961291e5a0a426e6", + "key": "7fcc215e11e93816ef807cc36728d4f3", "notes": [], "params": { "forceDirect": false, @@ -23773,7 +23893,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9e9f01c2c33a9440ea677ceca22fdff", + "key": "4449e3e845794b80c3ded5dcbf0be5db", "notes": [], "params": { "correctionVolume": 0.0, @@ -23793,7 +23913,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d0a0063b8c6d0aac0dfe848783e348e", + "key": "0f5a4d5625990bb08b544c155614c7d8", "notes": [], "params": { "seconds": 0.2 @@ -23807,7 +23927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e43da45ccf237795a9d9914627dc3d2", + "key": "f1c75312997f096ad54fd2be798d56f1", "notes": [], "params": { "forceDirect": true, @@ -23840,7 +23960,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7f306cbed0b7870ea68fe33f72f865f", + "key": "22d3bf58df99d5f63bfbe8293d1d9884", "notes": [], "params": { "correctionVolume": 0.0, @@ -23860,7 +23980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "08644acf585c776ee18c19f7d309974c", + "key": "3727ed8b2857a44389f560fd13bf1e4f", "notes": [], "params": { "seconds": 0.2 @@ -23874,7 +23994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1af8251eddf5b549d5a7ce12e27c97ce", + "key": "fa421fcf362bb3d2525d8ce0ed252747", "notes": [], "params": { "forceDirect": true, @@ -23902,12 +24022,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e52a079077ab1852dee760251c9c1a45", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "375996a3d7fbde58f5c9fa73a549a896", + "key": "e75abbe1f49b0d1cc65f13f458d62511", "notes": [], "params": { "pipetteId": "UUID" @@ -23921,7 +24056,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1bb43eeac35e5115c70aa63a049c62a", + "key": "ce94822b3d134abfd6d9b1b308699725", "notes": [], "params": { "correctionVolume": 0.0, @@ -23940,7 +24075,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dfb5e059f4c7f2350008827a1279dc35", + "key": "ce0e048f19bd6263389f54dc570f74f0", "notes": [], "params": { "seconds": 0.2 @@ -23954,7 +24089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2031e67a6e6b6babc3b48857fe338196", + "key": "d79dfe6fd64c786f9be1a029a495e38f", "notes": [], "params": { "forceDirect": false, @@ -23986,7 +24121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb2b20210741df707fead15278e41617", + "key": "466678920a6f5444ef391d1b297e2d14", "notes": [], "params": { "correctionVolume": 0.0, @@ -24006,7 +24141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "664c08f19d4571f538226052ff06709d", + "key": "6a86bfc1b78d9b215a062725c062b5d9", "notes": [], "params": { "seconds": 0.2 @@ -24020,7 +24155,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7028fc4be2587faa099e42e2a792460b", + "key": "523f4bbb6a3b2b3089097737b05461a5", "notes": [], "params": { "pipetteId": "UUID", @@ -24036,7 +24171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d3035d988d99c70afc0de5e815d9439", + "key": "e0a76f2e8ec53a0d1e0d265042e729e3", "notes": [], "params": { "pipetteId": "UUID" @@ -24050,7 +24185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c62a653ed0845f077409c631be58db53", + "key": "5ff7f93985476555822881e69524db87", "notes": [], "params": { "forceDirect": false, @@ -24082,7 +24217,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0cc6bada0ad592d6bae0a9e08d0d1780", + "key": "fa168965f1c6ecb3b458c88d27d80d58", "notes": [], "params": { "forceDirect": true, @@ -24115,7 +24250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66a81d9457dfa94b2fc316f35c15815a", + "key": "ba243b0a626262e607c178d962ec9baa", "notes": [], "params": { "correctionVolume": 0.0, @@ -24134,7 +24269,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41b9bd684b753f306892ef85aec4cb31", + "key": "0e130b6ccee6bbe2d91a4bb4f485ee33", "notes": [], "params": { "seconds": 0.2 @@ -24148,7 +24283,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52629422677b4e4df3415f963fe957bd", + "key": "73b45a3e2bbf381dee951a3096543c53", "notes": [], "params": { "forceDirect": true, @@ -24181,7 +24316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "898ad910a844766d0e077de26783364d", + "key": "859902ff0672e7ad7a0622abd6cc1b74", "notes": [], "params": { "correctionVolume": 0.0, @@ -24200,7 +24335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a533a5e67390f218fdc1c5dd044a4e76", + "key": "cf8cdaef5f49c0beecbc30b022bb63f3", "notes": [], "params": { "seconds": 0.2 @@ -24214,7 +24349,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0d6d6ff4d534158e677c8b0de178308", + "key": "d73c33f366a338d0811a55acab48a183", "notes": [], "params": { "forceDirect": false, @@ -24246,7 +24381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfff422f80bbddba2802d1b0985c64af", + "key": "a5fdb15f70523a7f20cf32fbd6e62902", "notes": [], "params": { "correctionVolume": 0.0, @@ -24266,7 +24401,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae0a6353ab0a950ecb93659dfdfcefc2", + "key": "145f5fccb160d499d36ecd15cf9f20f7", "notes": [], "params": { "seconds": 0.2 @@ -24280,7 +24415,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b3a110bf617d15f572f751900ec9e10", + "key": "e6d829eb83ae2e2f4d8340b14e464318", "notes": [], "params": { "forceDirect": true, @@ -24313,7 +24448,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b1c80975d6e92c73b838dad3054c7f8", + "key": "9c97608c62b731e5c9373afbeef8eaab", "notes": [], "params": { "correctionVolume": 0.0, @@ -24333,7 +24468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b653f62d36a8463bc84619f54e385bbb", + "key": "428ea1b8e83f1ec7db31d08a2392b9fb", "notes": [], "params": { "seconds": 0.2 @@ -24347,7 +24482,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97d1218a26d769077fd5818e7b6a48b1", + "key": "f8d3314e9babecef747787bc67c1a6ad", "notes": [], "params": { "forceDirect": true, @@ -24375,12 +24510,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11443265107fd19e2ce5078726e98c04", + "notes": [], + "params": { + "flowRate": 50.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0542d77e3db0b570f05ae82d6848c7cc", + "key": "b50558fd2c3f402c929ab79c99c65073", "notes": [], "params": { "pipetteId": "UUID" @@ -24394,7 +24544,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9acf4979e1204dd11d135f2b21794ad8", + "key": "18997dde9327e1bd4c02265953e57c0d", "notes": [], "params": { "correctionVolume": 0.0, @@ -24413,7 +24563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19b25905c3da59dc8880fd321c0d9ae7", + "key": "a56d112f05083f8c9ae15d920dd57034", "notes": [], "params": { "seconds": 0.2 @@ -24427,7 +24577,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c34b3e39805e8f2759be8721e249e54e", + "key": "b8661625d56b5311872b3580c2981627", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -24456,7 +24606,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "babbf77c5fb7ff2f738218bce6181640", + "key": "5d1f4455b505088b54840736ee51ba46", "notes": [], "params": { "homeAfter": false, @@ -24471,7 +24621,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8ca9a25d8cc4abe8b0c3058478b8206", + "key": "b8d0489b8f454702434358016e31c027", "notes": [], "params": { "liquidClassRecord": { @@ -24858,7 +25008,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cd08b57bc8d7b9e5d5d21dc328b6beb", + "key": "658c7668e37f06f0aba0ca99902abd23", "notes": [], "params": { "labwareIds": [ @@ -24880,7 +25030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a586e038f4c8115a859906171e0c53b9", + "key": "b9cb132e5f4b08e7b42d071f90d2ffe8", "notes": [], "params": { "labwareId": "UUID", @@ -24913,7 +25063,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9dd7602d9affb7ef28b55782c64edf5", + "key": "7348261d783c5ced794e722ab509ac76", "notes": [], "params": { "forceDirect": false, @@ -24945,7 +25095,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f07616b05ac5fa6d620b4ff122a21573", + "key": "a5bcdf1423707a8df0d59295010a1f26", "notes": [], "params": { "pipetteId": "UUID", @@ -24961,7 +25111,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bbe10645bf95c7965062ad05a8698ba8", + "key": "b19bee25a703c47da09343c4881dd8a1", "notes": [], "params": { "pipetteId": "UUID" @@ -24975,7 +25125,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04e5721d33c20f184acfd389410c46c5", + "key": "9823295f7e79df90f4f206c5cd2bd7d0", "notes": [], "params": { "forceDirect": false, @@ -25007,7 +25157,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "76e5ca3f6527b9d458b4ce394249dc9f", + "key": "8127d78171539c06851b547c20c430b3", "notes": [], "params": { "forceDirect": true, @@ -25040,7 +25190,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bbecca669b813df23b0b2a2ce8ccfe53", + "key": "2f3b66bd1dc9a9b1c383802b209a0155", "notes": [], "params": { "correctionVolume": -0.40625, @@ -25059,7 +25209,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b72da423ea0fbef6c82d9c12a1c67f8", + "key": "36665d3ce288e5aebd375483d3cb02cb", "notes": [], "params": { "seconds": 0.2 @@ -25073,7 +25223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5161cfdd404a95466e8207b810255425", + "key": "7a421702e4e3e9650a37ac02bdd0ef4b", "notes": [], "params": { "forceDirect": true, @@ -25106,7 +25256,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63fedaeb0deeec361549411fdc7b98f3", + "key": "043cce68f97eb5321667be33620cd596", "notes": [], "params": { "seconds": 0.5 @@ -25120,7 +25270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8b3c066055297f0c23c58225c37d11d", + "key": "9c069df3e9b14b4ccd053c8a84e643ae", "notes": [], "params": { "correctionVolume": -0.44375, @@ -25139,7 +25289,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b090ebf5ac523ebd25e9fc257d06a23e", + "key": "fe07e915f74995f95102843dea4a2814", "notes": [], "params": { "seconds": 0.2 @@ -25153,7 +25303,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3087d7cf8a5687a16130dd97ad4f9ac0", + "key": "e0b23d0c6daa0757865935bb16513d72", "notes": [], "params": { "forceDirect": false, @@ -25185,7 +25335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9da743b633119e684a47f6789298c726", + "key": "a36c55d633745e25ec8d4bd1f1625754", "notes": [], "params": { "correctionVolume": -0.40625, @@ -25205,7 +25355,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c7e81d265f6eef77a11ea414941d1f1", + "key": "fc47fa5a125550bbef439a879c200ec1", "notes": [], "params": { "seconds": 0.2 @@ -25219,7 +25369,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58e7a6c4358adc57035b25bfaed83f22", + "key": "bd3896aa1056278ae2c018703647ba5d", "notes": [], "params": { "forceDirect": true, @@ -25252,7 +25402,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b98d51502f1f51bc0c729d1dc6ac85b0", + "key": "48a6448c74d21ea946fecd9bf0e096b1", "notes": [], "params": { "correctionVolume": 0.0, @@ -25272,7 +25422,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b749e9d13674726cde017e9908365ca0", + "key": "91dcc0b39d618e945ce3f0d1508c841b", "notes": [], "params": { "seconds": 0.2 @@ -25286,7 +25436,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72ab5b68a3420b28c9722203d495e344", + "key": "d4652cc20362650c03d837a1a916d1f6", "notes": [], "params": { "forceDirect": true, @@ -25319,7 +25469,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd3befa04758014418eab04d24579f77", + "key": "b7f5ec482dbd59a26ea9669b3c0741d3", "notes": [], "params": { "seconds": 0.5 @@ -25333,7 +25483,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e65280630ad4035de9f2b7f7d3f8cfab", + "key": "e86fb71d073169806998f9096cbedbe2", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -25352,7 +25502,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20e03c9add0a38d3368df58f92b8d1aa", + "key": "a1c3142fc53838e231ab0343b384be66", "notes": [], "params": { "seconds": 0.2 @@ -25366,7 +25516,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec6ac924391ca8a9de511b15dfb609c6", + "key": "47fd29fe94646a732951db09859f97b2", "notes": [], "params": { "forceDirect": false, @@ -25398,7 +25548,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7459db8b8a89379e428b2d30a5bd635", + "key": "1cb54e11b8f3ba73f7cf183163cd71eb", "notes": [], "params": { "correctionVolume": 0.0, @@ -25418,7 +25568,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "608ec79f62cc64e1c205f128948ccb4d", + "key": "72d5df53f2371b2e1b65c718297ef2bd", "notes": [], "params": { "seconds": 0.2 @@ -25432,7 +25582,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "464f92de00aedde20a82c4e17d770d43", + "key": "a39cb55f44d7e5356412e8c94b995b90", "notes": [], "params": { "pipetteId": "UUID", @@ -25448,7 +25598,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04aecd658d19ae35d029a9e053d52ba5", + "key": "cb7cbd236461a278f2049c2db515aea7", "notes": [], "params": { "pipetteId": "UUID" @@ -25462,7 +25612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d894fc4620a7f50b0eb190ee1e7e666c", + "key": "83bf13d093d21b01ab651c05a8deeaef", "notes": [], "params": { "forceDirect": false, @@ -25494,7 +25644,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0df672e069ff6080087feb37c9734837", + "key": "cd498b29cc40c7e1d1504668e21f7a51", "notes": [], "params": { "forceDirect": true, @@ -25527,7 +25677,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c3778655a04a09b32f19d8d620f1217", + "key": "670171652c0c6be6d4fcd31d48e37e66", "notes": [], "params": { "correctionVolume": -0.40625, @@ -25546,7 +25696,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9cd3f8eefe786e69c6bf5cf241f9b2ea", + "key": "c8d065ceb92d80fda56a9eb16c6dc2ac", "notes": [], "params": { "seconds": 0.2 @@ -25560,7 +25710,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2781e1760ad08c037048b935f225adf5", + "key": "9ada6a52f9be7ddc74648c133b98bfbd", "notes": [], "params": { "forceDirect": true, @@ -25593,7 +25743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fb43dfc0a254e5d4f16953a0586cc9b", + "key": "47ad5588b4ba7777bf72a5f03fd299a8", "notes": [], "params": { "seconds": 0.5 @@ -25607,7 +25757,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6ebd17d3d14738667c01b02d0da6635", + "key": "ff4bc2e80ae006d2ecb22dde7b5d0a0f", "notes": [], "params": { "correctionVolume": -0.44375, @@ -25626,7 +25776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac08d73619bea3ebfc755ba5449298f8", + "key": "f1f49e040708877a5727de48635956db", "notes": [], "params": { "seconds": 0.2 @@ -25640,7 +25790,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d9cfbc64c37323b5b8887e553e02f61a", + "key": "244bea4d56f6b1035df935b6ec445842", "notes": [], "params": { "forceDirect": false, @@ -25672,7 +25822,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "768e25c0d612fa505c4d8b718654d046", + "key": "133456b1044e25fc284a2f92de4a74c5", "notes": [], "params": { "correctionVolume": -0.40625, @@ -25692,7 +25842,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f50ae7b05fc9530303a4dc30bdae9b4c", + "key": "958eac447ec74a73b235e0a2275b02fe", "notes": [], "params": { "seconds": 0.2 @@ -25706,7 +25856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "368910d6b723bece0ad55462fb198259", + "key": "b05831462faffbbac3d0e7d273bce5fa", "notes": [], "params": { "forceDirect": true, @@ -25739,7 +25889,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ffd5b9b6f486aae8d48d93a3274ac08", + "key": "5c9531793ddea6777084a0668b2b88bf", "notes": [], "params": { "correctionVolume": 0.0, @@ -25759,7 +25909,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f4b75e180da94d89f2b167d37ebb320", + "key": "2593f64e89b342153be7a8f431f09df4", "notes": [], "params": { "seconds": 0.2 @@ -25773,7 +25923,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ec4cbe62354308ab2be074664145e3e", + "key": "00e20b7ffdf058baddb29d586a46d64c", "notes": [], "params": { "forceDirect": true, @@ -25806,7 +25956,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa53a15b8f35f8da7501bf9057b062f9", + "key": "12414eb12d690de3d09adbb8c2283d3f", "notes": [], "params": { "seconds": 0.5 @@ -25820,7 +25970,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1160b571b321e51ed1667592b3fccdb", + "key": "0a627a0f061f3a45f859bbc6be71592b", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -25839,7 +25989,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45de0fc072d562c8ecc1eeca44399e86", + "key": "41aabfbea16c10715dd066163063c12a", "notes": [], "params": { "seconds": 0.2 @@ -25853,7 +26003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0095e8334070cd774778af17c8efeb44", + "key": "ddcf5ca78364f4dba13380674c221082", "notes": [], "params": { "forceDirect": false, @@ -25885,7 +26035,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fbdc0e112a533d873fba9140e79086f2", + "key": "d9be4244f598fe865c9b1dabdb8f17b8", "notes": [], "params": { "correctionVolume": 0.0, @@ -25905,7 +26055,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec6429c2106531f046a22352c8fb38bc", + "key": "14e6ed339093eae527752c4f54e42f70", "notes": [], "params": { "seconds": 0.2 @@ -25919,7 +26069,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27c3b31d9acbef574c899ecf140ed7f5", + "key": "1b63e3661fa8ba5aa4f4d2ea120a4fe4", "notes": [], "params": { "pipetteId": "UUID", @@ -25935,7 +26085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb2577d0878198ebe80bc0c65317847c", + "key": "6baef0506de876b2a4081c7d534e8b8e", "notes": [], "params": { "pipetteId": "UUID" @@ -25949,7 +26099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aebf39ba386ddff6ce47f15663fe91d8", + "key": "33403e77bf0028dd1ef24d9a7107375e", "notes": [], "params": { "forceDirect": false, @@ -25981,7 +26131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "437c9a9f7fe9ad1a9f227a6658264172", + "key": "ee4c0b63070326dc10adbd487c4e80c1", "notes": [], "params": { "forceDirect": true, @@ -26014,7 +26164,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a6f7259e0c8768f21283bdea9dcfe52", + "key": "5cc0e080ee11226349fba477299eef8a", "notes": [], "params": { "correctionVolume": -0.40625, @@ -26033,7 +26183,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "881291d171ec4f032f15fa8eaeecce2e", + "key": "b720f0c87b6c9c1760473afdcc5716db", "notes": [], "params": { "seconds": 0.2 @@ -26047,7 +26197,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "255cce84e8184c80433868661e5a6871", + "key": "8c36373ee8a9dcb9550883e60b22581b", "notes": [], "params": { "forceDirect": true, @@ -26080,7 +26230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b14973a18cf59f08a952cc6a7da9146e", + "key": "888615de7569fa31926f59fabb775897", "notes": [], "params": { "seconds": 0.5 @@ -26094,7 +26244,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "792a0ca8a57c5a99298a132b4f7e0832", + "key": "2369ec2aa72891e1099bf97a8fae8959", "notes": [], "params": { "correctionVolume": -0.44375, @@ -26113,7 +26263,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af69919280dd0274a8e57657a873fb56", + "key": "0fd279a089512658a68c0150c43ccf44", "notes": [], "params": { "seconds": 0.2 @@ -26127,7 +26277,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "123f4c0692f05489905f7886a207f168", + "key": "b5a1fcab0279ca4174e5b1945917bb9a", "notes": [], "params": { "forceDirect": false, @@ -26159,7 +26309,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a705f5ac075b3aa7f0ce846638624c7d", + "key": "6ba74310582fc04c3cf704d999b667ad", "notes": [], "params": { "correctionVolume": -0.40625, @@ -26179,7 +26329,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1c2c697c781de443f081ccd7f8a19c9", + "key": "37a63e2ba076985da8b16348d7a1c826", "notes": [], "params": { "seconds": 0.2 @@ -26193,7 +26343,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5303bab1486bcd54d7a8340edaae143b", + "key": "ee3c9a60ed7849b3b13fc84a62e3c73c", "notes": [], "params": { "forceDirect": true, @@ -26226,7 +26376,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c6b6149b4bd5e57328c48f3c0a05b5d", + "key": "e195c07f01b38573f45b7f94fd2a92bc", "notes": [], "params": { "correctionVolume": 0.0, @@ -26246,7 +26396,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b78bca042afa9ff84fd4905e1e0a6f15", + "key": "cc43b6778a153756c9d12511805c5d7d", "notes": [], "params": { "seconds": 0.2 @@ -26260,7 +26410,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "088e02fd7dbbb410e81158f32587f25f", + "key": "3e245e06e4c9bae3ef86e63d7c89f064", "notes": [], "params": { "forceDirect": true, @@ -26293,7 +26443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c99d8bb5aa83123254035e6482e123b6", + "key": "5aa80adcd97e8b690934d7dd02b50c53", "notes": [], "params": { "seconds": 0.5 @@ -26307,7 +26457,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abfdb6eb1eac9c8cd5ff786cca8af04b", + "key": "e377f3fd2ef1058900732ebd2f6efc74", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -26326,7 +26476,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "47fecc158c23231e49345a7159d972c9", + "key": "45aca0b26971285b272bfc76ae89bd6b", "notes": [], "params": { "seconds": 0.2 @@ -26340,7 +26490,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6029d80e680d157daf7ef281bc43924d", + "key": "e646542ac8c072d2fef6d2e4d5dfd23b", "notes": [], "params": { "forceDirect": false, @@ -26372,7 +26522,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46ab8b638c9f379559ff8b996eb63816", + "key": "bfaefe25edafb61d49790764a031edd5", "notes": [], "params": { "correctionVolume": 0.0, @@ -26392,7 +26542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f32ba2cb3055003cb55a288f9ffd97c", + "key": "e7011b7b3098a0969331a2c631099b5c", "notes": [], "params": { "seconds": 0.2 @@ -26406,7 +26556,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "035d8271931cb95fd3011fcc87378566", + "key": "00924edd68ab89d7622cff0f2883fcb0", "notes": [], "params": { "pipetteId": "UUID", @@ -26422,7 +26572,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e28218d0cc5c0c659393eb2d0b9deaa7", + "key": "2f3e4c4efd32e0636eb8e11ae6085ecf", "notes": [], "params": { "pipetteId": "UUID" @@ -26436,7 +26586,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4928a3fd37bc252ae21ade02f5fb5a1c", + "key": "5daf81c415919b2231e7194fa51e7f25", "notes": [], "params": { "forceDirect": false, @@ -26468,7 +26618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffd06f2ce60130b5b4ca8fa30ca299e5", + "key": "3309b2b87d885a9f08690bd3b707132c", "notes": [], "params": { "forceDirect": true, @@ -26501,7 +26651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "800491b3b734a63b76b06aecc8ea3674", + "key": "a4ee6e71cfc18efaf5a864135e4b37f8", "notes": [], "params": { "correctionVolume": -0.40625, @@ -26520,7 +26670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c14d1fcb5f0ce3d915d3239e961c143", + "key": "767ad419462a79fe28e9b3a069702e09", "notes": [], "params": { "seconds": 0.2 @@ -26534,7 +26684,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3d03687d44f45111f162157fcaae0f6", + "key": "55dfad7f25c7c84eaa850727ca3c35b7", "notes": [], "params": { "forceDirect": true, @@ -26567,7 +26717,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d8abf24312f3b8b646f134c4423d66fd", + "key": "17b7114f081b0da2cfc1e1e1b0e38266", "notes": [], "params": { "seconds": 0.5 @@ -26581,7 +26731,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "444c6076c1e095c99ea041272c8f6b3f", + "key": "0c68cc97666048c751e5c39c0947786d", "notes": [], "params": { "correctionVolume": -0.44375, @@ -26600,7 +26750,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd15bde53cdc8c1510ab2e196703f846", + "key": "a1e3e753821d5f1f2ad2d5d35331d5e4", "notes": [], "params": { "seconds": 0.2 @@ -26614,7 +26764,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a9b0e97064c93c11e144687c0543b62", + "key": "b7e7cc38fc8c0b82341a56f14a8fd5e4", "notes": [], "params": { "forceDirect": false, @@ -26646,7 +26796,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "874a98edc6e7fbfb95168737a79c330f", + "key": "b7ac92248c0c24a50a309e37ee51a6b3", "notes": [], "params": { "correctionVolume": -0.40625, @@ -26666,7 +26816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1dd2d1ee9d0ca69987e1bfe447319063", + "key": "d9f7e46ab60c8de537c42e4907c038a2", "notes": [], "params": { "seconds": 0.2 @@ -26680,7 +26830,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9ff94e2ecfe00b9263100abd534de40", + "key": "29dd1b38b73c53ab82625607754d9ac6", "notes": [], "params": { "forceDirect": true, @@ -26713,7 +26863,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "019766aef7c73fb44ea9d301446af585", + "key": "dd2a39d05d0c08406640c8a4294b30fb", "notes": [], "params": { "correctionVolume": 0.0, @@ -26733,7 +26883,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a21e4cdd369e80d14fbb0db67221fd9", + "key": "4e5d90ccd2a86a5719fbd1e7c2650164", "notes": [], "params": { "seconds": 0.2 @@ -26747,7 +26897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae8b2413f8d628ce23de162d7ddde904", + "key": "5a7bd4e820dcb761cbb8e18199cfb227", "notes": [], "params": { "forceDirect": true, @@ -26780,7 +26930,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f1a37a92b030aaf3b604ceeeb0f370ef", + "key": "b384010c3e1426795f6f81766a0fbcd1", "notes": [], "params": { "seconds": 0.5 @@ -26794,7 +26944,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "570d57aa592ec0c7a9a8705b954018cf", + "key": "49746c1c977b322f7c48c8668b37886d", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -26813,7 +26963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0ace25c5726ec1a251afebaa6ffc3c1", + "key": "759d29835949bad12c745dcb9ae50904", "notes": [], "params": { "seconds": 0.2 @@ -26827,7 +26977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8823a707d97a1b72ac3a599fd61f624", + "key": "3f12d79439fd71463efa8f9606d0450d", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -26856,7 +27006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b251083f34efdffb59554cc9ad8dee00", + "key": "ea291ad1c3879b1d4a26a494edadd04b", "notes": [], "params": { "homeAfter": false, @@ -26871,7 +27021,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edc924e83e603785c16156957091a5e8", + "key": "1aae0190621732072cfa1f034b395cbc", "notes": [], "params": { "liquidClassRecord": { @@ -27246,7 +27396,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcbbf63ed103ab5c6e88886d15b65031", + "key": "ae19e3e6c73b1f891974192690cafb60", "notes": [], "params": { "labwareIds": [ @@ -27268,7 +27418,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c335c880d397fb4e139cbe31d9fbe07", + "key": "2072b1767d8c6b19c9b02d4b52a543b7", "notes": [], "params": { "labwareId": "UUID", @@ -27301,7 +27451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d8af0f13be344f4d919263b4582419e", + "key": "e9f6ec78debf7335c35fe3f04d7a95ff", "notes": [], "params": { "forceDirect": false, @@ -27333,7 +27483,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dfdff12ac6c0cf47dbafdf063c20e07", + "key": "18fb891bb39dd70d6f3bed799e7142cf", "notes": [], "params": { "pipetteId": "UUID", @@ -27349,7 +27499,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e9ebcd8ff24dbd9583bad9bb9a4bbef", + "key": "b32a45707137641953bd2ed0cc497f28", "notes": [], "params": { "pipetteId": "UUID" @@ -27363,7 +27513,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37a2539c8beb854b97a8bb3dfe430bcd", + "key": "7b73b37833bf985da10c29d016fcd4e1", "notes": [], "params": { "forceDirect": false, @@ -27395,7 +27545,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c71a5b77202724aa6af90d23a3066c1", + "key": "5c04d58d29933996efd388c09df8c9f5", "notes": [], "params": { "forceDirect": true, @@ -27428,7 +27578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b0a1296daa1c13dc71b43455eae3c35", + "key": "9d70ec5abe30561e4c92f425d51e346c", "notes": [], "params": { "correctionVolume": -0.10625000000000004, @@ -27447,7 +27597,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef0cf036f6bc1056c3191bb1445a3710", + "key": "e07af10841d3e08eda458f4dad0dd1de", "notes": [], "params": { "seconds": 1.0 @@ -27461,7 +27611,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c9fb2d72dae22bca6cfab5ab6330b15", + "key": "c8675e84c2e9e64cac4f557c36cbea67", "notes": [], "params": { "forceDirect": true, @@ -27494,7 +27644,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a6ba4cd0d73e3e40a2b3361721796a4", + "key": "3c256c70acdaef3af392bab61bc6ba36", "notes": [], "params": { "forceDirect": false, @@ -27526,7 +27676,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "51966c480614fe9065a7b42f85eea3f9", + "key": "8de9af58e5a1d8e50cec940f51dfd7bc", "notes": [], "params": { "forceDirect": true, @@ -27559,7 +27709,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b200ff9c76b1c845fb7ef1772fea381", + "key": "265042c473b87075343e5ef7681cdd56", "notes": [], "params": { "correctionVolume": 0.0, @@ -27579,7 +27729,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fbd6f58826b6c94224ffa8cb3047d8a1", + "key": "f1f72472041e756155f62230c66d2be7", "notes": [], "params": { "seconds": 0.5 @@ -27593,7 +27743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8df94b23ad492f67806e02477ffcb4b4", + "key": "d81df88c2d9d3f8eb06dee5837caee28", "notes": [], "params": { "forceDirect": true, @@ -27626,7 +27776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c3b5562ff8fd316e8ec1dc36c83d2c0", + "key": "928b608d627324b5de6729f131db8740", "notes": [], "params": { "pipetteId": "UUID" @@ -27640,7 +27790,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e4779f8c213984a01f1b239d27eb52e", + "key": "22d2bfa766bbb8d17510e1d5d847828a", "notes": [], "params": { "forceDirect": false, @@ -27672,7 +27822,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b767dab521b9b040b9040893d9c98ecb", + "key": "c9e78473dfab8c969f66ef38fd5f2b4e", "notes": [], "params": { "pipetteId": "UUID", @@ -27688,7 +27838,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "56ef52f8814af8e0318f1d7b38ddad87", + "key": "c19eb2834e87f7e716c6cdd6229d2ab3", "notes": [], "params": { "pipetteId": "UUID" @@ -27702,7 +27852,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa1c6e76201b9db5ab49e93cc1433247", + "key": "66e1fb10c43a68177d87c8923e7997a4", "notes": [], "params": { "forceDirect": false, @@ -27734,7 +27884,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "451ae0fb62ee2b8e6c1ad85c34ddb75b", + "key": "a5aa36492b1ac5ef2e88083aa3532ebf", "notes": [], "params": { "forceDirect": true, @@ -27767,7 +27917,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3899e5bbf4f39570bf4ea05b6691507", + "key": "0d12214862af0be07032d0b64db89adf", "notes": [], "params": { "correctionVolume": -0.10625000000000004, @@ -27786,7 +27936,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d387af817abe224bc32f3ac9ab4b5ba9", + "key": "466ece4c547c67b9c042e56313c6d345", "notes": [], "params": { "seconds": 1.0 @@ -27800,7 +27950,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ad24ac3339034016ea7cf4a1e86b831", + "key": "c401e6d11d64ad0395b3d3d8521314a7", "notes": [], "params": { "forceDirect": true, @@ -27833,7 +27983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a288f0ce364117ea4545c9e5a5c89de", + "key": "87e1fe45b7835cc80d1b6e92489e8126", "notes": [], "params": { "forceDirect": false, @@ -27865,7 +28015,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "834bfaae0b10d13ea1653f3fb32371cc", + "key": "a490aaecb1503905524d353a9d6a6c28", "notes": [], "params": { "forceDirect": true, @@ -27898,7 +28048,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ba617b7ff3f00da52695008644f8667", + "key": "f7c23105c35f9f4165979eaca4896ff7", "notes": [], "params": { "correctionVolume": 0.0, @@ -27918,7 +28068,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f56dbe674ee1e49e4739bb570dd93e4", + "key": "8a3d18baea20a21cc6e8bd8915f32d3e", "notes": [], "params": { "seconds": 0.5 @@ -27932,7 +28082,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60dc693b4160d034e212d412b683257a", + "key": "44f0fb938c48d3c0450451e82896df8e", "notes": [], "params": { "forceDirect": true, @@ -27965,7 +28115,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ced673dcf4a58a5ad4a46aa4d0d3f5a6", + "key": "e86f4623865940e701f997d62c10a353", "notes": [], "params": { "pipetteId": "UUID" @@ -27979,7 +28129,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74b2673630ef9d8bebd326d462922f86", + "key": "0478775d22743187b3b30a7296f818d9", "notes": [], "params": { "forceDirect": false, @@ -28011,7 +28161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28af22652de0b1cdc37b84a2b009eb99", + "key": "ed0cd296b4296f3595b54990451ce502", "notes": [], "params": { "pipetteId": "UUID", @@ -28027,7 +28177,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6685b5a796c96382df3fc6790805a891", + "key": "4464fd5f1bb8f7ab435bb3dfc83f9fa7", "notes": [], "params": { "pipetteId": "UUID" @@ -28041,7 +28191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fa6fc4ee8e3c59ec86dd92996cf1cbb", + "key": "c0c98f5d1efd8f00c63f8ef01e4fec4b", "notes": [], "params": { "forceDirect": false, @@ -28073,7 +28223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d2bb98740df80091fc6ce7079f2653f", + "key": "f38d980c2e915054b9085f2f24290571", "notes": [], "params": { "forceDirect": true, @@ -28106,7 +28256,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a2c634c30d3be9fce4d90e08c802e56", + "key": "6661e7585ae779070120f327bcab5434", "notes": [], "params": { "correctionVolume": -0.10625000000000004, @@ -28125,7 +28275,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dabe77dc8fce0ea4982d9e06bba3de63", + "key": "15b5e5c3b2eca2c9cbb08101633e07f0", "notes": [], "params": { "seconds": 1.0 @@ -28139,7 +28289,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "832d8e9c66b30aeb7db760dd96ca9159", + "key": "920bbc79325c207cdc7f9cc887a19d68", "notes": [], "params": { "forceDirect": true, @@ -28172,7 +28322,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a62d2948a2b741f0bf003b81c927de1", + "key": "4bbc453cf235e034362f0451999c55cb", "notes": [], "params": { "forceDirect": false, @@ -28204,7 +28354,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79a684a97065726ff57383e905f3b5d2", + "key": "4ebab340fa66a553b17b1784c9a2190d", "notes": [], "params": { "forceDirect": true, @@ -28237,7 +28387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "adb9bd41e76e87ed0c90ff5d5607d4fd", + "key": "57f2f1b736aecef599154993a08c90ea", "notes": [], "params": { "correctionVolume": 0.0, @@ -28257,7 +28407,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54810e4dce2476d46cec334209174b3f", + "key": "c450ed3fceeeb4672ce5c7eb40716951", "notes": [], "params": { "seconds": 0.5 @@ -28271,7 +28421,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9945b08bda49f680fb4d39e02d386ba", + "key": "8b3e82755a4ce27620dfb109680f4dcb", "notes": [], "params": { "forceDirect": true, @@ -28304,7 +28454,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6323c3eff5cd98fcba9967d95f20f91", + "key": "8f9c7aad5a430be9c4278799b9a9cda5", "notes": [], "params": { "pipetteId": "UUID" @@ -28318,7 +28468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c0806285a9ced98015b206003c81228", + "key": "c262b8b975fb5a3c802b4d0ecae31ed7", "notes": [], "params": { "forceDirect": false, @@ -28350,7 +28500,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d26123e29748ef179374f4b4cdd2de0", + "key": "1d4243c0290e7dc513819c3a95d92975", "notes": [], "params": { "pipetteId": "UUID", @@ -28366,7 +28516,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e7f29243661ca589a3ece1da0225db18", + "key": "0f0a33afe009610c7e0ff0f63d1e673e", "notes": [], "params": { "pipetteId": "UUID" @@ -28380,7 +28530,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae9db9fc43b70205a07e9c5a9e2123c0", + "key": "fdcea06324324f5775813a3e3b2b0e4a", "notes": [], "params": { "forceDirect": false, @@ -28412,7 +28562,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73ff2878a12485bdffa16128001646e0", + "key": "c40b937c677f88f4f5eacc967a993592", "notes": [], "params": { "forceDirect": true, @@ -28445,7 +28595,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "baf59dc128b603de8f3780142d7c2308", + "key": "55619c2fb081b1bb1a561db427fc5785", "notes": [], "params": { "correctionVolume": -0.10625000000000004, @@ -28464,7 +28614,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3491c213b8a648412197d4e91d46c9b2", + "key": "a1db46088417bcae4d02366a98b78426", "notes": [], "params": { "seconds": 1.0 @@ -28478,7 +28628,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f726b1df625c1738edaf4e10bc5ed73f", + "key": "d3a266497eb8a81ffa17b2669e29c1ad", "notes": [], "params": { "forceDirect": true, @@ -28511,7 +28661,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "522358b1aac72688fcc1b3c9230d903b", + "key": "5c4a244351f0d9156ae611386b5a4f2f", "notes": [], "params": { "forceDirect": false, @@ -28543,7 +28693,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70e231c73f6332d756bce0346ba32925", + "key": "d8de982edb2bbbfadbadcb6f242896c6", "notes": [], "params": { "forceDirect": true, @@ -28576,7 +28726,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25d734a5bc11fb8a90e6b186e108662c", + "key": "f01093ce64e0b8c9b34c8623f1598aca", "notes": [], "params": { "correctionVolume": 0.0, @@ -28596,7 +28746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04869d14064b48461f93ef0b92a95ea7", + "key": "069f6f886975849127b0f095046086ef", "notes": [], "params": { "seconds": 0.5 @@ -28610,7 +28760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85dcb33297c74c82eb6dba9cf97aed7a", + "key": "c6c17c1a393295e78fa95eff1c290e6c", "notes": [], "params": { "forceDirect": true, @@ -28643,7 +28793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34ce39f7236539da0eb06b7c03678244", + "key": "c7d40501c40baca3c3a7adf0ca78c1ac", "notes": [], "params": { "pipetteId": "UUID" @@ -28657,7 +28807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49e2b1563549cc345f51bfc08b92b316", + "key": "55f0e3fb10f846e5b2f0c9b03b57aced", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -28686,7 +28836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f54e55a3799eb1bdee15ee6145e93b5", + "key": "a4c49134141d8cefab7750154cab744d", "notes": [], "params": { "homeAfter": false, @@ -28701,7 +28851,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2d984277e495dd52d71eed21c656046", + "key": "6613df0e32cd6dc1c398f51aa77d048f", "notes": [], "params": { "liquidClassRecord": { @@ -28723,7 +28873,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -28755,11 +28905,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -28794,7 +28944,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -28944,7 +29094,7 @@ "delay": { "enable": false, "params": { - "duration": 0.0 + "duration": 0.5 } }, "dispensePosition": { @@ -28979,7 +29129,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -28989,18 +29139,18 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { - "flowRate": 478.0, + "flowRate": 318.0, "location": "destination" } }, @@ -29035,7 +29185,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -29060,7 +29210,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1cb11a2bb2d4e055974ef0b849a7b39", + "key": "5d73e858321c8e194819fa35bec41b57", "notes": [], "params": { "labwareIds": [ @@ -29082,7 +29232,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "815e977050199313a23bd4499dd1e6b5", + "key": "885636feba399e1da08266e190643c69", "notes": [], "params": { "labwareId": "UUID", @@ -29115,7 +29265,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9310b58f580f44a5479750f5860f3593", + "key": "b67d0d90d2395ebdfe0f72019536bc7a", "notes": [], "params": { "forceDirect": false, @@ -29147,7 +29297,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9da6a5b36eef54b4ee852e12febc5414", + "key": "34993ec7a1ee76bbcb424893abd0a6bd", "notes": [], "params": { "pipetteId": "UUID", @@ -29163,7 +29313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "874aa8cb7a231c78b2d40055226b4642", + "key": "599fb6a96524587555dd2f211a3410dc", "notes": [], "params": { "pipetteId": "UUID" @@ -29177,7 +29327,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ced6f373ac5d02a16ddfaa47beac5e8e", + "key": "b26899a857f21758e0e1df82bfc64bf9", "notes": [], "params": { "forceDirect": false, @@ -29209,13 +29359,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d927810237c67e071052c4a90f2af6fe", + "key": "bf22c76540a2231c90c0824b0ecf08ea", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -29242,7 +29392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e41072834964acee68f769420e1e3cc5", + "key": "b40cfda71581e5a84e07fb0fc2ed0489", "notes": [], "params": { "correctionVolume": 0.0, @@ -29261,10 +29411,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5a5457e7b250ff2d17de41d3e5ed178", + "key": "547c704401489086b80f1013b7864aab", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29275,7 +29425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db3b6aa5824d663d385381f642171465", + "key": "24600087355f734c7ebcce86744a6ff4", "notes": [], "params": { "forceDirect": true, @@ -29308,16 +29458,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a965d415191daa9387fd8e3daef9817d", + "key": "8e9f2bedde3f1de98ba41080c859d3cd", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29327,10 +29477,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c43bd98ef5ac6455b64b401e2569d51", + "key": "16a3f24962518c07a4c16f634a621b2e", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29341,7 +29491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ffe254cfc08246024256cfa3944ade4", + "key": "be5dc595d1d523b4ad7e65e43177c42e", "notes": [], "params": { "forceDirect": false, @@ -29373,17 +29523,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0340b8ff05a30e7f1c2e59bd1379672b", + "key": "759a6aa9267124e44937ad92d9620df8", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29393,13 +29543,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86f4323a04c8806c274d6b687366c082", + "key": "0f8018016534f9d9295ad5fe37f1ff7a", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -29426,13 +29576,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1eb7cbe53fb58f3450ff80f8e46f31d6", + "key": "d3e9d490eb409bc0b3665057e853d875", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 37.5 }, "result": { @@ -29446,7 +29596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1908ef7dc99c0adebc2f30de754449c", + "key": "15677453c55d08144d6ebface4e320cf", "notes": [], "params": { "forceDirect": true, @@ -29474,12 +29624,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec2b682022d0bac522d091741921d383", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9312a1b4a0497eb48ad863d41d901e22", + "key": "792d1b494da18fc1f70474f3d291bf72", "notes": [], "params": { "pipetteId": "UUID" @@ -29493,16 +29658,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "151bbde85680fef4281c4e0f5fc30da7", + "key": "6c6fb8b66a65b2b01ec7d052bd0d052d", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29512,10 +29677,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "713d39f987c12faa5b1c9e02b00f0c1f", + "key": "31baa9cd3b12a5135cf83480ccd3d898", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29526,7 +29691,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c75d21f36013b17d503fb316ae65c6e", + "key": "1cb8064b89f87652e6cf45d038c7a94e", "notes": [], "params": { "forceDirect": false, @@ -29558,17 +29723,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "925f7167762f4f862664078cfa445a0f", + "key": "f5a7f45629b78f6f57df67b3aeb3a630", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29578,7 +29743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07d220b85b499db5fb91896981ae7877", + "key": "86ae1926c6b13128d1a64ceb3a2a0f48", "notes": [], "params": { "pipetteId": "UUID", @@ -29594,7 +29759,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43f1f3025a7098843968229e4c2991c5", + "key": "2ac1a5996a57bf9674e35c09e9371368", "notes": [], "params": { "pipetteId": "UUID" @@ -29608,7 +29773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7037b21a347828fc5cbf7d325a24e305", + "key": "8bbe34f2a769ffadb041bb105f54e3e7", "notes": [], "params": { "forceDirect": false, @@ -29640,13 +29805,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3dd7aed6e35fb7c31945facbf1abf59", + "key": "3617784939c0bb85c3abc953cf2b70b1", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -29673,7 +29838,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2c97903a60b3b5410f683591c185452", + "key": "7a5ae58e46193fa0c44c93d8581c0911", "notes": [], "params": { "correctionVolume": 0.0, @@ -29692,10 +29857,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df9171eb7e4908991df1b6bab812b479", + "key": "8e36f5e03ae4696b762acdcf69478eaf", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29706,7 +29871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e83cb105b2b1b5d79b3a193d8d18c34f", + "key": "eeb25aa662a0a2f425fbc42a86bd2832", "notes": [], "params": { "forceDirect": true, @@ -29739,16 +29904,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23ea6e1522443ffd1d2bf37c68f80278", + "key": "fa144a52017c1576bd0640de2d670b4a", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29758,10 +29923,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "908b4eeae59be9ed6f457da2f734e224", + "key": "028002e7c160a1fa537823700060263b", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29772,7 +29937,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "68b2acf04b744d6fed38ae3c28335862", + "key": "acfbb202bcd0b1f08bc7ef91425e2c7b", "notes": [], "params": { "forceDirect": false, @@ -29804,17 +29969,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b59f16de4ef63c5bbfb4cd473e31415", + "key": "e9e0ebc7f0549c03e8592d665b828c7b", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29824,13 +29989,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80656d7f69a4b401ca5c9b9d5914813d", + "key": "5a5b1136c64374368bc708406597759c", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -29857,13 +30022,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef984f609f69611ed3a44fed744aa119", + "key": "5ac4d8057c62fd4a65c30533abb38bd2", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 37.5 }, "result": { @@ -29877,7 +30042,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b59cc3e49bb446b6546c49c6ce547f9", + "key": "04750f0e564c88404848573c191da32c", "notes": [], "params": { "forceDirect": true, @@ -29905,12 +30070,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d5148d91b817b072f6651e8d8b62cff", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c7f79505f7f56ad31f73f6b71da2ce9", + "key": "a4973fe9a97a88cc28b64ae32a947640", "notes": [], "params": { "pipetteId": "UUID" @@ -29924,16 +30104,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0e5dd8c8d962df436c73879f2bfe162", + "key": "807133e939984ad6a03f8c8d32b6d580", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -29943,10 +30123,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e75892e92e237bba944ac875932752e6", + "key": "1e440767ca9df14ddde3c1e1428562c3", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -29957,7 +30137,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0d25810e2890fca1b7a0b2b982427e8", + "key": "9693f7820f4ed5310304a9d65df99b49", "notes": [], "params": { "forceDirect": false, @@ -29989,17 +30169,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07087a6195538bf2c052a9fcbd7c5540", + "key": "626f99b84a835299182272416aa9838b", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30009,7 +30189,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffd242052897f4a87a9734feef6a0fa2", + "key": "c6b821ab7c267994b9aa86a168b10739", "notes": [], "params": { "pipetteId": "UUID", @@ -30025,7 +30205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6323b03dbfa03861c721280d66516def", + "key": "412525c0006fb901ad13c86cc531dab0", "notes": [], "params": { "pipetteId": "UUID" @@ -30039,7 +30219,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c65e5756395e72554d455af81ec1046", + "key": "ede78148182785a7438c8b5e34f97b36", "notes": [], "params": { "forceDirect": false, @@ -30071,13 +30251,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0238d2c21ba2d8d889cda1349c1c5db", + "key": "045595c318090cafa63adf031e2b4542", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -30104,7 +30284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e12fc194e3a2904e778845c16223dd55", + "key": "0b174ed20c81a7166103e618a096843d", "notes": [], "params": { "correctionVolume": 0.0, @@ -30123,10 +30303,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77104e8f80208e85262c0fb56c02fa42", + "key": "dc8daec5ad7420d8fad0ba4f0dbb78ad", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30137,7 +30317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "145e8cafc6ba37b9ee0ef988c6ce4637", + "key": "352a0a90822bf31143896abe19226f9a", "notes": [], "params": { "forceDirect": true, @@ -30170,16 +30350,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b76e3ff73350296508cdf8e73940f89a", + "key": "444c74cdb7c993af5b8ea347ac3dd527", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30189,10 +30369,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7871af47bda1fbf7f7bc7c95e781bb1f", + "key": "3c64bd30442c1eff96313170bce5e2c7", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30203,7 +30383,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "779974e3a810b35d5bf477a3f3009d38", + "key": "3b795184ffa030395d151283417f1a1f", "notes": [], "params": { "forceDirect": false, @@ -30235,17 +30415,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab401899df95588ff90d507464ff47e1", + "key": "26dbafd02eb8307247a83e1d821c2592", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30255,13 +30435,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89bd2b28d5ec6c40b2d3860d0a0875c4", + "key": "e3f7d7f3e0d1a4491afe1f37c36fa350", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -30288,13 +30468,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74471203d0e21489cd0a438cb3170dda", + "key": "a35cd21688a1b61046d7de21dbac840e", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 37.5 }, "result": { @@ -30308,7 +30488,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "76bd822600acbbb7411195021f4aa449", + "key": "df70790565be1fb11d883157e81d82d7", "notes": [], "params": { "forceDirect": true, @@ -30336,12 +30516,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d83b011a168a43c2e33c06d0eeb9156a", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7c856fe1c2c27168311d6289fb2905d", + "key": "b6b9e889cabd24f56203532bee8c2351", "notes": [], "params": { "pipetteId": "UUID" @@ -30355,16 +30550,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e990ed70dcb7387815ebde1d95043d6", + "key": "77465be7ba32c3eef8b5c8ef4c08e840", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30374,10 +30569,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9cff31f50a83104722bbcfba201dd99c", + "key": "c8989f13d84708958e8f3dd579f79148", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30388,7 +30583,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b809f9ac1f6633c8ed8f1e7248a1f88", + "key": "f319484f4efe772f1ee5b8838e93e869", "notes": [], "params": { "forceDirect": false, @@ -30420,17 +30615,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5588457c2ecc6fe1bbe662a64d8aa27", + "key": "8eaaec7273963862ddad15c1898f161a", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30440,7 +30635,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f90bef0f0e5b52a5e30126aa181043d", + "key": "4a093f038cbe672092349f6e225d03ca", "notes": [], "params": { "pipetteId": "UUID", @@ -30456,7 +30651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37de1fd599f5c8d37e0c7a12136a477f", + "key": "f94d81f3e16ea0b01f77cc7bc9ff7049", "notes": [], "params": { "pipetteId": "UUID" @@ -30470,7 +30665,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "38cf23029ecaeaeb6d31573595512cd8", + "key": "144af14f7bd1444fd431f58f92879eb6", "notes": [], "params": { "forceDirect": false, @@ -30502,13 +30697,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13c78c8a42d0491a6c9c8a55797c4c2b", + "key": "568c8ee0d39bea5e7ec74a56b88fa605", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -30535,7 +30730,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60c46aa450caf7fab59161ec068b462a", + "key": "5b402b9e9129b87d32a46ef12c5f2b41", "notes": [], "params": { "correctionVolume": 0.0, @@ -30554,10 +30749,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46becdf2a9e37ee573ac060b63a70999", + "key": "8a0585054d7cb4d732814dd05fae3bf0", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30568,7 +30763,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb9ecfcc04e9755b183138f285de3c1a", + "key": "7087102dae6b7cfc4b517af1b4601099", "notes": [], "params": { "forceDirect": true, @@ -30601,16 +30796,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33d356db651efd8d89960a947fad5661", + "key": "c66ead1a4452ef4148cc8d4deb0da436", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30620,10 +30815,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "35a82f7f876208521224052c6fcf13fb", + "key": "6b01e88a8d94f3d4d5a2208402f00332", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30634,7 +30829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd029c04e964ab33944f4793e0e019c4", + "key": "b09f571770d57b39d4a7378ca5e1f77c", "notes": [], "params": { "forceDirect": false, @@ -30666,17 +30861,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85909352532f795437fb7af6904ea6e8", + "key": "2725c8dbaed9b2f90fc572d2e20769b9", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30686,13 +30881,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3bef2ee1437c7b3f4447c7ec19f6bb8f", + "key": "c79f932696dfdcdf415c008f272706a7", "notes": [], "params": { "forceDirect": true, "labwareId": "UUID", "pipetteId": "UUID", - "speed": 100.0, + "speed": 50.0, "wellLocation": { "offset": { "x": 0.0, @@ -30719,13 +30914,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3325924dbd79052d47660861ab0b966a", + "key": "6955fdeaeafbd40f9304982358902337", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 37.5 }, "result": { @@ -30739,7 +30934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7272513704e9a2c48e42c53bc53eaac2", + "key": "efd73dc0229bb4b421d6c7760f67dd56", "notes": [], "params": { "forceDirect": true, @@ -30767,12 +30962,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80b59190cb915023971e03464efe996a", + "notes": [], + "params": { + "flowRate": 318.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "270f302b9378d0ad7e019c8155ecd023", + "key": "309c6fa55b0d90e5676c0fe56861dcd6", "notes": [], "params": { "pipetteId": "UUID" @@ -30786,16 +30996,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dbf215aec333a2b83c5b9f069904952", + "key": "31e2296c63212b12b9164e1f47823365", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -30805,10 +31015,10 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc86b2b0bfcb7999caa4ff1f8ed82227", + "key": "fab19fa0ecf3ff1846d020148f508aa8", "notes": [], "params": { - "seconds": 0.5 + "seconds": 1.0 }, "result": {}, "startedAt": "TIMESTAMP", @@ -30819,7 +31029,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b8e8c376e6605bb4d13c28a69bb4b2bf", + "key": "ce6200bf9723f68ed2b2f31005b15a5b", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -30848,7 +31058,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b563f007fa3e4540192ca9bc7f6928ea", + "key": "1050368483f25405a2a978919b8b4e8a", "notes": [], "params": { "homeAfter": false, @@ -30863,7 +31073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c585db8f50fd6bd3b01a6dc90567b3ef", + "key": "90b15b9cff9c4f5cf09ad0bd683a706e", "notes": [], "params": { "liquidClassRecord": { @@ -31262,7 +31472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5832dba7c1346bb5e00edff68b4e5e12", + "key": "21d57dfbe64180b6baff49062fe541e2", "notes": [], "params": { "labwareIds": [ @@ -31284,7 +31494,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff16d28a5f56adca5ecb4151ac2f0c62", + "key": "4c9797e68be6ac6144ba688e0bed6a79", "notes": [], "params": { "labwareId": "UUID", @@ -31317,7 +31527,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a24e716789df00f5143d4df986b32a8", + "key": "7c17fd7d6e119114712f6869da6b41d1", "notes": [], "params": { "forceDirect": false, @@ -31349,7 +31559,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97043f3f7293118854630bcc315d4edf", + "key": "298bf0bcebfd7241e970328bcdf449da", "notes": [], "params": { "pipetteId": "UUID", @@ -31365,7 +31575,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "167dea1e15772e65a01a639637ab7f6f", + "key": "939b0ccbe54cc081620af4445a0b5308", "notes": [], "params": { "pipetteId": "UUID" @@ -31379,7 +31589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d42fed1e66de1cf1d28a87df12ce053", + "key": "5d58b112ec52b22084fbd580c8576512", "notes": [], "params": { "forceDirect": false, @@ -31411,7 +31621,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c209b902e196eed2429c478d1f7c7c9c", + "key": "8ffec4d7e143ba4245b862b67157542f", "notes": [], "params": { "forceDirect": true, @@ -31444,7 +31654,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "282e46aa96ce9113679c217336ade081", + "key": "e547a6f6a37bd410653ad093826779d9", "notes": [], "params": { "correctionVolume": -1.1125, @@ -31463,7 +31673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c22b87871a2191f62cb9a2a993bdd05b", + "key": "5236f313a42e2ae1c40c0f21ac7ce292", "notes": [], "params": { "seconds": 0.2 @@ -31477,7 +31687,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57496e56c70bdae8a12035450ebac176", + "key": "805e3bff83c3cfcc5c20d8932b37f6a2", "notes": [], "params": { "forceDirect": true, @@ -31510,7 +31720,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a841bd9021ed00daa8b1212345eb4ef6", + "key": "102f412074255b41bb049ca00183f19d", "notes": [], "params": { "seconds": 0.5 @@ -31524,7 +31734,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb23ab70b12960c4080dc554305e1d84", + "key": "268296d887eabb3980624e516862ab15", "notes": [], "params": { "correctionVolume": -1.1875, @@ -31543,7 +31753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0978a1ddd55d1084a283a2d142db1e3", + "key": "3b37d556af31182ab66171d7f28d450a", "notes": [], "params": { "seconds": 0.2 @@ -31557,7 +31767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55b0e082658d23c89724590392a31315", + "key": "3f949c1fd9cfe12abb5a7dbb2633131c", "notes": [], "params": { "forceDirect": false, @@ -31589,7 +31799,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "de24301bfe3f78a7194e4a93129978db", + "key": "d33d23aa314d1d8f21e8bf7654897b4b", "notes": [], "params": { "correctionVolume": -1.1125, @@ -31609,7 +31819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1c9ebcdb03a3a94aff22e782120caf4", + "key": "d9c1381a2a5046f7d4c41ba7e5a357aa", "notes": [], "params": { "seconds": 2.0 @@ -31623,7 +31833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a353c078f3fe59cb36f5035e04bce64", + "key": "67b692c09c115f02db6e16247d00cbff", "notes": [], "params": { "forceDirect": true, @@ -31656,7 +31866,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "787b06ea6d204fdc44d7de1ff67e9ef8", + "key": "318af03e65448ff1756da7e71b097b2b", "notes": [], "params": { "correctionVolume": 0.0, @@ -31676,7 +31886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4af1fd462512542a6021bb8c1f07b598", + "key": "53bd8623c1ac77344aab5726ac0add23", "notes": [], "params": { "seconds": 2.0 @@ -31690,7 +31900,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5806f0bce9abee867ceb79d9cad51df", + "key": "f864d496c4f41782dbfaf08d87c130c8", "notes": [], "params": { "forceDirect": true, @@ -31723,7 +31933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1fe77afe41641aa65fc26506b9108a3", + "key": "fbc0a72cf3578c4090b34b4dd9cf600c", "notes": [], "params": { "seconds": 0.5 @@ -31737,7 +31947,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27cabb796a776ed7d957836cfe332b2f", + "key": "23024c557dd799c5b39de626e4380d15", "notes": [], "params": { "correctionVolume": -0.75, @@ -31756,7 +31966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5298e6badd933ebfa27ecb8c8a62cf4d", + "key": "3d8f2ad5d037aa03f16f9ce60d08dbb0", "notes": [], "params": { "seconds": 0.2 @@ -31770,7 +31980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94d9856c1d582ebcc17f859726cad0e9", + "key": "a6c91432fbbaa000489c279f0f1be7a7", "notes": [], "params": { "forceDirect": false, @@ -31802,7 +32012,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0987ffd836dc0e2fedd4c34ddaa859c6", + "key": "298c25ae644ab61fd7b5983188fdc3c9", "notes": [], "params": { "correctionVolume": 0.0, @@ -31822,7 +32032,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28dafeac643afd04a3d859e5ac1bc12c", + "key": "76c50366f1744a9adf31f64de7ffedb8", "notes": [], "params": { "seconds": 2.0 @@ -31836,7 +32046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ed06c477885c09df11aa4b2f6265884", + "key": "9b75be9f2d9e03ca1acebce8648ae2aa", "notes": [], "params": { "pipetteId": "UUID", @@ -31852,7 +32062,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70cdc13e6dcfd0216658f29edd2178a8", + "key": "bf7be79fe6b2d63de343f07849efdd77", "notes": [], "params": { "pipetteId": "UUID" @@ -31866,7 +32076,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e04eb83741c1ea7ed730c3ec396e74ef", + "key": "88e1f9c888e3e8a41e862c5d67488037", "notes": [], "params": { "forceDirect": false, @@ -31898,7 +32108,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7b8f7db193ed64656c1aaefcccf8185", + "key": "c72d5db646a393a9e83ebbe1388f4351", "notes": [], "params": { "forceDirect": true, @@ -31931,7 +32141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d6a206613dd8042d67888475b490ea4", + "key": "229d0616be66099d460d7bfb9ef8f02e", "notes": [], "params": { "correctionVolume": -1.1125, @@ -31950,7 +32160,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b96930ae1960e6ed3ad3f7ccaeb111c5", + "key": "030e53d42ece9aaa070a219a83d94bd2", "notes": [], "params": { "seconds": 0.2 @@ -31964,7 +32174,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "191dc754a289d7476336cf5be82ab3d1", + "key": "0400c21ed6f781a35ee4f0884135e64f", "notes": [], "params": { "forceDirect": true, @@ -31997,7 +32207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10ddab354852204a1f0e4d803ca7f87c", + "key": "378c7669740d846f37d90fda248ee2f3", "notes": [], "params": { "seconds": 0.5 @@ -32011,7 +32221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5e1c5374098af72ee1f31277f4b2dde", + "key": "23efe58cc85bd04fd402ce41fb4ce5dd", "notes": [], "params": { "correctionVolume": -1.1875, @@ -32030,7 +32240,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "044415d4d331ac2827b253fa31f85d7e", + "key": "61b18d52b981e0a1e8e6be1ef86d2cb9", "notes": [], "params": { "seconds": 0.2 @@ -32044,7 +32254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9017db3a9285e406a1813a51f72c982f", + "key": "3d2964c2b6eea449ed74d2492994f015", "notes": [], "params": { "forceDirect": false, @@ -32076,7 +32286,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b9ea667398960351f718ff076d9d213", + "key": "efd11f21f98ae218b2d0a92b8f09a229", "notes": [], "params": { "correctionVolume": -1.1125, @@ -32096,7 +32306,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bebb579572a33ddea269915c899fc169", + "key": "d53cec0da8d1edfd3cd4ec3b7c5ebfce", "notes": [], "params": { "seconds": 2.0 @@ -32110,7 +32320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80b2394bdfcdced247382df1e5b0a900", + "key": "716ddafa845f9bd39e11f01bf25db2a2", "notes": [], "params": { "forceDirect": true, @@ -32143,7 +32353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9f5a9d481c9d01ce1d85b35e64bb203", + "key": "e3e78dd3835ef919e4d3b365c0bed749", "notes": [], "params": { "correctionVolume": 0.0, @@ -32163,7 +32373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "06ce0e517bff267ecb333c8bfa6ef38b", + "key": "2de3cf83b34f40ec25a44a8c9ab1e778", "notes": [], "params": { "seconds": 2.0 @@ -32177,7 +32387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29be12be64538b2dab0d3ed94469ab1b", + "key": "8f9556b2c77065c6f68ca1501e9fd63b", "notes": [], "params": { "forceDirect": true, @@ -32210,7 +32420,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d23d6146050bb3ddceac234e2b7157e4", + "key": "73fe28e0959ec6be546451e1072de022", "notes": [], "params": { "seconds": 0.5 @@ -32224,7 +32434,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59f7dd17bc59d8fbed3fc6503b6e92d8", + "key": "c5f901cc3b1dcd229338440f305f1398", "notes": [], "params": { "correctionVolume": -0.75, @@ -32243,7 +32453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc3502776b318fd15d42ccd477b6a3b9", + "key": "d7a2c7d65f1830750123f56e97b739d6", "notes": [], "params": { "seconds": 0.2 @@ -32257,7 +32467,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01296a49d6e3ae1c4ccb9031f8817644", + "key": "ce8625668631d6f439712a0d912329e9", "notes": [], "params": { "forceDirect": false, @@ -32289,7 +32499,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3f5d9d4fded2ebc8ec038b6bafd3121", + "key": "4058f7debd26ff0343a152a0755d6716", "notes": [], "params": { "correctionVolume": 0.0, @@ -32309,7 +32519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19cb068b96309b0a4d68905ee0b7cf01", + "key": "953333a2ad0ccd8bd56962785398bba1", "notes": [], "params": { "seconds": 2.0 @@ -32323,7 +32533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bd0d07b326dfade34b351130d0f4158", + "key": "ff88a774a65aab2b5ec6f6aa83b1a5ab", "notes": [], "params": { "pipetteId": "UUID", @@ -32339,7 +32549,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb795e6df7f00f63b46090fb4cace5d2", + "key": "d2ce4875b8d9cdd0c29e0bb35c89657e", "notes": [], "params": { "pipetteId": "UUID" @@ -32353,7 +32563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d0c9dae7a00046968b45a1e623450f8", + "key": "809188e608c30cdd4e8e5ca0e30dc555", "notes": [], "params": { "forceDirect": false, @@ -32385,7 +32595,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b804416dc93d4a7df3fd74e56baf1c24", + "key": "ca075c69eb2eafab4b860db8207ce37a", "notes": [], "params": { "forceDirect": true, @@ -32418,7 +32628,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2165f3bba5e7d439cca8ad726e3f640e", + "key": "912f8cb869e1d6741cd90612da2771da", "notes": [], "params": { "correctionVolume": -1.1125, @@ -32437,7 +32647,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7802cf1981bf4e969b84a61f845db86", + "key": "23daa8f94a836f530b4c6becc88efc9c", "notes": [], "params": { "seconds": 0.2 @@ -32451,7 +32661,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e715fc96763be06367331cde00105559", + "key": "6f7fc6fdb51a87046a07adc087a038bc", "notes": [], "params": { "forceDirect": true, @@ -32484,7 +32694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "572eff89e0cba64a81760272acade23c", + "key": "df3c30bee192971790abf42a38f82233", "notes": [], "params": { "seconds": 0.5 @@ -32498,7 +32708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac85e03e71ae4e78d65e971a7ef35147", + "key": "cf5c940127ba2f8b223bda10ef2511e4", "notes": [], "params": { "correctionVolume": -1.1875, @@ -32517,7 +32727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa3a96eefc4cccea1949e56ed622a5c6", + "key": "16259f559bcc2da6e459a5ba89d9559f", "notes": [], "params": { "seconds": 0.2 @@ -32531,7 +32741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e62c61f0ab4ec6066076638c3cb1265e", + "key": "4bf0bb0c23fa7af42a9f4ed9d49f6fce", "notes": [], "params": { "forceDirect": false, @@ -32563,7 +32773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec6b059bf7a01e1afe9587edf2217d80", + "key": "15255aece956cd946a68179b5cc0cb9d", "notes": [], "params": { "correctionVolume": -1.1125, @@ -32583,7 +32793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4a77b505c171405299453efb760da24", + "key": "95c5409b84f01c7b74af071b17f161ab", "notes": [], "params": { "seconds": 2.0 @@ -32597,7 +32807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df28f2386693f43793b20787dec17888", + "key": "23c3d14e4b631e241f9a997ede6cd19a", "notes": [], "params": { "forceDirect": true, @@ -32630,7 +32840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc805663b89f30f2e607dba5336dbbe0", + "key": "a3aab18f77bdefbfc701ec4e32ee26a6", "notes": [], "params": { "correctionVolume": 0.0, @@ -32650,7 +32860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "038ad572299c84182a3d11863798bd95", + "key": "cf3b040535b8a94549b73218e2dac812", "notes": [], "params": { "seconds": 2.0 @@ -32664,7 +32874,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef8ccf02545dda77062685e8c7cab447", + "key": "ccb1bf75d342a529c128cc3bffb8b9fb", "notes": [], "params": { "forceDirect": true, @@ -32697,7 +32907,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea0262b9bc0e0474482521ea075078cb", + "key": "ff1b7bc7708af02c9479efd3893dfda4", "notes": [], "params": { "seconds": 0.5 @@ -32711,7 +32921,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a38445728775e680914cf87ef0468916", + "key": "40fdeb47f3878f206337df4921f8cee6", "notes": [], "params": { "correctionVolume": -0.75, @@ -32730,7 +32940,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3055d7f05a23aa4504433092c143548f", + "key": "7797bd5f72e0a91fe66265947239462f", "notes": [], "params": { "seconds": 0.2 @@ -32744,7 +32954,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ad36296f0fba821c7cfd6eac73a3545", + "key": "3472696ca50c4f7c415cfbdbc3d64470", "notes": [], "params": { "forceDirect": false, @@ -32776,7 +32986,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6625f09ef54a42c687cd1066ffabd7fe", + "key": "66635d911476fd017be2d10795319d1b", "notes": [], "params": { "correctionVolume": 0.0, @@ -32796,7 +33006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a2ecd68de0e9d8cea537d9d9eb00735", + "key": "8d0437e521473982949f25e41b288b61", "notes": [], "params": { "seconds": 2.0 @@ -32810,7 +33020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6edee336b34617924cd5fcf15da1051b", + "key": "403a9eb7d2cce0770bd17ea437b4385e", "notes": [], "params": { "pipetteId": "UUID", @@ -32826,7 +33036,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "122b26b6d20b611f6d74444cd1781ca4", + "key": "3f39c37d99de9bc21691990c2785f7fb", "notes": [], "params": { "pipetteId": "UUID" @@ -32840,7 +33050,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d29ac94cc7ec54a987056c1c289a611", + "key": "cf7ef3467b826a9a36da281a59902bfe", "notes": [], "params": { "forceDirect": false, @@ -32872,7 +33082,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44cc7f4c56754483f6bb9d05f06142e0", + "key": "95af14c93ead6149619f7c3b501f91af", "notes": [], "params": { "forceDirect": true, @@ -32905,7 +33115,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab5d4686ba3cdd52a6650b6ab45eb36a", + "key": "6cce30267ae12eb659dc5b9901a392e5", "notes": [], "params": { "correctionVolume": -1.1125, @@ -32924,7 +33134,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ee6f8344c1edc896989b09252714883", + "key": "6b2fc37ab759932189a9a09d8abc03ea", "notes": [], "params": { "seconds": 0.2 @@ -32938,7 +33148,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5c5079f02712d7656131c4cfc758d20", + "key": "99bdc87a2180f1f61e5403d71a564d7d", "notes": [], "params": { "forceDirect": true, @@ -32971,7 +33181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24993d21c2514c40d255fda85593848c", + "key": "8afed95f8cad3e122eba61127071f292", "notes": [], "params": { "seconds": 0.5 @@ -32985,7 +33195,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e529bb5f24e5e825eb3b43bd901b6800", + "key": "304fe99f8d6adf4d58fa8f4ddb4b2423", "notes": [], "params": { "correctionVolume": -1.1875, @@ -33004,7 +33214,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ffcfb8f26264eca9632b36f643a0568", + "key": "1ad53c7c30930e2e6aca7ba3efd7fd3c", "notes": [], "params": { "seconds": 0.2 @@ -33018,7 +33228,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26c7ccb84f5b673a584f757fa20ab2aa", + "key": "a288c9ea292496c370a3c9735902005a", "notes": [], "params": { "forceDirect": false, @@ -33050,7 +33260,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f49d3c26a2a1d948182e1c17fbcb07f8", + "key": "96a30db7df0a8c5e52c1894e36e2a82a", "notes": [], "params": { "correctionVolume": -1.1125, @@ -33070,7 +33280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62b60683cee18e6b0624e67398f39720", + "key": "d44a6f922b8a0ac8456383f45a8c5682", "notes": [], "params": { "seconds": 2.0 @@ -33084,7 +33294,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b4a70b59b27f08796e8cf764fda8779", + "key": "c5258924403b319a62d2cd5ae9be57f4", "notes": [], "params": { "forceDirect": true, @@ -33117,7 +33327,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "746e4e322c58c1900ae2f823412f724f", + "key": "67c0937c48e0c02f2960e9163e9211e8", "notes": [], "params": { "correctionVolume": 0.0, @@ -33137,7 +33347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da3dd091a19b2492d1842286b983bc6b", + "key": "53bcff6ba5d7841d411adacce50b03c5", "notes": [], "params": { "seconds": 2.0 @@ -33151,7 +33361,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f20f6ab8630775824b460f14d6715fb2", + "key": "9f865d38023236862b024bbbe719e047", "notes": [], "params": { "forceDirect": true, @@ -33184,7 +33394,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2032cca5807469459c96bb697dc2cf9e", + "key": "eabf7e7d571e2af7654665b1bacbac8a", "notes": [], "params": { "seconds": 0.5 @@ -33198,7 +33408,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6172d4733882424d6df740356e521ae0", + "key": "6785b9c28cff0edecb514077a131ce07", "notes": [], "params": { "correctionVolume": -0.75, @@ -33217,7 +33427,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2cbc54146652645b9d8bde686529dfbd", + "key": "2139f3e33a873271c9452e54a36ef156", "notes": [], "params": { "seconds": 0.2 @@ -33231,7 +33441,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4086f4acb87dd61b9ce67484d7d891ff", + "key": "a949c57fe6b1fc4bb5821dd557788064", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -33260,7 +33470,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e6b5ac056b742cc235ac7a4fd30b741", + "key": "a92854d70eb6b06cf834facfa2c72fe7", "notes": [], "params": { "homeAfter": false, @@ -33275,7 +33485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a7a992426e6d594faded0a1c4b7c52f", + "key": "2bc1382d36f129106a9ece21c9ae190b", "notes": [], "params": { "liquidClassRecord": { @@ -33646,7 +33856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2412311c16a08ebe37805b7954acacec", + "key": "3d929728f1ecb638e4f8bcd7caa507c9", "notes": [], "params": { "labwareIds": [ @@ -33668,7 +33878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c71a869ef98e03a3b9d53248cee658dd", + "key": "a2610f4ed33fa48dfea0e2e54a5d31b3", "notes": [], "params": { "labwareId": "UUID", @@ -33701,7 +33911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3444b8a01c8f748e4ff26d8f5fcf805a", + "key": "1e6c8889e50d14f546b40b1e4a4e0dde", "notes": [], "params": { "forceDirect": false, @@ -33733,7 +33943,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2397fdcb031ded2bcc55834ac354ec3d", + "key": "b13881590401c3f51707c4fb0058016e", "notes": [], "params": { "pipetteId": "UUID", @@ -33749,7 +33959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41a0a14cdb0498e8e601fbb0abbfdc19", + "key": "dec493778ac8e612cde40b8679889d3b", "notes": [], "params": { "pipetteId": "UUID" @@ -33763,7 +33973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13768ac61ae314c8ba5efa970ed80d51", + "key": "8a29dbc2672f5cc1d997d6038b89e730", "notes": [], "params": { "forceDirect": false, @@ -33795,7 +34005,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7926894a3a10af4a5926f07c4addbe4c", + "key": "552d0647e3a294724550475340fda5d5", "notes": [], "params": { "forceDirect": true, @@ -33828,7 +34038,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6fa87b2eddbc66ab337ec9383b4a4e2", + "key": "8237606f0046fe6e26a76cf5172a85e7", "notes": [], "params": { "correctionVolume": 0.16875, @@ -33847,7 +34057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85f6c0cb2ce28a0b93c642e77d9767e6", + "key": "d959a6460380b5546c59131a59c9a9ab", "notes": [], "params": { "seconds": 2.0 @@ -33861,7 +34071,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "503bbdce86b3eb0497873512bd1deae9", + "key": "b69eb1bc28bf19dc9bb8bec7f39c9305", "notes": [], "params": { "forceDirect": true, @@ -33894,7 +34104,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5c967db33c6ca6fe061f9e7be5d314c", + "key": "6974028483c4e2348642fe99ed5d457b", "notes": [], "params": { "forceDirect": false, @@ -33926,7 +34136,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "35bc120744842033610c1ad5c109eb23", + "key": "929c9cd981523f2c5682761e720f6291", "notes": [], "params": { "forceDirect": true, @@ -33959,7 +34169,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5ab40dedb433fc028b2059f3516a3bf", + "key": "a42d23c15dabb6b86728421b7d2bccaa", "notes": [], "params": { "correctionVolume": 0.0, @@ -33979,7 +34189,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24b446dc2274836dbaa065cd3fc0ab41", + "key": "9fb4c40bdda547181cab267686f6115d", "notes": [], "params": { "seconds": 1.0 @@ -33993,7 +34203,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13d197fc3134bbcfb948ec02d6075e57", + "key": "0bb51ee52616749be1c8062bff15568a", "notes": [], "params": { "forceDirect": true, @@ -34026,7 +34236,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4d8193c192e8ee4241620268f529f63", + "key": "9cfdf5ee7b4f570edd5326e86c7a15f6", "notes": [], "params": { "pipetteId": "UUID" @@ -34040,7 +34250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ebb65b263246b5935d9271c9be5e1fee", + "key": "a2b09930fdbe018342e089a5d88b13bc", "notes": [], "params": { "forceDirect": false, @@ -34072,7 +34282,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b10cdec7b54bf7b6c0d478a4b12e5215", + "key": "3fe1c8e8c219f024d1ccb433c3a54869", "notes": [], "params": { "pipetteId": "UUID", @@ -34088,7 +34298,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "983163fd7164e5912eddf228e25f1dc4", + "key": "4dc2b2facc36a51c09ff423476435a99", "notes": [], "params": { "pipetteId": "UUID" @@ -34102,7 +34312,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15a3916de327b2eeab3040226e2b6b5f", + "key": "74031a64bf293676cab25b998194e30b", "notes": [], "params": { "forceDirect": false, @@ -34134,7 +34344,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a64ed5fd170a6f947d1ec4b713d40fb5", + "key": "fd05a9e7847ea2d824f1dc42c23aa120", "notes": [], "params": { "forceDirect": true, @@ -34167,7 +34377,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d9c373cfdd3bb7b6a3b9a4e48a9c423", + "key": "1104abba85925283473a3c0458c319d4", "notes": [], "params": { "correctionVolume": 0.16875, @@ -34186,7 +34396,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2fe8f3797b09e633fa16feb7815b8439", + "key": "fc819e336685b6721774ef48c8b46e71", "notes": [], "params": { "seconds": 2.0 @@ -34200,7 +34410,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "971dcbd19cdd1fd85e2be9eadb0763fe", + "key": "4e98cecd0462947ca65330e05d494e43", "notes": [], "params": { "forceDirect": true, @@ -34233,7 +34443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b4edfc31865dcfb6ef8cfd93e4ff076", + "key": "7a4e232d499d7ac59edf7b80cd61c30c", "notes": [], "params": { "forceDirect": false, @@ -34265,7 +34475,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "775587052015125910c9700dd66f4e3c", + "key": "b291b7deca05b8f3168b2ac954dc5703", "notes": [], "params": { "forceDirect": true, @@ -34298,7 +34508,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c01f5e13bc637f5aa9ec7bd31dba57f", + "key": "78e19e0e9041f5aa038232192a00c2cc", "notes": [], "params": { "correctionVolume": 0.0, @@ -34318,7 +34528,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e563ca319fa320e66c0e2d92e8f8330e", + "key": "ebc9ab0eed18c09de7325d655ecbfd80", "notes": [], "params": { "seconds": 1.0 @@ -34332,7 +34542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1aadeaf8f53dd554edb10f329662ba70", + "key": "ef5f2ffd506f43680922eec3d9f9bb4f", "notes": [], "params": { "forceDirect": true, @@ -34365,7 +34575,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "167347481b5a822f5affe6126bd41e7f", + "key": "b6bbcfe560405e8c280ac8b8a1f228ce", "notes": [], "params": { "pipetteId": "UUID" @@ -34379,7 +34589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3186683e7356a6c2b73af6c113978ebd", + "key": "76041030bb79aadd08d7851434a3c484", "notes": [], "params": { "forceDirect": false, @@ -34411,7 +34621,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a5abd9c9689b0adb5158b0c4a3f4e6bb", + "key": "e40d2f1b12484bb97235868adfe93aca", "notes": [], "params": { "pipetteId": "UUID", @@ -34427,7 +34637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b8e7efad6f834d6975c657ed6295a80", + "key": "55c36803fe5223bcbd1c45f41a88d959", "notes": [], "params": { "pipetteId": "UUID" @@ -34441,7 +34651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be3e52e521c277b7c349c9717a681f9a", + "key": "72fe1242e49e0c97a4a164a81056d7f3", "notes": [], "params": { "forceDirect": false, @@ -34473,7 +34683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a6cd7ef8e410ad76ffb729c087ae5fd", + "key": "7550fb4db2c54a529e143211bf179f3e", "notes": [], "params": { "forceDirect": true, @@ -34506,7 +34716,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "324346d623503f2d46ad05cec0ac3b60", + "key": "620da663b093417b63363ac26b0bd4bc", "notes": [], "params": { "correctionVolume": 0.16875, @@ -34525,7 +34735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e193bb7671b69888b9d3e1eb15b2162", + "key": "08adcb96ee413833dbde48dae249f778", "notes": [], "params": { "seconds": 2.0 @@ -34539,7 +34749,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cad63e048156903204568454423438c1", + "key": "ddeb60df203a0760ae01bf5df01e40fb", "notes": [], "params": { "forceDirect": true, @@ -34572,7 +34782,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89d4c29fd57943c25cf6096db261bf74", + "key": "0a9d75912dc0c690e2cdebb39db935d1", "notes": [], "params": { "forceDirect": false, @@ -34604,7 +34814,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ac6ef4413626d30047cbdac6e23bd4c", + "key": "ca3de41cf485bc6b72414107266223c8", "notes": [], "params": { "forceDirect": true, @@ -34637,7 +34847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e07b656168689985cb07ad975f235e5", + "key": "467bf7206c5eb0ca3e0d327b2d334906", "notes": [], "params": { "correctionVolume": 0.0, @@ -34657,7 +34867,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6bcb94692fe781bcd5b4720137c288ec", + "key": "430cb0b564764c0d613e571b39aa86cf", "notes": [], "params": { "seconds": 1.0 @@ -34671,7 +34881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a99e8bebb14fa19ae99090493e16cdd", + "key": "3ab3fb25ac6c0dcf21c7283444f392e2", "notes": [], "params": { "forceDirect": true, @@ -34704,7 +34914,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b7c04e6226ff6ffc6d70033db5c5682", + "key": "c57ad3be964b51eb30194e0f4e7f6e5a", "notes": [], "params": { "pipetteId": "UUID" @@ -34718,7 +34928,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d75d4de0ed1abe156dac0cf5c408a455", + "key": "594fe24ccc9a8d26d00fd66b9f5b5551", "notes": [], "params": { "forceDirect": false, @@ -34750,7 +34960,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb700326c2f63a71a37ae8fd8c93165e", + "key": "ace26d2544f27a8b69f8a20c9a479e06", "notes": [], "params": { "pipetteId": "UUID", @@ -34766,7 +34976,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91e4d61821dde3478c39e23a3cbb7e71", + "key": "ab7095c70cd2e4fcbd9e40a5bee012f8", "notes": [], "params": { "pipetteId": "UUID" @@ -34780,7 +34990,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8421f71f8f06178e93adf943d8bd63b4", + "key": "cf085454d780843b158efb5659c07cbd", "notes": [], "params": { "forceDirect": false, @@ -34812,7 +35022,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cad883eb60396fbd6e610c0d07374abc", + "key": "dd2e7582f6e074e208ff7afdbe3b9c37", "notes": [], "params": { "forceDirect": true, @@ -34845,7 +35055,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8aed0eff3b5eb95a131f205e48add66e", + "key": "381ec827fafe9389d2d44636c0a216ad", "notes": [], "params": { "correctionVolume": 0.16875, @@ -34864,7 +35074,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "baf27523ed76ebfc7e3ba93766f75061", + "key": "3bb140a13953f007c79400feec67a1d7", "notes": [], "params": { "seconds": 2.0 @@ -34878,7 +35088,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34f1d557b73a38f29059aaf68938dc77", + "key": "3d2dc1840b3ab15ed03879b108677ad4", "notes": [], "params": { "forceDirect": true, @@ -34911,7 +35121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d94b664e03ee2ca6023e3a317db896e3", + "key": "e9d9ec1b99b1359c51518760cc7a862e", "notes": [], "params": { "forceDirect": false, @@ -34943,7 +35153,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b818a15212db5564c7b6a0228c59561", + "key": "869ca5d6c318d4b30bbea3e8b6a3d278", "notes": [], "params": { "forceDirect": true, @@ -34976,7 +35186,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbcd558471a0d2cb0b46aa73ea66952a", + "key": "439077191cd894bf1e390791727dd5ee", "notes": [], "params": { "correctionVolume": 0.0, @@ -34996,7 +35206,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4047c9a173715d7321646eaccfc2a57f", + "key": "a7e8c9a05b43ba67110dbb4767cd3b78", "notes": [], "params": { "seconds": 1.0 @@ -35010,7 +35220,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdd50c4c1bee7a61a5a7f38f2ba1c6bb", + "key": "6dd55459d507bb6628051b6cd3edbdd7", "notes": [], "params": { "forceDirect": true, @@ -35043,7 +35253,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f8b99d064b42219f2bae6241aa2241c", + "key": "f632c965a811a58d485d8a078f6ccb9b", "notes": [], "params": { "pipetteId": "UUID" @@ -35057,7 +35267,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd5655f6c987bcc6495e07afa877c5cc", + "key": "d0a0be1d9f144c032bfb6dcfc8510759", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -35086,7 +35296,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abeff03eb2cb15a468f89a4a1d73977e", + "key": "5c993dfc4d38d7b88b6371123bec1e58", "notes": [], "params": { "homeAfter": false, @@ -35101,7 +35311,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3a60d72ce5a0cd99b61816cd774faa7", + "key": "493323e0acff76bb72d77d3dd7d29d03", "notes": [], "params": { "liquidClassRecord": { @@ -35460,7 +35670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c22d85b9ba8e0803b72ca96c3c227637", + "key": "7f553674671c6e1845b5c11dead3e7e5", "notes": [], "params": { "labwareIds": [ @@ -35482,7 +35692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cba87beb9736e92652d72acfd2ab4575", + "key": "8f1d0a40caf8cc56a6a26cec165c3ae4", "notes": [], "params": { "labwareId": "UUID", @@ -35515,7 +35725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e59895631a6738ef48fd1c8639b909d5", + "key": "712998efa1c4bf17186646582f0ec146", "notes": [], "params": { "forceDirect": false, @@ -35547,7 +35757,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "823d565d468c5f24393b990bf9fde2be", + "key": "2c975526658f4d795e96394548b23c67", "notes": [], "params": { "pipetteId": "UUID", @@ -35563,7 +35773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "031d385bf40a05ad54c6d26792e1fee1", + "key": "47fa25f5f36813a1aa0484ca5e02c217", "notes": [], "params": { "pipetteId": "UUID" @@ -35577,7 +35787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d7fa79fd493f02a51c5739c8d823a73", + "key": "503e6fea2b27c1cd866d1d9eb146fc93", "notes": [], "params": { "forceDirect": false, @@ -35609,7 +35819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "071ca585e6adfcd8caaf08f7ccd8a3fd", + "key": "eb3781c51d526f4ae07031e1989f345c", "notes": [], "params": { "forceDirect": true, @@ -35642,7 +35852,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43a774b9c0d3ce8db0b13e102ebc1cf0", + "key": "bba287c43598adc76615187cfccb378e", "notes": [], "params": { "correctionVolume": 0.0, @@ -35661,7 +35871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb8654213ac13373d1c3e99e8ca589f3", + "key": "701ac1a3d8922b7cdc325c8c9a4c513a", "notes": [], "params": { "seconds": 0.2 @@ -35675,7 +35885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c93f43f51dbf8f9a3b5e4e9d2991662a", + "key": "e6fb976b48ffaebc43470bc71e04d073", "notes": [], "params": { "forceDirect": true, @@ -35708,7 +35918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a006cc686c310965bf90474250a1158", + "key": "af9923b12f093516294c2422146c9812", "notes": [], "params": { "correctionVolume": 0.0, @@ -35727,7 +35937,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "316cf23735e04d87d749d85a102c4b39", + "key": "b3fb9763befbaa409dcbbd743cc9fd2e", "notes": [], "params": { "seconds": 0.2 @@ -35741,7 +35951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c8d575a0a6b2aac89d3ccf149004a5e", + "key": "4646204575275626fa98c9ac78e59eb0", "notes": [], "params": { "forceDirect": false, @@ -35773,7 +35983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "68a39b7acbe728f8e98338e1f1f55c03", + "key": "cc9da77f938efc80e8b122f71e90fbea", "notes": [], "params": { "correctionVolume": 0.0, @@ -35793,7 +36003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5b66b86dc84ad00421e8a15e5f9f591", + "key": "c9e37aaa30b5d1ec94adacd0c1f50a4f", "notes": [], "params": { "seconds": 0.2 @@ -35807,7 +36017,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55f85f05cead4d5be1516d6f493267c1", + "key": "5064c312d88fe070b4dbbe5bd00ed3ed", "notes": [], "params": { "forceDirect": true, @@ -35840,7 +36050,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bb6c2e92c7528bf884f44ef7a2cd9fb", + "key": "df0d5d3d32a3d3cdd443c854d59a914d", "notes": [], "params": { "correctionVolume": 0.0, @@ -35860,7 +36070,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9ca04c4da0444ff7be589157d23debbc", + "key": "43d19112da858b899ef246cf8ace4262", "notes": [], "params": { "seconds": 0.2 @@ -35874,7 +36084,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c0b539e7bee9b73d434b1883f94b086", + "key": "8bc1ba68e1d39a547324e07bb8798873", "notes": [], "params": { "forceDirect": true, @@ -35907,7 +36117,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b522c285617481dfc832e516658e2b85", + "key": "f1308a4937de05fad72e66bdbb22133f", "notes": [], "params": { "pipetteId": "UUID" @@ -35921,7 +36131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33b95bcaf20f2549721d851aaa7e5eef", + "key": "d821cebadc5177a80327b5f07f771cbf", "notes": [], "params": { "correctionVolume": 0.0, @@ -35940,7 +36150,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29db9ab399838c855a70f105013b2265", + "key": "d14117af37827d4be98ae2720cbdfda0", "notes": [], "params": { "seconds": 0.2 @@ -35954,7 +36164,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b578ccbe85296c9a7939c2066f9c45cd", + "key": "171c7dcc0b1636f509c8ca3a9022d123", "notes": [], "params": { "forceDirect": false, @@ -35986,7 +36196,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "38f0f7eb64baf7ae92f0c6026b421dfe", + "key": "fa07b6d12648dce1e859ebf934dd6c4a", "notes": [], "params": { "correctionVolume": 0.0, @@ -36006,7 +36216,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9644a9ad19152f0e54f8956ef9dc6196", + "key": "15d3cd1214e11777e71c90e1dccb2eea", "notes": [], "params": { "seconds": 0.2 @@ -36020,7 +36230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83f4b4de3d1a6f2d3008931707dc3519", + "key": "b177ffebdccf957deb2eacc6d25fed12", "notes": [], "params": { "pipetteId": "UUID", @@ -36036,7 +36246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19f2d85c2f16e99ecfd655ca303d90c0", + "key": "8c4d4e18a3656acac3bba7989e293044", "notes": [], "params": { "pipetteId": "UUID" @@ -36050,7 +36260,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0af9519fd5801001760cfaa6c6e63eb9", + "key": "a4d531bb7fffc43b03c4d0912c3dfe18", "notes": [], "params": { "forceDirect": false, @@ -36082,7 +36292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fcf1dc078413ec573f474ddd88b97adc", + "key": "2a67cd4cd2abe8916ce8000ed73966b1", "notes": [], "params": { "forceDirect": true, @@ -36115,7 +36325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e9de35a7cd39072d40f527c7dc57ee2", + "key": "e8f807e003859cd3b5c9e3133680fac4", "notes": [], "params": { "correctionVolume": 0.0, @@ -36134,7 +36344,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1afa4961e7bd7d367b6f37de0d80af2d", + "key": "e6ca1718c5d84ad3dc14eacb3ffa3bf1", "notes": [], "params": { "seconds": 0.2 @@ -36148,7 +36358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a51840c685f761c5a4b032dcbc098d3", + "key": "e59395980a2b083502e49a72464d6744", "notes": [], "params": { "forceDirect": true, @@ -36181,7 +36391,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2e887528edbd543c8992810440c4969", + "key": "504edb8a80f4adad049b763ee3d7b7b6", "notes": [], "params": { "correctionVolume": 0.0, @@ -36200,7 +36410,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f407508c9712c4bb514257c39ba285c7", + "key": "0f18dd6f1f3b5767b8127e79df75f3aa", "notes": [], "params": { "seconds": 0.2 @@ -36214,7 +36424,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "203662ff00ff55245b1c1dc71f54054d", + "key": "1d4109eb748e54fd1ea297622973b216", "notes": [], "params": { "forceDirect": false, @@ -36246,7 +36456,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61552537354984d75fa35e40ed8efcb5", + "key": "e435cea8d45689ef9b61f187fb2fe979", "notes": [], "params": { "correctionVolume": 0.0, @@ -36266,7 +36476,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0960b3948372bd9f3365ebb0406dc85b", + "key": "77c36d215293b7e185b5ffdff29c0198", "notes": [], "params": { "seconds": 0.2 @@ -36280,7 +36490,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5a51624c1b573dedc18d859e4787be8", + "key": "7e5b3fb3db72a860ba91828d22c0ab5f", "notes": [], "params": { "forceDirect": true, @@ -36313,7 +36523,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dad3bedf1f5ebb9e1f925b439c14cadb", + "key": "6293685db9d96ef8c59ec09155d99f50", "notes": [], "params": { "correctionVolume": 0.0, @@ -36333,7 +36543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "569136e3e74bff43ef7a0865b7b7f463", + "key": "47684e2007203d761db61d8a6c44d859", "notes": [], "params": { "seconds": 0.2 @@ -36347,7 +36557,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd5262dc70ebb1cd467684d1c1922c7b", + "key": "a88462b7620f689d58b14c2b2de223e0", "notes": [], "params": { "forceDirect": true, @@ -36380,7 +36590,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea0f5937da012412561673e241316b95", + "key": "4672ab90e53cd6fd22c3922794fa284e", "notes": [], "params": { "pipetteId": "UUID" @@ -36394,7 +36604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b09208fe74c0c9d9889406c3cbb194f", + "key": "16441c5d48db4058057d56858bb8f4fe", "notes": [], "params": { "correctionVolume": 0.0, @@ -36413,7 +36623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16525d89e701ce92a45b548fb1b7aa99", + "key": "ed9f7e913141f145e6bdec78dd755e08", "notes": [], "params": { "seconds": 0.2 @@ -36427,7 +36637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6db29e6b19acfb1c46f1a757f51b5b5e", + "key": "72a714eae925ef3b6ed615fc90323258", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -36456,7 +36666,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb38bb5d5bddf573b32613f0ef65022b", + "key": "6d512ce8e1d35719c59fd0858d353140", "notes": [], "params": { "homeAfter": false, @@ -36471,7 +36681,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "473691ec29284f61cf6bb245d88d60b8", + "key": "ee128b59841e3884480af916a15ecd61", "notes": [], "params": { "liquidClassRecord": { @@ -36858,7 +37068,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "053364627c200bc930685308284c58c4", + "key": "75b73d912e183cecee5bab94e9ba8a89", "notes": [], "params": { "labwareIds": [ @@ -36880,7 +37090,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "801543f551ef4566350d39be360a31f9", + "key": "76a393cc472c443f33398f9423794ac1", "notes": [], "params": { "labwareId": "UUID", @@ -36913,7 +37123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e1de529ae70453ac135d056b13594a1", + "key": "b3c8a60f5fb631e61011ea33275a6af7", "notes": [], "params": { "forceDirect": false, @@ -36945,7 +37155,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea6b1fe93f50a39197a4b8b5e65264b2", + "key": "e76e10c1b1f35d63d6d6a48a126410fb", "notes": [], "params": { "pipetteId": "UUID", @@ -36961,7 +37171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c242dade3b211a99f31a949cc7c1a0de", + "key": "8c44afb7dd9902aa70b16104675a4560", "notes": [], "params": { "pipetteId": "UUID" @@ -36975,7 +37185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c4a89b6710853cfd40eeed88b3c46f2", + "key": "a0a7ee396f517273751a8b14be98cd94", "notes": [], "params": { "forceDirect": false, @@ -37007,7 +37217,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b59b0e64c0df35efb17efaba226b99c", + "key": "df56d477495cdbc72773c7361621ae30", "notes": [], "params": { "forceDirect": true, @@ -37040,7 +37250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "adb5252da413dd255b6fca6652cfcdc1", + "key": "ef060d16c93c756d6b6b4bfe99eeadc4", "notes": [], "params": { "correctionVolume": -0.3725, @@ -37059,7 +37269,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed14f3cebc3b28ebfb687da8ec5a52dc", + "key": "5717351d4f0043bddb7080a48d52f48a", "notes": [], "params": { "seconds": 0.2 @@ -37073,7 +37283,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e16eb03481d84fa792e116d7e4b9a0c0", + "key": "7ae2c32ea0175705f55910d1722d5a04", "notes": [], "params": { "forceDirect": true, @@ -37106,7 +37316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14523cabe3c06c24c58283f63d5e64d9", + "key": "0443e8cbea9c8578c9c087b2ef077e76", "notes": [], "params": { "seconds": 0.5 @@ -37120,7 +37330,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "499d22097db9e874dbc88e8254577343", + "key": "b1f2d791ec50a76c2e3bc928d9945abc", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -37139,7 +37349,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf6fa5025106a7dce7413e5fa5624c82", + "key": "2dfa24e8e13ce20196fd423eb1959f18", "notes": [], "params": { "seconds": 0.2 @@ -37153,7 +37363,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbdb46ae9c70d19c8cc5c8da3aa8c496", + "key": "e5cd82d2f66c7bb85c4b3abc0200658c", "notes": [], "params": { "forceDirect": false, @@ -37185,7 +37395,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4cecb4f709d343edd3c339b2e9876824", + "key": "9a3e2efd1d69cf67539b431fe624ddad", "notes": [], "params": { "correctionVolume": -0.3725, @@ -37205,7 +37415,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4bfc510d9bbed9d45259e86e9da15807", + "key": "e01a7f930dea58eb3af63f860e49583f", "notes": [], "params": { "seconds": 0.2 @@ -37219,7 +37429,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "522a12b41f171526e29df2093cb76c4d", + "key": "2f77c8f2b73b5f84c33235dafed6b7e3", "notes": [], "params": { "forceDirect": true, @@ -37252,7 +37462,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5fd733c17ccbb8fa238971f4f770c6b5", + "key": "b5e6d0f15cb944e4c7e9def59e32122a", "notes": [], "params": { "correctionVolume": 0.0, @@ -37272,7 +37482,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f708e5355878b0937b2bfcef5dd11f93", + "key": "0126661a81c726793bdc3cb94d5f707f", "notes": [], "params": { "seconds": 0.2 @@ -37286,7 +37496,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19bf793525423c64a252b6557a22f099", + "key": "0aa80dea60205d0f52d716baa46e4d86", "notes": [], "params": { "forceDirect": true, @@ -37319,7 +37529,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f3cff3581356c8eeb844e856d6685eaf", + "key": "f88568d5d44f0b1395604da4fc4df786", "notes": [], "params": { "seconds": 0.5 @@ -37333,7 +37543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af1b2e014aba09638c47b1ecacc22b6b", + "key": "1f39dc1a6a5104d867c4387be2e3f119", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -37352,7 +37562,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb24f85aecdd0c288eef3188e7500462", + "key": "66d95ef29a6787ff7354df14192b55a0", "notes": [], "params": { "seconds": 0.2 @@ -37366,7 +37576,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b61f1058382ed1dd9eb799accb90e21b", + "key": "076e474a7308e1eac45477266e6dcdd4", "notes": [], "params": { "forceDirect": false, @@ -37398,7 +37608,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1311c617bbb1102ae2fc00396fda424a", + "key": "9de484df1ae5fa3623cca026386712a1", "notes": [], "params": { "correctionVolume": 0.0, @@ -37418,7 +37628,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e247b379f2dc04f2342a8072da98c79", + "key": "0ac4ae7728704b3beb4f9ecf6849cffe", "notes": [], "params": { "seconds": 0.2 @@ -37432,7 +37642,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf84d6e350c3bf7dc638317706369769", + "key": "a4b96c55d4f7ceb3197afb96de0a1c5b", "notes": [], "params": { "pipetteId": "UUID", @@ -37448,7 +37658,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "808291b6d34001468dbf4377e9f8e4da", + "key": "dc94027c8b1112ba07d731b20aa13ab6", "notes": [], "params": { "pipetteId": "UUID" @@ -37462,7 +37672,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b1dbcace94b1942e32c83e38170a1c7", + "key": "a7e056dd3a6e329e81ecdfb673f8a3cc", "notes": [], "params": { "forceDirect": false, @@ -37494,7 +37704,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1cbc480281c1d2051abf304a6d0d38d", + "key": "ee1437e8896dd6bb43ba7f1ff4c598a6", "notes": [], "params": { "forceDirect": true, @@ -37527,7 +37737,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "38752988545eac8966a641d8204b2d28", + "key": "020bae20644ae338074bca295c97677f", "notes": [], "params": { "correctionVolume": -0.3725, @@ -37546,7 +37756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2a3c884b4f4e5390cbb4312975f4555", + "key": "827f552d56959762347f46bce29c2c93", "notes": [], "params": { "seconds": 0.2 @@ -37560,7 +37770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d8c380656f7902fdebfe9b778978d91", + "key": "87e1104c0bde1991509a22b1b9b565d9", "notes": [], "params": { "forceDirect": true, @@ -37593,7 +37803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "989aa86059c19fdda445cf6c8400018d", + "key": "e46788d7e86d330829ee98e636df430f", "notes": [], "params": { "seconds": 0.5 @@ -37607,7 +37817,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4ba2a2415155511b03668ae12bb7c77", + "key": "de1cdaa822293080d14008fec17798f4", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -37626,7 +37836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b17b7b4627dd37ecfb9845218e7829fe", + "key": "da2db95badbd074005408f85284abbd0", "notes": [], "params": { "seconds": 0.2 @@ -37640,7 +37850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4025ccb0cd920fbe2fc20dd2f23f4f3", + "key": "a6f58895ff84145c2126428e12e52c6c", "notes": [], "params": { "forceDirect": false, @@ -37672,7 +37882,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "475b89239ea5df84d9f15c7bc86bdcbd", + "key": "e63ffc50a715f72096ef3427d7735912", "notes": [], "params": { "correctionVolume": -0.3725, @@ -37692,7 +37902,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93c7d8591baec71c9229e05716d291d1", + "key": "5baeb010df303fd6b28ce2e72193d085", "notes": [], "params": { "seconds": 0.2 @@ -37706,7 +37916,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dba7a766ee9441ea243855e3144293d7", + "key": "94830d1dff7c1ac6dd2e1d5cfb0590d3", "notes": [], "params": { "forceDirect": true, @@ -37739,7 +37949,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "679d3336902b3c07e9e4a475a051c141", + "key": "6e83e2b3672c8eaf0217b7627e58ccdc", "notes": [], "params": { "correctionVolume": 0.0, @@ -37759,7 +37969,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "997c8ff79bcf0c354d985255c7e7a6b9", + "key": "7af0080ac8f03208985bdf2e16cb6977", "notes": [], "params": { "seconds": 0.2 @@ -37773,7 +37983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7dd475db041aaf6872677d98de28e881", + "key": "458e09acfcbc834d27f4ef07ae44e5d4", "notes": [], "params": { "forceDirect": true, @@ -37806,7 +38016,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "efeaef3cc58fe38670cb58b17275d71f", + "key": "3c09bd16dc332ef23f0ee1845fc4a676", "notes": [], "params": { "seconds": 0.5 @@ -37820,7 +38030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78d749f857c08caf3a92bd28ba61f8ac", + "key": "1aa87c4a8e707f27c97c57d1a7cf0067", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -37839,7 +38049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73817034927144b98da30a4cab48f56f", + "key": "8eeae5e1aa684092898748d8758dd48c", "notes": [], "params": { "seconds": 0.2 @@ -37853,7 +38063,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "581ee3f0d0e6a122952b62a1809efb8f", + "key": "6215821f0a5d50cb4fd4f8807bb77ea3", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -37882,7 +38092,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "736008947c6cc4d2bba60a7506236bd3", + "key": "34fa300e639a34f726b47c9ce7e75f3b", "notes": [], "params": { "homeAfter": false, @@ -37897,7 +38107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2cd7bfee2aa61775c4c88094df792c7f", + "key": "84f5b479c8079970fa75524e1d9ee822", "notes": [], "params": { "liquidClassRecord": { @@ -38272,7 +38482,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3459be6caffdf8ba3e4c37d51a8d8a06", + "key": "2edd45f264a5530300a1a3c8ce6380ce", "notes": [], "params": { "labwareIds": [ @@ -38294,7 +38504,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9be8c9ccbe098888f1cff39c3aa8765e", + "key": "c13d9801a158e5c46004aeb7c3e0b9ee", "notes": [], "params": { "labwareId": "UUID", @@ -38327,7 +38537,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58712d24372c5a3a50a3972694a3c4d9", + "key": "2102bee176a76aec698d33b59673b167", "notes": [], "params": { "forceDirect": false, @@ -38359,7 +38569,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "824b126fdec16e02aeff4c2d53e43abd", + "key": "fea228a7d30f88f14e06b0de4b8b94da", "notes": [], "params": { "pipetteId": "UUID", @@ -38375,7 +38585,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e4b354f1541132f9a74784fd7757193", + "key": "272543baba0bd0d93830b4e8ffcab62b", "notes": [], "params": { "pipetteId": "UUID" @@ -38389,7 +38599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd2c243bdcb3a537de7c16f049d51260", + "key": "f66cee83a2e929565293151ab95d6901", "notes": [], "params": { "forceDirect": false, @@ -38421,7 +38631,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9fec535c49a53274c4650f141178b74", + "key": "a8f43fb29c154c47f0eeda3dc68010b5", "notes": [], "params": { "forceDirect": true, @@ -38454,7 +38664,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45cb8e1a3570aa8fc32ae4f0f624af76", + "key": "53f3e45116fc6a64291ef239249be89d", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -38473,7 +38683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ce93f04f3740d255b27bd77ecccc9a6", + "key": "6fa17e3ccfac6028b915cd308a8ad81f", "notes": [], "params": { "seconds": 1.0 @@ -38487,7 +38697,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6f6ae4e1d53185b7a3fe1f8bdba11f6", + "key": "763ab41468b414f1306d0076b8614204", "notes": [], "params": { "forceDirect": true, @@ -38520,7 +38730,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c69961dbd7eb1d43a171e3b8f4c1e261", + "key": "6c4346c6402990716bebb56699597516", "notes": [], "params": { "forceDirect": false, @@ -38552,7 +38762,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1159c9cf54c88ff5f9c01ce606f0e41", + "key": "7e5e4a820c51a15688fd4b9fe65e2d5e", "notes": [], "params": { "forceDirect": true, @@ -38585,7 +38795,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64bcb5016a19abfb6b77d29b468edba0", + "key": "1b035dfdd3e37f37705d020e68e96763", "notes": [], "params": { "correctionVolume": 0.0, @@ -38605,7 +38815,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c3346a215d488af49a96cf8e99eb6ee", + "key": "fb9c690ba28d3d304c857cc892a547bc", "notes": [], "params": { "seconds": 0.5 @@ -38619,7 +38829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3990df3a506840856243cec83ee40f6", + "key": "6e09d28a0c7e7b24533604918e6288c0", "notes": [], "params": { "forceDirect": true, @@ -38652,7 +38862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c7771ddf652b7958ecaf9fb1530ffb6", + "key": "8d632a2720b282045c7644bfffad2c27", "notes": [], "params": { "pipetteId": "UUID" @@ -38666,7 +38876,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db097def00d19f250e9aa749b4af18b3", + "key": "b45ce1ba8f30ad5bafbb0b31f13ad646", "notes": [], "params": { "forceDirect": false, @@ -38698,7 +38908,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4f74807b87dab34202d1c49b6098402", + "key": "8d933f325fefaae18205bf49639ab19e", "notes": [], "params": { "pipetteId": "UUID", @@ -38714,7 +38924,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7da55eff3ef1893fdbaa92056e155727", + "key": "9b5391670cc80cdedd22f1010d2b80ec", "notes": [], "params": { "pipetteId": "UUID" @@ -38728,7 +38938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5d35a5ac74c167cfc46cc50c4e729c9", + "key": "6c8c2190c25c1ab59629496c9005889c", "notes": [], "params": { "forceDirect": false, @@ -38760,7 +38970,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "843ad9f71a23d271c31d3bf5b642c647", + "key": "c996ebb12319ca7ea8cb1dff2873f687", "notes": [], "params": { "forceDirect": true, @@ -38793,7 +39003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e759f29289b51a908515d829681a942d", + "key": "6396ea3989df163e1e409e2da5dc48be", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -38812,7 +39022,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e65847e55501706dcd6bcc7996b81d4", + "key": "5518400c5480ce0c5accc66bfbde90df", "notes": [], "params": { "seconds": 1.0 @@ -38826,7 +39036,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "981569376584b483e4de3b334de722b4", + "key": "8925ebd4f33957a85084b0966cd408ef", "notes": [], "params": { "forceDirect": true, @@ -38859,7 +39069,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41703955a660a96683ecda9731b41d73", + "key": "c1e2a390498f5a6006ad7b73e546ece9", "notes": [], "params": { "forceDirect": false, @@ -38891,7 +39101,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b9b61c7287132a84181d67eb33f52c5", + "key": "f342a39981895d481a0d31e32b970725", "notes": [], "params": { "forceDirect": true, @@ -38924,7 +39134,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3eb876fb1d5a8dfa4b317fbc370381e9", + "key": "2ed7b20da4ab5722f30c5b918dca22f4", "notes": [], "params": { "correctionVolume": 0.0, @@ -38944,7 +39154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4baa48ef73dfaea9f7e9597ece9b80b", + "key": "bae32099682268446f65acd5f78143f6", "notes": [], "params": { "seconds": 0.5 @@ -38958,7 +39168,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4ac1fd9a711b37dfc08eadadd5fcbe6", + "key": "6880844b18de5db6d8b469bf09c6c0af", "notes": [], "params": { "forceDirect": true, @@ -38991,7 +39201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc07642872c3cf5744c5b07640ea02c1", + "key": "ef60a5abe3adcea3c161e3d2778a20ed", "notes": [], "params": { "pipetteId": "UUID" @@ -39005,7 +39215,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "313d3269f89cbf11a697189f2c6666d8", + "key": "1bd33dbfc2ea3be69bb9299e5681ddd0", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -39034,7 +39244,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c518c46400ff5a2bfb5aa9f79724be3", + "key": "e2a221eb94deed8e2d34e3ad5e916f27", "notes": [], "params": { "homeAfter": false, @@ -39049,7 +39259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71f027868b2df475469389eb73a898b5", + "key": "a2aabf709cf447a1be46851cb9cbe5d7", "notes": [], "params": { "liquidClassRecord": { @@ -39103,11 +39313,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -39327,7 +39537,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -39337,16 +39547,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -39408,7 +39618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80a0c97253a4e991849836d9d4c79150", + "key": "7a841b2c0bcf7683d66bd1e466d381f1", "notes": [], "params": { "labwareIds": [ @@ -39430,7 +39640,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "652bee9b6c9fb596d88eacf2dc62bc7c", + "key": "3a56cc7535164682a88167460a43ea83", "notes": [], "params": { "labwareId": "UUID", @@ -39463,7 +39673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4318edc02cbb1b6ac2413777b23f2c05", + "key": "b0a2815c90ec50cae0757e8af3b2c918", "notes": [], "params": { "forceDirect": false, @@ -39495,7 +39705,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13a43571a9a897357cc9bbc807856e2c", + "key": "836a04ae502548fd61b65702c26705b8", "notes": [], "params": { "pipetteId": "UUID", @@ -39511,7 +39721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9ed080b5b3efc32d35336b5880a0cdf", + "key": "91394d1ec501edc9c856a7b63fc7f3f4", "notes": [], "params": { "pipetteId": "UUID" @@ -39525,7 +39735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8672358981f75627b071d8b6c35f7745", + "key": "7ef5f2140a422305ca1bd9a77e7a872d", "notes": [], "params": { "forceDirect": false, @@ -39557,7 +39767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13988e31434516feaa46523fd95efe98", + "key": "065773df7c92e785056dd6dc1a939055", "notes": [], "params": { "forceDirect": true, @@ -39590,7 +39800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f319b2951ceb180163f8fa3cd639204e", + "key": "c9a0f6b0429634032cbd1bec3c140bec", "notes": [], "params": { "correctionVolume": 0.0, @@ -39609,7 +39819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d710753d2c54098a1c7b682330ad5c97", + "key": "5b21a57aa9ad253344f40c88ab88a149", "notes": [], "params": { "seconds": 0.5 @@ -39623,7 +39833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71eaae006bdf45e067dc2c6733a1eec8", + "key": "30890b05688e029f3bdf8ffd1840d41d", "notes": [], "params": { "forceDirect": true, @@ -39656,16 +39866,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db6e000f9f88c5200db5d429bd9e4c46", + "key": "acf5aa4568875d3146efbef1f7e8e465", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -39675,7 +39885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26bf9b70a95bccc600b1eb532251d2d0", + "key": "8c917323c615a0f3b7a5502247fcf941", "notes": [], "params": { "seconds": 0.5 @@ -39689,7 +39899,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9edc3d540e2e1e71a9f657ae779fe92d", + "key": "561e59ab3e522effedf6aef65727b39c", "notes": [], "params": { "forceDirect": false, @@ -39721,17 +39931,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "413b5efc0e34125f93210b3886772c17", + "key": "f0df086b6f45bb52806a327a4ab1d5a2", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -39741,7 +39951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98c81680627e11953b25e423fd41eb03", + "key": "a9d8d82e9440aa1ce4ec651ebea987f0", "notes": [], "params": { "forceDirect": true, @@ -39774,13 +39984,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c754163b0f27742229b198e8fc532afb", + "key": "88070514cd2d651a8daa3f76f9ec63f8", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -39794,7 +40004,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0938ce5a7b0f501757ebfd419bb3171c", + "key": "4e4c028615109318f5120bfc8884d29b", "notes": [], "params": { "forceDirect": true, @@ -39822,12 +40032,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c36d83676a3dcf71e106bf349e86210d", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b91a21a1eeb79b02e69d3a8671681e8c", + "key": "403ac14a87d698a1fb798510ed77e449", "notes": [], "params": { "pipetteId": "UUID" @@ -39841,16 +40066,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e570cc380a56ed034a7779d09db86bf", + "key": "fa665effe16650cecb52372d1772f6d4", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -39860,7 +40085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "acae0769f41a6f82b6a88b7d939ec1ae", + "key": "a1b163b08a6f801f28ab53c2bec256dd", "notes": [], "params": { "seconds": 0.5 @@ -39874,7 +40099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23e7267c4a0ff3b3b5783e1e0005d90c", + "key": "038397ba7dc08b32bde70387273aafdf", "notes": [], "params": { "forceDirect": false, @@ -39906,17 +40131,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d7bae85075fbbdd9cacc3650ef58cdf", + "key": "e4d4404b6e89391c3ac0d2e9ce187594", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -39926,7 +40151,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b97c0876bee37b9821dc230041bab91d", + "key": "1a406156dd28260f0841ab71f16aa140", "notes": [], "params": { "pipetteId": "UUID", @@ -39942,7 +40167,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0a3ef86c22e6dca62ea8948676035e5", + "key": "8c7e4e0cef6e1cc7c73a9c4d2a15c3fa", "notes": [], "params": { "pipetteId": "UUID" @@ -39956,7 +40181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c1e312b629ab96ba45ece921de29f31", + "key": "e79a6f2890e41479c83cf4b402c12cfd", "notes": [], "params": { "forceDirect": false, @@ -39988,7 +40213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "720416e289e25e9e0d50b52696db89ea", + "key": "d5821f9d6fb934c14ffcee72a771afe5", "notes": [], "params": { "forceDirect": true, @@ -40021,7 +40246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "725cf4735d7243f4c20dfcaad6f58795", + "key": "292ae13baa2ab4b609eb8aa125654ca0", "notes": [], "params": { "correctionVolume": 0.0, @@ -40040,7 +40265,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48154613fb6c24e3cf45f621b1a5a9e5", + "key": "68bcb489d46c2987618b205500d9f6c0", "notes": [], "params": { "seconds": 0.5 @@ -40054,7 +40279,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "319cef856bb503330cde13bd352cc19c", + "key": "4c7a3c9f0c31acf1c217088ad1997cc1", "notes": [], "params": { "forceDirect": true, @@ -40087,16 +40312,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e8214fa030248c80c6af0029dab48d2", + "key": "691460f440f7fff28bd2643ec4b9f3d0", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -40106,7 +40331,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "151f15fec817fe7dad160369ba495c0f", + "key": "156f8cb7710a5f8bd5b773d67da9249f", "notes": [], "params": { "seconds": 0.5 @@ -40120,7 +40345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc188a2661a7cd7fec6290e10003a916", + "key": "9d5e58952a28d1ef6dc3f8660829cb9b", "notes": [], "params": { "forceDirect": false, @@ -40152,17 +40377,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b8d41e00a351a2909dba8f1611a9e01e", + "key": "c37f1bc04fe0e8b4d57c49b9be839cda", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -40172,7 +40397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f294c67ca4ddf3a617ea98c11cc8e480", + "key": "d44d8d5f6f81d6f37871e1a2ae7b8bda", "notes": [], "params": { "forceDirect": true, @@ -40205,13 +40430,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eaa1ee06a934cea4398fd7d7d3bceb33", + "key": "7674de971fc5ce435033cd73ef2aad60", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -40225,7 +40450,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "380b2cca0ad0793acb7ae027987df97c", + "key": "0a03f163457735ec813386ea0a3c2b30", "notes": [], "params": { "forceDirect": true, @@ -40253,12 +40478,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14b2c7730fe7de0f240d73ea9db84b57", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34c25b221640f2f81c55735ed60d5ad5", + "key": "857f123171e76f7aa03394a6d835f637", "notes": [], "params": { "pipetteId": "UUID" @@ -40272,16 +40512,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "08ebb5d83595cbbe9c1425e4d88b1ac9", + "key": "e84c944f35ef80c2f616d12f619f2da7", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -40291,7 +40531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f63998e425295c7cbf90aab1e070fc6", + "key": "dd6754d493386787d3911098afb6b2d3", "notes": [], "params": { "seconds": 0.5 @@ -40305,7 +40545,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95ce5f0a8a645480cdadf74272820858", + "key": "d829ceee7b10782840412a3796d9cbe6", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -40334,7 +40574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41c79d06373b3e7ae741e02d5f872668", + "key": "75947d9fedaac3956cced2c29f10bda7", "notes": [], "params": { "homeAfter": false, @@ -40349,7 +40589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da51602737ed77faef07cbc91e0c44c1", + "key": "afde02bae8498cdd6413ec8fe5ca85c6", "notes": [], "params": { "liquidClassRecord": { @@ -40748,7 +40988,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fba55dc5c744d7fcea03c6a0e50ceb28", + "key": "0d6f7eb32f4d4976d10e5431f5290c9c", "notes": [], "params": { "labwareIds": [ @@ -40770,7 +41010,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34316292a1f5fee6e5880cf7d852bab0", + "key": "5d8568a5df8e3f32d81d8723d5b0ff5d", "notes": [], "params": { "labwareId": "UUID", @@ -40803,7 +41043,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5cafa36f56714835896f63d1169264fe", + "key": "2df33ebc0c502309a170102e09649d56", "notes": [], "params": { "forceDirect": false, @@ -40835,7 +41075,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "833c390c628cee41ba32c12aeecf8612", + "key": "9771018d900cca44bcbc8ee5e9367c62", "notes": [], "params": { "pipetteId": "UUID", @@ -40851,7 +41091,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9d87ebbdee1f70a48ab75ec24f8b551", + "key": "5198a2474190be5e8fe2f0f55743bced", "notes": [], "params": { "pipetteId": "UUID" @@ -40865,7 +41105,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "414b1974a30664493868c319a1f202d8", + "key": "944622b2de8371774d26e6fbf3e1e048", "notes": [], "params": { "forceDirect": false, @@ -40897,7 +41137,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37cf8ad40f208ffb2a02dc6a45649250", + "key": "17bcd40d04b9e01c6495dcd35e3ea4f4", "notes": [], "params": { "forceDirect": true, @@ -40930,7 +41170,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd929301edf6d083201945ace0c4c532", + "key": "7301a4fd96af781ffaaccd1395449ba2", "notes": [], "params": { "correctionVolume": -1.045, @@ -40949,7 +41189,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52e5b1ec0426f5b4dcd9f2bb127c1fcc", + "key": "d6e4593cadfca367a6f17fbe8735ea10", "notes": [], "params": { "seconds": 0.2 @@ -40963,7 +41203,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c1f6958cb6402118c12bc4e79eae7b0", + "key": "9725459ea469b7f5fcd092303a62ca55", "notes": [], "params": { "forceDirect": true, @@ -40996,7 +41236,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3fe281d3fb7a8b07688e9aec61737d12", + "key": "a883cc2db8ca08aee33a81f02125ac85", "notes": [], "params": { "seconds": 0.5 @@ -41010,7 +41250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1b7029ebd4702b6e13c2575260ad126", + "key": "5a1a1c00507358a705793a1b66950d14", "notes": [], "params": { "correctionVolume": -1.12, @@ -41029,7 +41269,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "310aa3ec0ad0225989e67f87d93aa105", + "key": "dfbc5d9d725cad560214169fe463df61", "notes": [], "params": { "seconds": 0.2 @@ -41043,7 +41283,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d8bf3de11b75c102ba7e46ac07278383", + "key": "ab624d30ba761334d13a6a0a4f01588f", "notes": [], "params": { "forceDirect": false, @@ -41075,7 +41315,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a43492eb09908e5585201cf9d7e835bd", + "key": "a0bea0219363a74f7100004f4a26fa8e", "notes": [], "params": { "correctionVolume": -1.045, @@ -41095,7 +41335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9ceddeb89cad225117aa8560af150d4", + "key": "985fc1f8bae3fb43bf584f4a5e9dad4c", "notes": [], "params": { "seconds": 2.0 @@ -41109,7 +41349,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8587525a169c3e5c89f732ed8ccb95e", + "key": "061adad76280693e2dc096137dd4e140", "notes": [], "params": { "forceDirect": true, @@ -41142,7 +41382,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ceef66dbbd4c8240ea66928abb05e2cf", + "key": "161562b994e87b53d96c0060579fb714", "notes": [], "params": { "correctionVolume": 0.0, @@ -41162,7 +41402,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb71a906ff4f8206d3d44553534c7fb9", + "key": "a6808dbd2e076be541f1c858193a188f", "notes": [], "params": { "seconds": 2.0 @@ -41176,7 +41416,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1b08d086fbf2f5ae8e7313869acdc70", + "key": "a36a8e94d3e96bebb48c44efd22f3ae5", "notes": [], "params": { "forceDirect": true, @@ -41209,7 +41449,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6822c79c70dbb5019cac89ae027b1c2f", + "key": "8a836b7f15be59c992a31e9e32b9e062", "notes": [], "params": { "seconds": 0.5 @@ -41223,7 +41463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd4842fea8fd14206a54cf1611a46b4b", + "key": "5dae5e4945bcaaadc50217ba9de87fb2", "notes": [], "params": { "correctionVolume": -0.75, @@ -41242,7 +41482,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c263bfb2097f9aeb384e8bdf86bd5dce", + "key": "6896348eeddf8d22fff6b5c742e55625", "notes": [], "params": { "seconds": 0.2 @@ -41256,7 +41496,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0c7140582fcb613d2f5a9abb94d2b89", + "key": "eb7f0ec61da9879423837ead107589bc", "notes": [], "params": { "forceDirect": false, @@ -41288,7 +41528,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "570e64796ec758e32847cedff2beaca3", + "key": "cce837b7a5e92dc7b7299f896bc91f08", "notes": [], "params": { "correctionVolume": 0.0, @@ -41308,7 +41548,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "026666619df0ee0904b5799bc2500fdb", + "key": "dad90d0bb3ae31557d21f7382af1bc44", "notes": [], "params": { "seconds": 2.0 @@ -41322,7 +41562,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa7bbae91c5212ef3e02bd6ee2a3a170", + "key": "5191c66aea2c2212b710ca04de431e59", "notes": [], "params": { "pipetteId": "UUID", @@ -41338,7 +41578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b8b5523f064c59fbc9be97c2ace9d009", + "key": "c082115e0e5d8c2d7f20fe5d692cf12e", "notes": [], "params": { "pipetteId": "UUID" @@ -41352,7 +41592,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1aae973ecbdbb296874449f8bfe6afb", + "key": "134eb400458205629a2eda20af683e99", "notes": [], "params": { "forceDirect": false, @@ -41384,7 +41624,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9cd273afd3865c512e461615300847c", + "key": "2e3e7cab4bd150a278af37882eefcb97", "notes": [], "params": { "forceDirect": true, @@ -41417,7 +41657,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f7f3ae5591cd5778be435d4974d4694", + "key": "edf2ae8448c5b3fe520c8fae6d60ee24", "notes": [], "params": { "correctionVolume": -1.045, @@ -41436,7 +41676,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84398740b71c3fd864cd855ad20e6b37", + "key": "bc51ebc3eefed031aab28953f22f5bdb", "notes": [], "params": { "seconds": 0.2 @@ -41450,7 +41690,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6eb42ae8db4fa78542d405122551e24", + "key": "aa45a38a85c12c41d406a5bd471ee65f", "notes": [], "params": { "forceDirect": true, @@ -41483,7 +41723,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4475b69ed6f5627de22460e274f2a736", + "key": "b1acf35be675e78eed2c63f73923b834", "notes": [], "params": { "seconds": 0.5 @@ -41497,7 +41737,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "189ec7348da08526f28c4823c5f6ac61", + "key": "fedd1bd6c787c70793c860a40912db15", "notes": [], "params": { "correctionVolume": -1.12, @@ -41516,7 +41756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdd81f3e48042788288a518574382b8b", + "key": "9920d5559ba133092b6a789e83f7a1a9", "notes": [], "params": { "seconds": 0.2 @@ -41530,7 +41770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "67931d03a100a42cf0e2271697354f56", + "key": "e177e0766788118d699f1b73a194bbef", "notes": [], "params": { "forceDirect": false, @@ -41562,7 +41802,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb1cf3b3921eb8950e4211afea329f36", + "key": "1b780b64e74d0b74998c6601884f3891", "notes": [], "params": { "correctionVolume": -1.045, @@ -41582,7 +41822,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e39d7f707e925988d2f8ed5c899b42cd", + "key": "7c8004382146758722c9273f1b457457", "notes": [], "params": { "seconds": 2.0 @@ -41596,7 +41836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e2ff1d5bcc330a1612d89ca2b8b2a6c", + "key": "e5f3d8826829b37fe53ec4ff92f4245c", "notes": [], "params": { "forceDirect": true, @@ -41629,7 +41869,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d68533343ea914137b90bbe016684dbc", + "key": "acc0dd35a86edc086d017737b9d12575", "notes": [], "params": { "correctionVolume": 0.0, @@ -41649,7 +41889,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f30fffc1980d034707bfc91406642941", + "key": "863995a1fb8762c47c50b67f0b2d8470", "notes": [], "params": { "seconds": 2.0 @@ -41663,7 +41903,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e88be83c74f60ffb1249cc72ebd1d61b", + "key": "8117277db6703222e96dd760f37994bb", "notes": [], "params": { "forceDirect": true, @@ -41696,7 +41936,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be332f2525916dbf6bc7bd0d45dc546b", + "key": "f20be5ef09dae9d826a113004e28bdb0", "notes": [], "params": { "seconds": 0.5 @@ -41710,7 +41950,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3666eabfb23cd5a43841d1951e7be7ef", + "key": "26324cb765e44f06b33011eed6df6e90", "notes": [], "params": { "correctionVolume": -0.75, @@ -41729,7 +41969,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2da4b01cf1020d0ba54e1f8e89c516c3", + "key": "8e38a9fc9048bf9a27d843ca8340f081", "notes": [], "params": { "seconds": 0.2 @@ -41743,7 +41983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c279291e71c29ca523f99f2fe1c872e", + "key": "bd42a6a295a7ebf5be5c9739db22ab1e", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -41772,7 +42012,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "684b0febbbdc253c364084a1c342cda6", + "key": "4a9e4ea2a81d1d7789c9848b0efb94c0", "notes": [], "params": { "homeAfter": false, @@ -41787,7 +42027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6aed01a59dafbfbb88224623ee24150d", + "key": "1b24f7ac5f19157f36a847771967446e", "notes": [], "params": { "liquidClassRecord": { @@ -42158,7 +42398,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8bd416293c403913e4cec15ba8e0377", + "key": "d08ee88b1f4bb63b275a1a2c8971a3f6", "notes": [], "params": { "labwareIds": [ @@ -42180,7 +42420,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b31e1a03b9ecb71b471f6cf0aecfadf", + "key": "621a5ce83ae0de91a6217503c72482fd", "notes": [], "params": { "labwareId": "UUID", @@ -42213,7 +42453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "123db73de37a522b5d9adaefdc1f87e4", + "key": "1aaa8b1b67bb27fa98809ad36935bf68", "notes": [], "params": { "forceDirect": false, @@ -42245,7 +42485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dde49215a6c7a066429555a70b22703a", + "key": "f5cd2e135ac23170276aa5403dd0313c", "notes": [], "params": { "pipetteId": "UUID", @@ -42261,7 +42501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e30768e9783034aa186d38a2cc6bc89", + "key": "a23fd718a9910b6f22a2bb66b69f8142", "notes": [], "params": { "pipetteId": "UUID" @@ -42275,7 +42515,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0bf94d3618dc1e4b2b0ac8a8526b2ac", + "key": "e12e63e463aea4c6cb74c0129795149e", "notes": [], "params": { "forceDirect": false, @@ -42307,7 +42547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e7b61ad67655f5a8222734ac12b2d7f", + "key": "dc04f8cdddd24b04f390686b70523097", "notes": [], "params": { "forceDirect": true, @@ -42340,7 +42580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90d798adc8fa0c8b684b3c2d48211822", + "key": "18eaee14e69dbd3c1d6cf5049b8fd83e", "notes": [], "params": { "correctionVolume": 0.1575, @@ -42359,7 +42599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77935fdf1776404012f23bac529768b0", + "key": "79fd6d7ba976d55519788b025f16ce46", "notes": [], "params": { "seconds": 2.0 @@ -42373,7 +42613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14b358a5e34142d7a59c1348af8f97a8", + "key": "3e3fa7ca7c0ad1480edc06cff7d4ae0c", "notes": [], "params": { "forceDirect": true, @@ -42406,7 +42646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe2f4d6832e8c69c934753aa50826e0e", + "key": "f8a72c74cc92420a1e9433b07bb5aa13", "notes": [], "params": { "forceDirect": false, @@ -42438,7 +42678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a152d196f6d64c9b6e8785e671fe3742", + "key": "cbdc50bf3caa91bebc084bec1563225c", "notes": [], "params": { "forceDirect": true, @@ -42471,7 +42711,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15c6b3ff9511f85d7ce1f751e138b26c", + "key": "f859ff049d4c531ec7f82706d8d572bf", "notes": [], "params": { "correctionVolume": 0.0, @@ -42491,7 +42731,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48514181fe808b5e367c9528ba935348", + "key": "9a1d7ae245346f535690f5f1d82f4b2d", "notes": [], "params": { "seconds": 1.0 @@ -42505,7 +42745,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d44042e859bd55be89ee8425ad59c589", + "key": "07d2e0029594d1619c2502bc6003e973", "notes": [], "params": { "forceDirect": true, @@ -42538,7 +42778,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5903ed3412a42860a9b09aa96971cd4f", + "key": "16981a013c12a65dd09fc70f32f98b49", "notes": [], "params": { "pipetteId": "UUID" @@ -42552,7 +42792,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0716443f7796156db046590679cd76f0", + "key": "2d7b88c4ce5db6707c47542d942d0514", "notes": [], "params": { "forceDirect": false, @@ -42584,7 +42824,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd56b0432fb134be8ba8705290f6702d", + "key": "7ca3b8661273a191f5abeb1ed6b2f438", "notes": [], "params": { "pipetteId": "UUID", @@ -42600,7 +42840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1917ef348821b90546ef8f6d433dcdf4", + "key": "8eb587bfb4b0895d06b0c53d83fbbbd7", "notes": [], "params": { "pipetteId": "UUID" @@ -42614,7 +42854,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b635a07f8b8db319350f903a2ba4c02f", + "key": "9fe28e0d220da5f207704f7fb409ac91", "notes": [], "params": { "forceDirect": false, @@ -42646,7 +42886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "900505d7ddaf0e8cf740aa96fd4c90b9", + "key": "adbba191454be5799ef60e50873859fa", "notes": [], "params": { "forceDirect": true, @@ -42679,7 +42919,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab510807203fb8352635a5e345d1db0c", + "key": "280451c899e75d32f696363c2dc6a690", "notes": [], "params": { "correctionVolume": 0.1575, @@ -42698,7 +42938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45cd1e1cbe8d74cd6de98d03d5a79b99", + "key": "f3b20238d786ac692d259fb654183e1d", "notes": [], "params": { "seconds": 2.0 @@ -42712,7 +42952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfa9884207568f27c2b9b94c0136509f", + "key": "5f4a05ce1a0f5c4b955a6d15e31b955b", "notes": [], "params": { "forceDirect": true, @@ -42745,7 +42985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77e69543d2ef0c741190bfad6b71a027", + "key": "6a55fdaefc84c0eb5960f4be7f3766d9", "notes": [], "params": { "forceDirect": false, @@ -42777,7 +43017,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ae8fd49aafb633c2a118c2767541f67", + "key": "94c3af5089f86e09a1e274c9b7f4d6b0", "notes": [], "params": { "forceDirect": true, @@ -42810,7 +43050,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33846e2aff340460f43954d3a6241f7e", + "key": "c872550373e91189d466a88746e6965a", "notes": [], "params": { "correctionVolume": 0.0, @@ -42830,7 +43070,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d08bc757d0ea04dba5d2eeefad5880f7", + "key": "a531c3c6be08fcbeb2b102ae8416834a", "notes": [], "params": { "seconds": 1.0 @@ -42844,7 +43084,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc584d9504c9f6531d91d6c79a1f84a1", + "key": "b38594aaf2480414f8adf2e4f77bb499", "notes": [], "params": { "forceDirect": true, @@ -42877,7 +43117,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48832f563ea97e63c155dac7cab89a32", + "key": "a6ef99a4ce6870f0fa43bfe8a3241645", "notes": [], "params": { "pipetteId": "UUID" @@ -42891,7 +43131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54a665ba71353c52a40e4aaa7b8da2a8", + "key": "33ba0767702eb69a0dc9cadec5b31f94", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -42920,7 +43160,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b56ab42d3f1298b804fdb42b9bf6384b", + "key": "d79b9158528b51f86e7e1c158bb3ea60", "notes": [], "params": { "homeAfter": false, @@ -42935,7 +43175,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b89039ba66d05325ffeb881b337e3e3", + "key": "95f6bc10b361edccfb1d614acab0eca7", "notes": [], "params": { "liquidClassRecord": { @@ -43294,7 +43534,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fc7c1281fe1ddbf802e2fb3ed1759b2", + "key": "b39ec0c99706599f1f6a992b972d9740", "notes": [], "params": { "labwareIds": [ @@ -43316,7 +43556,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60af40ea2ef98c7139c2f12c4c548ba5", + "key": "4cc61c69dd15b4b90df2c684a5eaa4ab", "notes": [], "params": { "labwareId": "UUID", @@ -43349,7 +43589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a3fa6bda324e32fb74ea3b07957d7a6", + "key": "781437def20247a5930c8d42304e71da", "notes": [], "params": { "forceDirect": false, @@ -43381,7 +43621,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd36e3eb9dba76a070a6d47a533e795f", + "key": "ab7e184dc0a273d0ff53e0a246c55943", "notes": [], "params": { "pipetteId": "UUID", @@ -43397,7 +43637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4c36b141eb4702d30424747cecbcc08", + "key": "fc90e4c599a92367eff7c33bbe430d09", "notes": [], "params": { "pipetteId": "UUID" @@ -43411,7 +43651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "607bd426b38317dc8220afc12058ba7b", + "key": "eef9aa8110a1faa85c9c1481154607d3", "notes": [], "params": { "forceDirect": false, @@ -43443,7 +43683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5279343dbc950a3b031b5886dcd58974", + "key": "6ee3b34641ca3dd9994674c5c56393b8", "notes": [], "params": { "forceDirect": true, @@ -43476,7 +43716,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dfbacf1508c0f4c8d52c7743ea65fd9", + "key": "b3d6793888d160970b7c83b999f6dc28", "notes": [], "params": { "correctionVolume": 0.0, @@ -43495,7 +43735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "500421809a90c661d0a362ba4b5452ff", + "key": "b04bf74b6500faa25254008a9d3ab2da", "notes": [], "params": { "seconds": 0.2 @@ -43509,7 +43749,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fec0ebbe1acc37988541fcd8e4026650", + "key": "78524a978abb1698f8392a6f4ac6cfab", "notes": [], "params": { "forceDirect": true, @@ -43542,7 +43782,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43402d4f9789d1cbca0a263ed360575d", + "key": "8c1bba0685c70cd8da0b190697a2b339", "notes": [], "params": { "correctionVolume": 0.0, @@ -43561,7 +43801,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba8dbf77b36f6b4882cf383ea38bf413", + "key": "e8be6cfb6d4c21e567f5e11d51bc00c1", "notes": [], "params": { "seconds": 0.2 @@ -43575,7 +43815,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb9c3993662242930dc71e5243d86f60", + "key": "4edbeb0918b73557d6bc1ac48191feb7", "notes": [], "params": { "forceDirect": false, @@ -43607,7 +43847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c967d3b8d35dcf8aaec126418430e80", + "key": "0764b1fca04e9ac49b5e951d22eddb02", "notes": [], "params": { "correctionVolume": 0.0, @@ -43627,7 +43867,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1cce26e7359de6d83eacde8be1d7f19", + "key": "a8cfdf36d474ceee1ae814639b2c2908", "notes": [], "params": { "seconds": 0.2 @@ -43641,7 +43881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "138d55ce8f37d76a2607c4e64759c64a", + "key": "c565f3fd82ced9bb4f07523464a395a4", "notes": [], "params": { "forceDirect": true, @@ -43674,7 +43914,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5a4db5e2aa62c8ddd5c5c57768b3181", + "key": "4015d20e4d3e84fb63d73183ebac7a0f", "notes": [], "params": { "correctionVolume": 0.0, @@ -43694,7 +43934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "20cf463cff4ba39c3fa1022c6d817b18", + "key": "f14b9d526c35dfc16d1edb1446edafbf", "notes": [], "params": { "seconds": 0.2 @@ -43708,7 +43948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30e91fe605301da4a317725707d09dff", + "key": "eb0102c0ed0350c49b1ac40a80d14bd8", "notes": [], "params": { "forceDirect": true, @@ -43741,7 +43981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a3788a5d68a09419531e73384a713c8", + "key": "387e0d2c8d6534069a7a7ed5b18b7693", "notes": [], "params": { "pipetteId": "UUID" @@ -43755,7 +43995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d621a2cad73d84acf14ceaa56731944", + "key": "189519a6dc5263705b715ae318873ff7", "notes": [], "params": { "correctionVolume": 0.0, @@ -43774,7 +44014,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f51151f895da4f45846c70f23c55195", + "key": "381d17b8f1aa23093d42d23b5bd6ae38", "notes": [], "params": { "seconds": 0.2 @@ -43788,7 +44028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca7488daf635a6cac7e9ae111479d308", + "key": "f92c3e2695316bf22c4a7a812330450c", "notes": [], "params": { "forceDirect": false, @@ -43820,7 +44060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a3047aba4df8a5365acaa4eea7de3c5", + "key": "033e13a7b5a3b48f9c5790151e3b9c03", "notes": [], "params": { "correctionVolume": 0.0, @@ -43840,7 +44080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9370c00c9d9050c9c5e6536d8f3bfec8", + "key": "6dfb592a965d4c93394c519dcf9b290e", "notes": [], "params": { "seconds": 0.2 @@ -43854,7 +44094,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c7ddc1695e673f711c03b0e8cc1c1a0", + "key": "e0f8ae8eb95f86652f15818dd48a7b51", "notes": [], "params": { "pipetteId": "UUID", @@ -43870,7 +44110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6aa1fd3cd20a58f97541714b8b92be8", + "key": "f56ed98b0a98da56503fd1ad590c5feb", "notes": [], "params": { "pipetteId": "UUID" @@ -43884,7 +44124,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26b037c6b8eada45e3ccac36c95ea328", + "key": "f26073b8602badcfa51603ac3edd327d", "notes": [], "params": { "forceDirect": false, @@ -43916,7 +44156,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3dd461d1248e14f2ad51b15b570235b9", + "key": "9d198d70155da69c5db77e7f1dbafe26", "notes": [], "params": { "forceDirect": true, @@ -43949,7 +44189,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa0fe311a2d51a5024608965910521cf", + "key": "105aa9e109837c4940a92865b53d4c05", "notes": [], "params": { "correctionVolume": 0.0, @@ -43968,7 +44208,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e0fcce7e3660d770a71a39e71028fab", + "key": "ac6390717c6399f148ff934473f0cc41", "notes": [], "params": { "seconds": 0.2 @@ -43982,7 +44222,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4722d8bea02cb0213fe4f351adfaa96", + "key": "a7a8c5c459abaec243ebf45fc873fae9", "notes": [], "params": { "forceDirect": true, @@ -44015,7 +44255,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1aff8f5565112cc383715b275f365dfa", + "key": "9756f66121d0b11685fba663cbc9f16c", "notes": [], "params": { "correctionVolume": 0.0, @@ -44034,7 +44274,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff7eacc2ae6f30bde65edc70e555fb24", + "key": "1f167edbdf79568d95b57d1b07619fd8", "notes": [], "params": { "seconds": 0.2 @@ -44048,7 +44288,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af976b32b52ded2b0cfe65eb595c04e3", + "key": "0b8ee882ce61435711d721f55a7600ac", "notes": [], "params": { "forceDirect": false, @@ -44080,7 +44320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31979749e2ca08205d9e7cb3c97fba7b", + "key": "b8f69fba0a16859157510b93bf0c52e0", "notes": [], "params": { "correctionVolume": 0.0, @@ -44100,7 +44340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ce2c5ad924b3dafc20f6e2a25bcd6c6", + "key": "6a8d9d2cbfc048d0e49d2d9aeef15996", "notes": [], "params": { "seconds": 0.2 @@ -44114,7 +44354,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6993cbfa3fb42f698b4874724cdbbcad", + "key": "e36999be78afa390e60a81b9412d4ca0", "notes": [], "params": { "forceDirect": true, @@ -44147,7 +44387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54b68f7a00ebc65defcf325968ab7ffe", + "key": "c83d8a8427644dbc8c9349eae5765635", "notes": [], "params": { "correctionVolume": 0.0, @@ -44167,7 +44407,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "787d95fc5cdaaa093ec817f087ce4be5", + "key": "3788bf7a77982350defdfa13267fc723", "notes": [], "params": { "seconds": 0.2 @@ -44181,7 +44421,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c37410696f996c52d14635731c13c472", + "key": "764ee3c1172ce80c5661af72c1bb159e", "notes": [], "params": { "forceDirect": true, @@ -44214,7 +44454,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0a1ccb105d6bf1b00143bea0b05120d", + "key": "c6e5abb8dcf1d13cb405253042604599", "notes": [], "params": { "pipetteId": "UUID" @@ -44228,7 +44468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "802ce1b4311e0494a266829df8ba9117", + "key": "ada3598940794ecb4ae9e0906d8bc657", "notes": [], "params": { "correctionVolume": 0.0, @@ -44247,7 +44487,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "832d5eed6001279e099ad896ae7b120b", + "key": "ee05df941701939d34e4d2abf35de037", "notes": [], "params": { "seconds": 0.2 @@ -44261,7 +44501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e515b023122a692058c9029c65f8a88", + "key": "2bfd78932737d06fd6d3d3ef327362b7", "notes": [], "params": { "forceDirect": false, @@ -44293,7 +44533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73e98ae8d13714d8726d47455aa01c3a", + "key": "9175d6274940d135087433fb97696229", "notes": [], "params": { "correctionVolume": 0.0, @@ -44313,7 +44553,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0224ace625aeb97f29fc0d7639928f6b", + "key": "ab4f24edbf50752ef393ba5189d7c967", "notes": [], "params": { "seconds": 0.2 @@ -44327,7 +44567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e344b656756ae7933668643f13aca05", + "key": "bc985bf013037777be6408c3346040aa", "notes": [], "params": { "pipetteId": "UUID", @@ -44343,7 +44583,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d9364d4a120292e566623bc7a8b22ba0", + "key": "39898690c8e8da57e3e9647b8e11df62", "notes": [], "params": { "pipetteId": "UUID" @@ -44357,7 +44597,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19e9f5d8f0864dca6b1093633f7f7d8f", + "key": "5956afb98a79c15e3f962b290cd7677b", "notes": [], "params": { "forceDirect": false, @@ -44389,7 +44629,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5764a14dfb91712ba8e28c0066fcb76d", + "key": "f698295ca8b3f1901599c5b175a1b51e", "notes": [], "params": { "forceDirect": true, @@ -44422,7 +44662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46dc6e09aaed3a104af6eb364889bd12", + "key": "13054243b993d2d78c8c54a6bd89af65", "notes": [], "params": { "correctionVolume": 0.0, @@ -44441,7 +44681,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6c3e481c8bb38e70966631070879568", + "key": "bf6e47aefcaebce76c0ebd8a31d09e90", "notes": [], "params": { "seconds": 0.2 @@ -44455,7 +44695,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d87be1714a03f379fd73ba0f3f8fdec9", + "key": "b433e735069686589d794853343a9d0c", "notes": [], "params": { "forceDirect": true, @@ -44488,7 +44728,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96baddbeb39918ab8ad6700c33ee5f75", + "key": "23c04a1175852e69036d45e58656c130", "notes": [], "params": { "correctionVolume": 0.0, @@ -44507,7 +44747,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9b6f1b07b369a89ba0bdd37f347d53c", + "key": "40c1141e28855a1c9252cd0a9d9e9013", "notes": [], "params": { "seconds": 0.2 @@ -44521,7 +44761,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c559a0a94b6fa7670b7e1e64dc23086", + "key": "7947687e6f6d6f9fef017af17a2e0d57", "notes": [], "params": { "forceDirect": false, @@ -44553,7 +44793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "482203b80cea56158151ea668471c50d", + "key": "b8f3f87f68f8a12140825fb5c0ea8a40", "notes": [], "params": { "correctionVolume": 0.0, @@ -44573,7 +44813,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "216709391b200032413e030b0eec043e", + "key": "8ebd68c42dfe89be8e02b34901215675", "notes": [], "params": { "seconds": 0.2 @@ -44587,7 +44827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7c126a36f64046e9ff21fca62f28931", + "key": "f2a7a81026eb4d8c8093b230138a0a3f", "notes": [], "params": { "forceDirect": true, @@ -44620,7 +44860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dff599d56001ea36a680bae03fec6d4", + "key": "e3c32aa676b0b9c0530522706b75272b", "notes": [], "params": { "correctionVolume": 0.0, @@ -44640,7 +44880,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43391f6e8dab45e2d51c9304d56b0739", + "key": "f3e5a985633675d9317e013689bb4b04", "notes": [], "params": { "seconds": 0.2 @@ -44654,7 +44894,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a697e7d810d0dd9ea78138b075f31ad8", + "key": "43b85893b83b75340fd72e9fd0fd1018", "notes": [], "params": { "forceDirect": true, @@ -44687,7 +44927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f3a8a8034a271aeab4230263723bb9ca", + "key": "c3565f276d522cff4923e16b0e994b40", "notes": [], "params": { "pipetteId": "UUID" @@ -44701,7 +44941,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d75a6dbb387e7e37d8fc56bdf5e6656", + "key": "f35449cba7bcaa7c4003fc3da3d37b84", "notes": [], "params": { "correctionVolume": 0.0, @@ -44720,7 +44960,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a35a8287ee32da45dc01828de8dc575e", + "key": "737799d2be801172cd500772c8bf170a", "notes": [], "params": { "seconds": 0.2 @@ -44734,7 +44974,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ddf32e2fe658dd6d3fbe9dc6c38bb390", + "key": "06baa8498c647fa8eac4a711766b7100", "notes": [], "params": { "forceDirect": false, @@ -44766,7 +45006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0439e9a1f5373b928834a9cea055dde4", + "key": "0a34e188dfbb039b81939f87d93ce7b0", "notes": [], "params": { "correctionVolume": 0.0, @@ -44786,7 +45026,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "749a0cc23df613e2a2803d39faa2877a", + "key": "50e8920522381dec59355e18f8ab4bbc", "notes": [], "params": { "seconds": 0.2 @@ -44800,7 +45040,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ceb9b80558e87228f05c5df325a11bef", + "key": "52be94c1b4e7610aca0c798dcdb75dac", "notes": [], "params": { "pipetteId": "UUID", @@ -44816,7 +45056,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4490f81de10687aa7b4e22fe57980b5f", + "key": "2274b98033a23bc7ac4f9474aaacce7e", "notes": [], "params": { "pipetteId": "UUID" @@ -44830,7 +45070,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4068b8e8bdff571c63203c24780d8350", + "key": "0c7e2094a6d855076d18dc25a20df023", "notes": [], "params": { "forceDirect": false, @@ -44862,7 +45102,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57457add2d2438c205bac4e3861a4fcc", + "key": "c3d5300248da9899fcd3b73bd9b6e776", "notes": [], "params": { "forceDirect": true, @@ -44895,7 +45135,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3cb97b87755e2d180b0b3c633e53596", + "key": "ddb4d93cc4b26096990299ae8b759716", "notes": [], "params": { "correctionVolume": 0.0, @@ -44914,7 +45154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1bb804a8bdf7da7a790cfc4da669664", + "key": "d92e72f2fc7c8f6a96da9c8b7a71afdb", "notes": [], "params": { "seconds": 0.2 @@ -44928,7 +45168,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0fe46f4ab247ae82d916d5e7eb7ce189", + "key": "f6d3e9f9cee56f2d88e98ad75f273367", "notes": [], "params": { "forceDirect": true, @@ -44961,7 +45201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "197d7444d834a7fa3c10ccaca34990d2", + "key": "f1ca891af875dd739274e58c54f5e79f", "notes": [], "params": { "correctionVolume": 0.0, @@ -44980,7 +45220,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f08d06c4e6857350383c228fddcc46bc", + "key": "4a25ea353b2128d40a194a012118285a", "notes": [], "params": { "seconds": 0.2 @@ -44994,7 +45234,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abd5c82a4695a106ba3cfff8e138b866", + "key": "2c2c2b9a45850642a9a25d8920d89c1d", "notes": [], "params": { "forceDirect": false, @@ -45026,7 +45266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da5db425758f3fd245e9819bc8662c65", + "key": "149fc9ce38e7348f3d6c9e6e862b2faf", "notes": [], "params": { "correctionVolume": 0.0, @@ -45046,7 +45286,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1090c81b8a4fdd5dc1fc74e49e6aa3d8", + "key": "26d17f07b0c80e5cb596f6b42ccd6db0", "notes": [], "params": { "seconds": 0.2 @@ -45060,7 +45300,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd7af14a701491efaaf767dff4eac528", + "key": "abbbddee82b15bd404eee5c171da84ff", "notes": [], "params": { "forceDirect": true, @@ -45093,7 +45333,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "084da5a574d91a45f46b5955288999c6", + "key": "1d5317db6da76d6c79f8fa4c0c670779", "notes": [], "params": { "correctionVolume": 0.0, @@ -45113,7 +45353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b42b4dc5a7554ad2edf9a05bcdf58a9", + "key": "d7af567bc0e9e8bf5828c1b554e62d13", "notes": [], "params": { "seconds": 0.2 @@ -45127,7 +45367,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a636898002d0adbd9e1b47805e17a17", + "key": "e47b9178b66edeb406caba43a09f0705", "notes": [], "params": { "forceDirect": true, @@ -45160,7 +45400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe9220557e5d02611013c3e6492741a3", + "key": "5c7877db4040fdff1e7cd49f59953cdf", "notes": [], "params": { "pipetteId": "UUID" @@ -45174,7 +45414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1bb6db6902196e7591e37ab9085e8af2", + "key": "0d2e3ad044c2dbcbf411b9c8fccc89bd", "notes": [], "params": { "correctionVolume": 0.0, @@ -45193,7 +45433,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2808a8c0593cddfb637d9298d2c3136d", + "key": "05e2f24c0f8bfe6706d39c7675ecafe7", "notes": [], "params": { "seconds": 0.2 @@ -45207,7 +45447,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3a0590df90ec7a6bcbd6aceb9fb5e88", + "key": "65785fd6c2fb8364473ddc625c95e038", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -45236,7 +45476,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ca19eb07347f1a0b85d4ba851ab3dc5", + "key": "7bf61c3ff9c8fa93235c8324ea96ed1e", "notes": [], "params": { "homeAfter": false, @@ -45251,7 +45491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9cc680d5c5237b461d2d7822f1789df", + "key": "910623a076867311c4b9b2af0b765664", "notes": [], "params": { "liquidClassRecord": { @@ -45638,7 +45878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7704ddbf2dd4e1c82544931ac1714048", + "key": "2b01f43469b9b199066a48a65ac04150", "notes": [], "params": { "labwareIds": [ @@ -45660,7 +45900,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d56e0aef66617b0644da2e8c1f8ef8b", + "key": "d936f0d1d2b99c2e7427edaaa2d1fe12", "notes": [], "params": { "labwareId": "UUID", @@ -45693,7 +45933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21e9aead356a6bec8d03654f22965b70", + "key": "0181e0d615900ca856e10cb7fe10185d", "notes": [], "params": { "forceDirect": false, @@ -45725,7 +45965,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "76d4e349c3b98779664972ced72977d1", + "key": "abd779935efe31b102d72c64bd33f270", "notes": [], "params": { "pipetteId": "UUID", @@ -45741,7 +45981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af3a9a6f86098c94898985e249251f53", + "key": "8cdd723491d7aec5241d6d1166493f1f", "notes": [], "params": { "pipetteId": "UUID" @@ -45755,7 +45995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e330c9bd91980789d64456aefed0812", + "key": "d879d03bd8527b42351e0f7183901f01", "notes": [], "params": { "forceDirect": false, @@ -45787,7 +46027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10083bb9888d2dbf9b27b273a26d9567", + "key": "4b55b83dc5cab920dfbb96c406216263", "notes": [], "params": { "forceDirect": true, @@ -45820,7 +46060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4467d03c9c4f81d6a97931b70d40df6b", + "key": "afb5bc5f9087ca89bde0bec4ad3d2022", "notes": [], "params": { "correctionVolume": -0.3725, @@ -45839,7 +46079,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "51c8aa1b8d6219596a459205369c03a3", + "key": "e618ed480b7179db0999ead7cd8f093c", "notes": [], "params": { "seconds": 0.2 @@ -45853,7 +46093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8897b7374ed18a9ad554e045d70997de", + "key": "3c562c80268e63c13f23005528eb005a", "notes": [], "params": { "forceDirect": true, @@ -45886,7 +46126,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c7c6d4efbb3a86778e6dae637ce79ce", + "key": "f75f3408a5e8e3b84a8eba5a25aa2b44", "notes": [], "params": { "seconds": 0.5 @@ -45900,7 +46140,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df4d6d472225d900ce3f61a014247a0a", + "key": "b3b4b64722877cefa7bf0c0be29b6753", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -45919,7 +46159,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a0c7be756a4f8a93eb01f7f704402af", + "key": "d7b3730101ea129ca46c049e0c5690c3", "notes": [], "params": { "seconds": 0.2 @@ -45933,7 +46173,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "256b5d9e7b88fd20a95549df07b74bde", + "key": "0a4fc483f518ccd89ad69e087b090bf0", "notes": [], "params": { "forceDirect": false, @@ -45965,7 +46205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ee0633f87ebfb2e9beb4e784f90b24a", + "key": "83f7d32417e1a4aee9caa6fe95f5b184", "notes": [], "params": { "correctionVolume": -0.3725, @@ -45985,7 +46225,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a74f1018f2bcfa9d02544d865ba89cb8", + "key": "532fbd21e8310f22161dde46bc6776ef", "notes": [], "params": { "seconds": 0.2 @@ -45999,7 +46239,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "902ee78cb6279a8997f6eee6c79d6c33", + "key": "0c536e81b9ab59537fe326f19f12c47f", "notes": [], "params": { "forceDirect": true, @@ -46032,7 +46272,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "985df29e110dd4e422f5d5a0bcc293fb", + "key": "1109bad0f020f874974ce5dbda0e0d69", "notes": [], "params": { "correctionVolume": 0.0, @@ -46052,7 +46292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b024e70b760e2bb9701c55a7a52f87f9", + "key": "676fd8ed94d072c3ce3c5bd6c7b6a9cb", "notes": [], "params": { "seconds": 0.2 @@ -46066,7 +46306,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "468f5432ebc6f150f5dcdbd1850fc595", + "key": "c20661062bc63257985093ba43b68e41", "notes": [], "params": { "forceDirect": true, @@ -46099,7 +46339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "82f4241dc72cc013c11b60fc352108e2", + "key": "acfcfd406169fbfd6fb8d3b179a95614", "notes": [], "params": { "seconds": 0.5 @@ -46113,7 +46353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbd450374af22d6a69845676f370bdcb", + "key": "24c3db619e5dea1265904f45d8d42626", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -46132,7 +46372,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d06b521e8e15e721c90b76e5a80a384", + "key": "c0be7f62d4de2501c594a092b27bc0bb", "notes": [], "params": { "seconds": 0.2 @@ -46146,7 +46386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab3c93ffe92ecbefbbad42cd333f0e4d", + "key": "ac4c36af5900025d7dd3b2d1eb79eff1", "notes": [], "params": { "forceDirect": false, @@ -46178,7 +46418,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d42fdfcc94062690dd2ec857b7ab1dd9", + "key": "2b92f3cff40315f113d5ac7111a673fa", "notes": [], "params": { "correctionVolume": 0.0, @@ -46198,7 +46438,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98b2bea160fd48f956e564ade4314622", + "key": "4757b099df8f2afb117986d362a2f496", "notes": [], "params": { "seconds": 0.2 @@ -46212,7 +46452,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8e001ed1ea430c578aba092a0f43b50", + "key": "562383050b0606d9ecde0e2f62639508", "notes": [], "params": { "pipetteId": "UUID", @@ -46228,7 +46468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be1e9bd393b8ad6412e12c0134845b39", + "key": "56a7931f8c9d08ad6e6f56ec1c709436", "notes": [], "params": { "pipetteId": "UUID" @@ -46242,7 +46482,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b11dea8ee7aec0f1b9829de11373085a", + "key": "2ea4d558d2cb13b4cbb7cdbc59f1a3f3", "notes": [], "params": { "forceDirect": false, @@ -46274,7 +46514,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aebd0a2c3bae4a542bd844ef51ed1c81", + "key": "8c3ec93833da589fb410a6962a0accf0", "notes": [], "params": { "forceDirect": true, @@ -46307,7 +46547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2ba34da716c6480e56e5a1778372c92", + "key": "66f50d402f68c61008263df64fb23cb6", "notes": [], "params": { "correctionVolume": -0.3725, @@ -46326,7 +46566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c6158da38714aeeba5d7a0e0a932494", + "key": "5f15df32c25c20742773589fa53bd8b6", "notes": [], "params": { "seconds": 0.2 @@ -46340,7 +46580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "195dbf604a9f9f2bcb9335fc912feaea", + "key": "2e17e6f89385cfe86e230cb41bd6792e", "notes": [], "params": { "forceDirect": true, @@ -46373,7 +46613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18ae8b10f6ef697e942447fe3bec53c2", + "key": "0bf1440473e314587da6063dbfbee726", "notes": [], "params": { "seconds": 0.5 @@ -46387,7 +46627,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "512271b2b1d4e226cc6d111a7d37eb98", + "key": "0785c42e898e7a4b08e641ec9e93308a", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -46406,7 +46646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "016daf641721b5de761be384e0ff003e", + "key": "e97fdb14963efa5759eae23126f2666d", "notes": [], "params": { "seconds": 0.2 @@ -46420,7 +46660,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92e80547cba71ac1ccd852b69d2881d6", + "key": "4dad7948194d94d91b6aff1d3377848a", "notes": [], "params": { "forceDirect": false, @@ -46452,7 +46692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ebdafe4b99f29e33b494f987ef9c3dde", + "key": "dcc8847b883848f30001b9f0bd5a41ff", "notes": [], "params": { "correctionVolume": -0.3725, @@ -46472,7 +46712,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa3e77c3eefe58e85121bc70ff734f83", + "key": "f99997836c8140f6cc0f27c488339d6f", "notes": [], "params": { "seconds": 0.2 @@ -46486,7 +46726,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f03b5569312062c70f1bd44caca99f2", + "key": "13d0869f906ce248138df3a04d3bb68d", "notes": [], "params": { "forceDirect": true, @@ -46519,7 +46759,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30d0c7a2da54266b2bb14bd9a5c45746", + "key": "6db5c92ada1184c1f5bf49e2c5f35146", "notes": [], "params": { "correctionVolume": 0.0, @@ -46539,7 +46779,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80d9afd336c01cfa3fd82f70d4e729ec", + "key": "d6001c36f742bc75ea7ebf06f5dd343b", "notes": [], "params": { "seconds": 0.2 @@ -46553,7 +46793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77638d4a8057174b200f381fc6f27120", + "key": "4b9dfed2c5be2b81515d1c9214192ab4", "notes": [], "params": { "forceDirect": true, @@ -46586,7 +46826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef7a31b70e673a6eb6589eb6d479b9a8", + "key": "c1213a03b3038a3fb6a2351f95fb792e", "notes": [], "params": { "seconds": 0.5 @@ -46600,7 +46840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2c857c842c531a97e09e150a7ca4ce1", + "key": "5804b2b1c45d146c268247b60d55343b", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -46619,7 +46859,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a5598bfde59c3bd4b6a5ce0c4aa253e", + "key": "e23f3fbb9cd1048538b99b34f7daf989", "notes": [], "params": { "seconds": 0.2 @@ -46633,7 +46873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9609616fefc5323cb0cbb27f951c96e", + "key": "9a964cad5b594d7957ca50c32dcfc1ad", "notes": [], "params": { "forceDirect": false, @@ -46665,7 +46905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cbe85fc6560a765867348d7806f8526", + "key": "1bdf6c79c273fa7f2ce45752b13cecc2", "notes": [], "params": { "correctionVolume": 0.0, @@ -46685,7 +46925,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55817319e3b303a6e42902e148b1b941", + "key": "3a15fd08ef2e52d0dc84e905e702eaae", "notes": [], "params": { "seconds": 0.2 @@ -46699,7 +46939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "559ae52311b67c168ff266bc4ebec76f", + "key": "a7bad7c0be3287c3abb110c0a2d19b89", "notes": [], "params": { "pipetteId": "UUID", @@ -46715,7 +46955,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d313242ce0fd1301a62f96620930dfb", + "key": "debe507970827c253a7c8a70001b9a52", "notes": [], "params": { "pipetteId": "UUID" @@ -46729,7 +46969,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f02d18b8ad52934f297da66e4c017ea", + "key": "319b81e35dc9d2dc0612360f07b6b8ce", "notes": [], "params": { "forceDirect": false, @@ -46761,7 +47001,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a93874f8b9e761c0b0ad8db24cf7923", + "key": "404441fee1590fef232be7bbc5ae3249", "notes": [], "params": { "forceDirect": true, @@ -46794,7 +47034,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b25dd343d77040c79f529329791def3a", + "key": "a57593c7d57299555a989235bde5afe6", "notes": [], "params": { "correctionVolume": -0.3725, @@ -46813,7 +47053,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8c7fd6b7b1c507fec8618cff644cb98", + "key": "7e4bd296e42649a3f35050b1e115387e", "notes": [], "params": { "seconds": 0.2 @@ -46827,7 +47067,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "936d4a5f28812733c93810f3ed5b5632", + "key": "08e3527e59226d536e87b223932a9682", "notes": [], "params": { "forceDirect": true, @@ -46860,7 +47100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8dc5e6f67c73aa21bc2369d346c5eb26", + "key": "55d9bba614bce5f7d12e398fef3c71c9", "notes": [], "params": { "seconds": 0.5 @@ -46874,7 +47114,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d9f625efdb4c4b2e996eb713455b589", + "key": "6a1be4997d75ad8a454f9710c28697e7", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -46893,7 +47133,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b70a96a1d9656946b872fbfd9fb1157", + "key": "0e0e42adeeb924b3c5ea5917b10f3dee", "notes": [], "params": { "seconds": 0.2 @@ -46907,7 +47147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f41e187ef9c7ae8555d49bf97e844063", + "key": "f2e2f5afa13817a607b63a5b77e724c9", "notes": [], "params": { "forceDirect": false, @@ -46939,7 +47179,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "09da1223c0f3bd4450abb32b296f2fdc", + "key": "81c133b6d13dc0e5c879ac65f36d2df3", "notes": [], "params": { "correctionVolume": -0.3725, @@ -46959,7 +47199,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b773f8414c35e16118563bf4400ea15", + "key": "ef4bd95d3259bc4af589ceb8ee3e5d6c", "notes": [], "params": { "seconds": 0.2 @@ -46973,7 +47213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6b5ce75a08487e76da7894aaef1c93b", + "key": "e05149038f3b415f6e45bff98e9b12b3", "notes": [], "params": { "forceDirect": true, @@ -47006,7 +47246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e469c1f24b4b036fbfdf55786da9b8e", + "key": "90643741dab16b32a28f3ec5f3cbdf77", "notes": [], "params": { "correctionVolume": 0.0, @@ -47026,7 +47266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b29d19575bfd7a6b576daa27211fab08", + "key": "75f2cd91cf22ce81088482e36fc205c4", "notes": [], "params": { "seconds": 0.2 @@ -47040,7 +47280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c666e23b945edd2e125ae87b6455397d", + "key": "32a6c21ac7875ce1b162a830f2d7f8c9", "notes": [], "params": { "forceDirect": true, @@ -47073,7 +47313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ab994d8f47f531290b44fdd02af324f", + "key": "eac0e49c54480e8a09710eaa222af9ff", "notes": [], "params": { "seconds": 0.5 @@ -47087,7 +47327,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "700ceaf5a29fcb18e85fda4249200c56", + "key": "587fe32dbd0d96a89545ed61abffc41f", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -47106,7 +47346,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32116f6af74164fa3df96c5569d03dd1", + "key": "f2c64f09ebef8551ddbb3845ada06ecf", "notes": [], "params": { "seconds": 0.2 @@ -47120,7 +47360,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c28415516795183dc1198fd32e1432a4", + "key": "be87b0b438d6c96d3aa179fc4c7f6fb1", "notes": [], "params": { "forceDirect": false, @@ -47152,7 +47392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29a43bf23c5c37829bfa17a5cc853a7e", + "key": "1088cfd6afb69fc8530fc9ec6796b903", "notes": [], "params": { "correctionVolume": 0.0, @@ -47172,7 +47412,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4dc08d5a300d2ba9f7f56fd59d58d5c", + "key": "919017052c801e8dcccfcd30df2c6994", "notes": [], "params": { "seconds": 0.2 @@ -47186,7 +47426,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "276fa6a872125e0720f1539fd92a52c9", + "key": "957076a4591be32492b23121aca8c94b", "notes": [], "params": { "pipetteId": "UUID", @@ -47202,7 +47442,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d05810a61e5d6e7f9225637bee51e5dc", + "key": "77b9fe0156b923ccffa71e7ce0f26ff0", "notes": [], "params": { "pipetteId": "UUID" @@ -47216,7 +47456,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5aebc4636bfd5f845ed5d28beb1dd4c7", + "key": "58ebe8549282655d4c5f561ecc9e13af", "notes": [], "params": { "forceDirect": false, @@ -47248,7 +47488,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "551cc60349fe96ef0e1d038940428048", + "key": "f238bb1afd293f9eeab8ed409bf1c85a", "notes": [], "params": { "forceDirect": true, @@ -47281,7 +47521,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58e341b4b7c897ac1908d46f720e412f", + "key": "31d62c7c3a14dbd6adc852968a3a19ad", "notes": [], "params": { "correctionVolume": -0.3725, @@ -47300,7 +47540,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc45abda4a72321e00738789c8e01904", + "key": "89d4057d3d5567daf752e8ed281878cd", "notes": [], "params": { "seconds": 0.2 @@ -47314,7 +47554,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e41d1109c65a781eea7dc0b558d770a", + "key": "62dc5e82635db852ef7d46e756dac4c6", "notes": [], "params": { "forceDirect": true, @@ -47347,7 +47587,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7fcbb2258176e725c726170695f31315", + "key": "0e368793247abbc3b350d6b21fc49295", "notes": [], "params": { "seconds": 0.5 @@ -47361,7 +47601,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44d01262a3e0d1b3c2828ab08ffa1a2c", + "key": "150e5258ee3b98572bf772f409cc673c", "notes": [], "params": { "correctionVolume": -0.41000000000000003, @@ -47380,7 +47620,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f6235f2fb512b88bad3eceeed71f9a5", + "key": "956e0599ef2f7eac3265b78f9a5a6d20", "notes": [], "params": { "seconds": 0.2 @@ -47394,7 +47634,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "550e40384fc783ad78b495593585d321", + "key": "6fd0c7619d065809b20f7b3a2afad5a3", "notes": [], "params": { "forceDirect": false, @@ -47426,7 +47666,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2c6e0b5ae8ede72520d5504a2d989d2", + "key": "92b878d4fb5f7c3cfb09312b178ca5b3", "notes": [], "params": { "correctionVolume": -0.3725, @@ -47446,7 +47686,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "721dd55a9ed25371eedc15fec86cd4b9", + "key": "da8223558759897c4b3d3287a6a2c6a9", "notes": [], "params": { "seconds": 0.2 @@ -47460,7 +47700,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb8ad8d56b9e513ae277ad528738d07a", + "key": "1efb3d83ad2ae6a9502a3c9073a9b228", "notes": [], "params": { "forceDirect": true, @@ -47493,7 +47733,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31ce06154f432827ec2115649bc8e963", + "key": "00b4b698e3402e34a5e9f8d3c544ed71", "notes": [], "params": { "correctionVolume": 0.0, @@ -47513,7 +47753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c9c78dbf4afb12b7371841bcc928199", + "key": "64d49bf8d98c63442fdb4cf67e7cb8f4", "notes": [], "params": { "seconds": 0.2 @@ -47527,7 +47767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e1f4bccce1dc7be9aa862a672d30307", + "key": "74176bb0dfb34a4a98b03a03c9c6daa5", "notes": [], "params": { "forceDirect": true, @@ -47560,7 +47800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74c83515b3f159e54bd43a9114a99556", + "key": "19de4f128c52c0f7ba0aa55b00afb14d", "notes": [], "params": { "seconds": 0.5 @@ -47574,7 +47814,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e076ff067f76a98c1cc217af685e60e2", + "key": "75ff3a8b2bae5807e28083022d419ecc", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -47593,7 +47833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58cced42321ed6e8abbbe695bfa7dc7d", + "key": "82b8a6b54ce0227ab1091b9ca43176d3", "notes": [], "params": { "seconds": 0.2 @@ -47607,7 +47847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a23256d21796edce8dbf82590d7c0945", + "key": "2c6d2b4d5eb7afebbdcf92b4ad71989f", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -47636,7 +47876,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "954f65a629bcdeb5ced003942a8c529c", + "key": "0b7b462a7a163a0bb65048eebe5040d2", "notes": [], "params": { "homeAfter": false, @@ -47651,7 +47891,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "176e6c8943caf15775283e829d5ffb12", + "key": "8d80b881c01c9ada6aecb00444820deb", "notes": [], "params": { "liquidClassRecord": { @@ -48026,7 +48266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b01fcc93679ae42e18eb8da1052dad90", + "key": "d46f3fa6b05cbfb6163496ebee8307f0", "notes": [], "params": { "labwareIds": [ @@ -48048,7 +48288,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "efd92efd8594bb8e5de9034072ff9833", + "key": "05eff745126ed3666ec5699e23def05b", "notes": [], "params": { "labwareId": "UUID", @@ -48081,7 +48321,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "40d9f6c4d3e160c0dc60942cc351da15", + "key": "227416ca8f93559bd74126a6b05b89f0", "notes": [], "params": { "forceDirect": false, @@ -48113,7 +48353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81bf33969665d666456a2235c2f146d1", + "key": "0d3050a6e517463740e5d82b8f787595", "notes": [], "params": { "pipetteId": "UUID", @@ -48129,7 +48369,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edf52bbd3ffe957659e38cfc571a8d04", + "key": "fa76fe9d2edd55b57f1c61b356b53181", "notes": [], "params": { "pipetteId": "UUID" @@ -48143,7 +48383,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eaa0eecd9f3cfceadf37b934ecff0085", + "key": "0f3ce72741b512362ea10eb88672e56d", "notes": [], "params": { "forceDirect": false, @@ -48175,7 +48415,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dda0b6cf3e04592f536413005d7dc82", + "key": "7c6d0c39fef71041b6a098138e5710c9", "notes": [], "params": { "forceDirect": true, @@ -48208,7 +48448,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9183b62a5c0d52d2766ad6beae4fc4d7", + "key": "de65d91ad8f550be9401803a78605d5c", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -48227,7 +48467,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "201308d6e5900885b0742a605755fbff", + "key": "f8b5f9c1c5a059f807471e34634fde5a", "notes": [], "params": { "seconds": 1.0 @@ -48241,7 +48481,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "080db38e95a9991c6d5478ddc1a136a2", + "key": "7987689aa4685a3fba9e34a50af955b6", "notes": [], "params": { "forceDirect": true, @@ -48274,7 +48514,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52bf29969d278452a6914ea5039fecfb", + "key": "c3cdb5fcb1fbe1e8892b5dbe9a3a2270", "notes": [], "params": { "forceDirect": false, @@ -48306,7 +48546,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3646795db81da4e627c8685b0399ed5", + "key": "2af8eaabd1ad4af6ba98504515d881f7", "notes": [], "params": { "forceDirect": true, @@ -48339,7 +48579,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b5c6f80c48f993c32c54eccc8a8636f", + "key": "f8d78ed73e9fbfcd0fd1b144bf8e8461", "notes": [], "params": { "correctionVolume": 0.0, @@ -48359,7 +48599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b970b7232651d4709f9467405d8ad8a9", + "key": "e20488ef9afcdc40012a97804d1f8337", "notes": [], "params": { "seconds": 0.5 @@ -48373,7 +48613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7111e3e060a7ada366fc7a54f90460ec", + "key": "5607bebd8d7b1c727e9b7eaca5e393e9", "notes": [], "params": { "forceDirect": true, @@ -48406,7 +48646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d04cbc922d9e939b25665a953d3d4fb7", + "key": "388f6bcc1ade56429a8a97acc0c2c6bd", "notes": [], "params": { "pipetteId": "UUID" @@ -48420,7 +48660,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "740783aba03df1993bb12a2241343d56", + "key": "0f02d40314f15b4f5ae50d618e9540b9", "notes": [], "params": { "forceDirect": false, @@ -48452,7 +48692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d2465c3217cb0f93adbf1fe358c5e84", + "key": "7c9cfc8c1ef759c66f5d2b4982e3ab81", "notes": [], "params": { "pipetteId": "UUID", @@ -48468,7 +48708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30eee71c8d623fcace0429bb21095f64", + "key": "e9e28cdba885673b38bab4ffd038a2c4", "notes": [], "params": { "pipetteId": "UUID" @@ -48482,7 +48722,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60e01de420b5836759f30498593a8e88", + "key": "64cbb698e7d0d38cff290c9fcccf6cd4", "notes": [], "params": { "forceDirect": false, @@ -48514,7 +48754,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f665ee132b4ab2736fbdc134f1c0bf2", + "key": "2f682b27286e838056e6a4b10b65a05c", "notes": [], "params": { "forceDirect": true, @@ -48547,7 +48787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6dcf1700d780d9b179d346e8650f154d", + "key": "a0e4ebfc96df11ca3e1a8ab5a9596262", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -48566,7 +48806,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0e8179ad8d52dce8cb4da3371162e2a", + "key": "42961a5a8acd3034077693492b8d20f9", "notes": [], "params": { "seconds": 1.0 @@ -48580,7 +48820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c533430f7eced518c7250601a052319e", + "key": "7c7bbc8e9e21eae0a370b2e8fb6ecc9a", "notes": [], "params": { "forceDirect": true, @@ -48613,7 +48853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55f6245ae446a564a2ca4ca51f7d085d", + "key": "4f5fc3d7c597a8baee18f1becd92c18f", "notes": [], "params": { "forceDirect": false, @@ -48645,7 +48885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca0b99c3a7745c58893dccd88ea5ff2b", + "key": "5539e5ba9468e30201ab4f1e7eca9389", "notes": [], "params": { "forceDirect": true, @@ -48678,7 +48918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10ee64352c44b220a7e441293f86529f", + "key": "c9d246ef170cf67a9fe73cc58acaa766", "notes": [], "params": { "correctionVolume": 0.0, @@ -48698,7 +48938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5d28d92af4ac3c85d771359c406a7f9", + "key": "4dc67e814c2bec644ea57bd1465afddd", "notes": [], "params": { "seconds": 0.5 @@ -48712,7 +48952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d2cf5c07aecf254e32c274a45d747fa", + "key": "3f015ec55306a0a72e5736dfa90a3f63", "notes": [], "params": { "forceDirect": true, @@ -48745,7 +48985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4fc649436f42c25fdd41a1b94d7f7d08", + "key": "7b1fd24f38362f0555cb8600a50a9e75", "notes": [], "params": { "pipetteId": "UUID" @@ -48759,7 +48999,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "041b97054e19e996ded18743f53b3673", + "key": "db3575581b958827e98e3a7d0ea11521", "notes": [], "params": { "forceDirect": false, @@ -48791,7 +49031,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8ef6037a061cb8f2df5cb67c9eb5178", + "key": "0e1a387e27eed388373cf6c1ee819f6a", "notes": [], "params": { "pipetteId": "UUID", @@ -48807,7 +49047,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb21d289b6e2c955f2e549dc42f9d76e", + "key": "90e616abd698a63d6a58d8e794baa4a9", "notes": [], "params": { "pipetteId": "UUID" @@ -48821,7 +49061,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcbc0047af71e601639648fa6ab092f3", + "key": "0fc5b23fdb797bcb2880cb82d770392e", "notes": [], "params": { "forceDirect": false, @@ -48853,7 +49093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f639aa613a0a6c30a005f1edb4323518", + "key": "e8ebde0c4d25d92d16c1aa76a115d5c5", "notes": [], "params": { "forceDirect": true, @@ -48886,7 +49126,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85e8d3292e2f9f3217248d650a9cf3df", + "key": "c94e3fd662a4bf3c5e4342d813c2fe8a", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -48905,7 +49145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e12312893f24ff13fa9de3c540a5e5ee", + "key": "2274709c22991c6528ebe749d80686ad", "notes": [], "params": { "seconds": 1.0 @@ -48919,7 +49159,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3d050ed9788ee6978ffde1f5fcff677", + "key": "5189b9e586dd5896a3dbe8a136a212b0", "notes": [], "params": { "forceDirect": true, @@ -48952,7 +49192,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e154064686c53e93c528624edd3c7c8", + "key": "1d1113aed4ccc9001ae381fa7eb71b92", "notes": [], "params": { "forceDirect": false, @@ -48984,7 +49224,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d32eead39b7b98f6e8aa7c2bba924885", + "key": "f20875304457e0518e6de751ed478fb9", "notes": [], "params": { "forceDirect": true, @@ -49017,7 +49257,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "613c379132908e72149ecb85aa8cba6c", + "key": "d4bd431f5b88103008e56f3c9cae4bd1", "notes": [], "params": { "correctionVolume": 0.0, @@ -49037,7 +49277,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0e7307484bfebe03f9164c8088ec206", + "key": "170a966d08c39ad8ec82c2bb98a8eedc", "notes": [], "params": { "seconds": 0.5 @@ -49051,7 +49291,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfb20f9dbef9da00c2e4e622a65d4151", + "key": "683ac02afdce7da4e327445a34d0ff9d", "notes": [], "params": { "forceDirect": true, @@ -49084,7 +49324,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e959b6d53919aee836b5f33259d5117f", + "key": "0602cf3185301a38cb98643ca99401ab", "notes": [], "params": { "pipetteId": "UUID" @@ -49098,7 +49338,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11f29793a4f6f711426cbea0d9ca6e5f", + "key": "360c62d485aab2d8dfd699575d9a5e2b", "notes": [], "params": { "forceDirect": false, @@ -49130,7 +49370,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d7d17369660c719f9fe784fd630b925", + "key": "cf987e69d4a148e61a84959f9682a857", "notes": [], "params": { "pipetteId": "UUID", @@ -49146,7 +49386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c266670d5d94f5db41a7169cdf39909", + "key": "ae2883c3a8bdacfc2af73070f2490520", "notes": [], "params": { "pipetteId": "UUID" @@ -49160,7 +49400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd117678fbe76d43412b4d6c6b1ef3e4", + "key": "3a855375b64b8280a898d2af637af7d1", "notes": [], "params": { "forceDirect": false, @@ -49192,7 +49432,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba77e3108a89b05e678b25d29edaa903", + "key": "6104846623513d00eae76d819108a7c3", "notes": [], "params": { "forceDirect": true, @@ -49225,7 +49465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c6e16fec4ae61d3bf23035e672da6d95", + "key": "e5eafdc549ba4167e69046e8b62e19d5", "notes": [], "params": { "correctionVolume": -0.07250000000000004, @@ -49244,7 +49484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "253ed7313f470505685f91bea1a7fff2", + "key": "412d241b6b12017636368af7792c620d", "notes": [], "params": { "seconds": 1.0 @@ -49258,7 +49498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0d1715aed2f6572242068838d116bb2", + "key": "c3e98adb0f6a5c482cc83ff20e650788", "notes": [], "params": { "forceDirect": true, @@ -49291,7 +49531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6a0f1f0ca1cd4aabaf7efc894b05084", + "key": "34727e49f833f062deefbbb11fa1b363", "notes": [], "params": { "forceDirect": false, @@ -49323,7 +49563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86fac745720ca979af0edbf444f13bb9", + "key": "d1087a3b165f469f7ccdf9d7ba238379", "notes": [], "params": { "forceDirect": true, @@ -49356,7 +49596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92e4a7b4ce085435b74a536cdab9eecb", + "key": "0a0021375461deaf6d063d121c8f267f", "notes": [], "params": { "correctionVolume": 0.0, @@ -49376,7 +49616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e94225b8cf79e24933b9eb922223290", + "key": "cf04e99a8484a0e2083c205b8073a608", "notes": [], "params": { "seconds": 0.5 @@ -49390,7 +49630,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8284f61c6280cdae72bb43dc31812d53", + "key": "a766b0bd23f60c375a51fbfe01df63d3", "notes": [], "params": { "forceDirect": true, @@ -49423,7 +49663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93099296c7608c9646ef521792baaffb", + "key": "1f201d30f00eb40bc330983a74edd49e", "notes": [], "params": { "pipetteId": "UUID" @@ -49437,7 +49677,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea1bb6634750d4e58d8a84b214458a20", + "key": "4c6ea0ee23a45640f8ca785b16529ea0", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -49466,7 +49706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72c75f8681209618093cbe4bdffba4a8", + "key": "bc2bfb8b31b01a1e13060c49deda1853", "notes": [], "params": { "homeAfter": false, @@ -49481,7 +49721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b74c059506b81fec9ac7bdc75683637", + "key": "2418172ecdf1fc58d1a02f452f319feb", "notes": [], "params": { "liquidClassRecord": { @@ -49535,11 +49775,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -49759,7 +49999,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -49769,16 +50009,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -49840,7 +50080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b40a2a3b9002b1dfca369daf6c8e8c8a", + "key": "e78fde2854ba1b2dfc6cae13e1d47125", "notes": [], "params": { "labwareIds": [ @@ -49862,7 +50102,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1bd3eb585a82b12004cf9f1b404b8ed7", + "key": "23a349ba96a19c277afd769411db5c6b", "notes": [], "params": { "labwareId": "UUID", @@ -49895,7 +50135,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1e3aa67323375355790702f6a7925b7", + "key": "222afba46b90066c6a0bf071c6e94e19", "notes": [], "params": { "forceDirect": false, @@ -49927,7 +50167,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "484a9285220be26fc0fac3a22f23cded", + "key": "f1d1e8c9b44a2d592a1b017774b5826d", "notes": [], "params": { "pipetteId": "UUID", @@ -49943,7 +50183,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3cb40c1dd69a4f7cf15370a8dd1cc45f", + "key": "3a010be1ba867842226f0bba27144336", "notes": [], "params": { "pipetteId": "UUID" @@ -49957,7 +50197,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b21f552b35c908117881348b44fb6fe0", + "key": "095aeb6217c90ac68ca7baf272f6840a", "notes": [], "params": { "forceDirect": false, @@ -49989,7 +50229,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28556fcb3bf55f87e2028276225e8e46", + "key": "c4dd2c68ff47edb75ab6498416926844", "notes": [], "params": { "forceDirect": true, @@ -50022,7 +50262,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e7ad6c53e3d7061e0b819921a410a7b", + "key": "3a94dda82ba83b9996d1a0d97cfa2043", "notes": [], "params": { "correctionVolume": 0.0, @@ -50041,7 +50281,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24bb16fec20b10290652452b6b809e69", + "key": "283ff7eb36e659f92080a9af27b85c3b", "notes": [], "params": { "seconds": 0.5 @@ -50055,7 +50295,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d18085c0201ad6f98886d9bf88f79191", + "key": "50942b75afc3814e12fbeace1d1fe675", "notes": [], "params": { "forceDirect": true, @@ -50088,16 +50328,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1192209e4ae2ac98c237856f59bc0957", + "key": "2406ef60fefa00dd0051ea88a39a33f4", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50107,7 +50347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a731e9efedec02385a3f9e542ef06abe", + "key": "66debbf0047a6c0820da3b767aa5f641", "notes": [], "params": { "seconds": 0.5 @@ -50121,7 +50361,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "323ed29e55f0ad6797b6379533bf2529", + "key": "8bd98a4dc700f418e4d04cab50086bcf", "notes": [], "params": { "forceDirect": false, @@ -50153,17 +50393,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7669d00049c53222b643b8f34e4faf0", + "key": "e9c225fc0b1aed7b2d30523ef521b1c3", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50173,7 +50413,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0481105e34eea2923031d6ace559f131", + "key": "466234918b9bd06cc89e6943303eba4d", "notes": [], "params": { "forceDirect": true, @@ -50206,13 +50446,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bde7cabfc128191aa54ba1f2ece9533e", + "key": "25314e402ca3bd4ef1988ed4d1129939", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -50226,7 +50466,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "578a3d881809541afe8ac165a76dca49", + "key": "5e2e7d63149bde8a1d74fc8d518241a0", "notes": [], "params": { "forceDirect": true, @@ -50254,12 +50494,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdcaef143bc43b02dab2eab536f76a7f", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b2bce209eef8cd0329fb287d617e673", + "key": "8f990c507e12638ee74493672f7cd383", "notes": [], "params": { "pipetteId": "UUID" @@ -50273,16 +50528,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fce54f112d358bb4b355832ce7c9b3b5", + "key": "e8712413b76268ecf936e3aa45f6e852", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50292,7 +50547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3bf846c44fec09ed88fa6ecfdda03e11", + "key": "e93516e909c1da5e0851264a0d31f333", "notes": [], "params": { "seconds": 0.5 @@ -50306,7 +50561,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6d015372d5f60b4b3bbe828fabb7f3e", + "key": "6c621bd61bf4ce2504aab25f283e5125", "notes": [], "params": { "forceDirect": false, @@ -50338,17 +50593,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b36f3d23d1e77cc3ffa9927bdd3388f", + "key": "e004bfe6455e34b5c2afcf41a924a960", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50358,7 +50613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ac794f73341132a80dc67f371a930a0", + "key": "2c981247b5c934771c1b71ece74133bb", "notes": [], "params": { "pipetteId": "UUID", @@ -50374,7 +50629,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81a525a20eabd096232b8e121ddaf8f9", + "key": "93387918674961faf1c95c16642db096", "notes": [], "params": { "pipetteId": "UUID" @@ -50388,7 +50643,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32f481b7b3563cccdd18c4d92f4ab6e6", + "key": "72866bdffca777c4af01444e050ce207", "notes": [], "params": { "forceDirect": false, @@ -50420,7 +50675,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2f2b221c76ea5a78d76e77ad0176185", + "key": "bd6d4168dd29fd13d9a978d382b913f9", "notes": [], "params": { "forceDirect": true, @@ -50453,7 +50708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e407dc6a63664d8ae4c6371f425570d7", + "key": "d892e7f43b2ada47f95cc3082cf6023d", "notes": [], "params": { "correctionVolume": 0.0, @@ -50472,7 +50727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "422df93c3c5471f6b01c2561faaa2c40", + "key": "de6fef9d2555e364ac4e1e678006fad2", "notes": [], "params": { "seconds": 0.5 @@ -50486,7 +50741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c70fc8ecfc00cdefe92a8e7d33446fe", + "key": "c1707747f477d194c45010622b09bcfe", "notes": [], "params": { "forceDirect": true, @@ -50519,16 +50774,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1010300152fb451f85748b40f7ed9e22", + "key": "0eeb33f2801cb6892e682d73a8d40602", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50538,7 +50793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e82ea630460b8900a82d3174a38cba57", + "key": "d7cffc6a32e2d5028aac5714e1b0590f", "notes": [], "params": { "seconds": 0.5 @@ -50552,7 +50807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb41de812b23d7df6e1b70fa32a7daa4", + "key": "6b034faa25a2a1cdac04154f808309f1", "notes": [], "params": { "forceDirect": false, @@ -50584,17 +50839,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b6c45b2922743bdd3f803aa6de513d4", + "key": "8cfe2288131527a78bc46a0324606b17", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50604,7 +50859,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae4fc0a7e9e4d6e4c8fb89267f976dbe", + "key": "69ecaa898cf8a603f844118de64a74dd", "notes": [], "params": { "forceDirect": true, @@ -50637,13 +50892,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c324e5574dccfe4f86bb3e559dd4ff3a", + "key": "6050d16d9867153a5f62b1dae54b5929", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -50657,7 +50912,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8b7e335f11f3821c4bb27d5b01e6dc23", + "key": "ce69eb6f243c6d892e9d7f6a74bf02df", "notes": [], "params": { "forceDirect": true, @@ -50685,12 +50940,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34d1014119b60a53235cf49fdd6c0921", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4e8e54fd366be9296f088ff45a7f0a0", + "key": "efc417678c7c17da3db1346e2e71d111", "notes": [], "params": { "pipetteId": "UUID" @@ -50704,16 +50974,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c14171039692a6a75896c88d9217b0ad", + "key": "1f5012aa7e04b83a2a9c49e8c1928e85", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50723,7 +50993,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e168084dca12dec9c338a53fbebeb4eb", + "key": "4edb0326f0d1896ff5e9607eff0d2399", "notes": [], "params": { "seconds": 0.5 @@ -50737,7 +51007,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "51bf4c2a87ec558b24f24fa9da5d963e", + "key": "4914c49ea53e9962c45ef37bbc5b54fb", "notes": [], "params": { "forceDirect": false, @@ -50769,17 +51039,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d915a06e0e5e3f0021bea9212666948", + "key": "7a5cca713307053290e59d5b830a68ef", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50789,7 +51059,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "482dd9e054354f2266c68359c1d86306", + "key": "88749aa59f3d97d9928c3b4081abc2fb", "notes": [], "params": { "pipetteId": "UUID", @@ -50805,7 +51075,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb18d46e7d84465abb5d3c2feddb9aca", + "key": "37f0b55fdbc88481c0a5388105be36d1", "notes": [], "params": { "pipetteId": "UUID" @@ -50819,7 +51089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6752a9f9c6c42a71c33931595edfff6", + "key": "d941b9356892e7dbb9a029e9d502f7fd", "notes": [], "params": { "forceDirect": false, @@ -50851,7 +51121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab82da39b9ee8f518971c0ce6d6e669d", + "key": "5f7461b21fc742ecbd18faa7f2039569", "notes": [], "params": { "forceDirect": true, @@ -50884,7 +51154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a508a2ad174f9f4604e0bb762eccde8", + "key": "bcb2133da41ce4d464871af3de616901", "notes": [], "params": { "correctionVolume": 0.0, @@ -50903,7 +51173,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2b1a35ed1465108b9ec7003c006b5694", + "key": "8c2fa192d23d9730e2d38a60d5afe2c4", "notes": [], "params": { "seconds": 0.5 @@ -50917,7 +51187,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e66f10ceed143d9e8c67053917bc7939", + "key": "adc3da77575d09e4e9a8f83741d709e2", "notes": [], "params": { "forceDirect": true, @@ -50950,16 +51220,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a178b45909e33b5203cecc3371c3dc5a", + "key": "9f6fed1ceedecd1160844b4712b6bc33", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -50969,7 +51239,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f57e0166db69621ad594ea9aee903e7c", + "key": "1c1200b2704beb14217ce6c3d7736fa5", "notes": [], "params": { "seconds": 0.5 @@ -50983,7 +51253,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edf599d21c645eac22423023a2707d8a", + "key": "d7d6cbe2c0f29fb1bdff892ae1bacc59", "notes": [], "params": { "forceDirect": false, @@ -51015,17 +51285,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4de9beaaeea54900288b53a5b0c1406a", + "key": "0e29df265b161ed425fc84bfe1f3a1d4", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51035,7 +51305,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2177c2be3873dd483b0ef17cfb124dde", + "key": "8191280fd7568b5ef84295cbbb122fcf", "notes": [], "params": { "forceDirect": true, @@ -51068,13 +51338,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "579b19e859ffa3b96e0b3bb6fcf21a6b", + "key": "8b07faf9f44f81ca5e51136e74610c08", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -51088,7 +51358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7fc2792632d34180a81787df3fd251fd", + "key": "9b1dcbaf9cef212565c66385e2213d44", "notes": [], "params": { "forceDirect": true, @@ -51116,12 +51386,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e61f3dd77e5b9254d997e33ed7587823", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1587786171c2b982b3ce3c9cbc9b9818", + "key": "b9e3ea49cfef61ab292e20c872f5bbcc", "notes": [], "params": { "pipetteId": "UUID" @@ -51135,16 +51420,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e205714de85c2ae9710d4057d3c2d198", + "key": "d5dae629fbde944ecbb151b5a9ecb3f9", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51154,7 +51439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e27da55226068ee1ce4818ca37d27d1", + "key": "f4dfbfc6b92ccb97c15e30442ff0c9e8", "notes": [], "params": { "seconds": 0.5 @@ -51168,7 +51453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83dd401567be1c6c9b867d8cfa9a3d28", + "key": "4d39c33c54009c1abe64f99f102e8b60", "notes": [], "params": { "forceDirect": false, @@ -51200,17 +51485,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "925338d8dd8b78a3fbb1ef465fe413f6", + "key": "8022f8ae74d9f0aff322f5824a05f870", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51220,7 +51505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1dc97b6ade93d0331e01644aedde005d", + "key": "19f57c722c48eefafd9e55aab4419a80", "notes": [], "params": { "pipetteId": "UUID", @@ -51236,7 +51521,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "235e1c0803d069eccced5bdbd42f59eb", + "key": "693fa48d00c50646657b2f0b5dcd8c27", "notes": [], "params": { "pipetteId": "UUID" @@ -51250,7 +51535,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cdc001d1c5a85b167e5f4ddba5afa9ea", + "key": "9700872f95cbae49b085ba73fe9b1867", "notes": [], "params": { "forceDirect": false, @@ -51282,7 +51567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50c9b3dabc56b073104ad4729eceb33c", + "key": "29c7517440551a0c9aa492e004cbe590", "notes": [], "params": { "forceDirect": true, @@ -51315,7 +51600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36104375fea63f17beac3f8aa53a5956", + "key": "b9e3c5442c9531cf0e9b64043f9702cd", "notes": [], "params": { "correctionVolume": 0.0, @@ -51334,7 +51619,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7ada49a8d8cf669346c07ce85a5882a", + "key": "1a8b2b1407911a77c91e56513c7177ab", "notes": [], "params": { "seconds": 0.5 @@ -51348,7 +51633,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ac55e5c96d9ffb8824c336e9b0f6fa0", + "key": "dfa233c4cd1364cf5882c585315e480e", "notes": [], "params": { "forceDirect": true, @@ -51381,16 +51666,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2b5db34c00c91e0d0e84d10fb72daff1", + "key": "6ba830e8b2bffa3b10b94ed298dae332", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51400,7 +51685,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4fb47e43622ffbf924b6c6ef5023de43", + "key": "2a04f295f105137108a0af40f55b37a0", "notes": [], "params": { "seconds": 0.5 @@ -51414,7 +51699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2030718f3e548dfc5c15ea6a97c292ee", + "key": "9243860d1b11350b452e087759acc48d", "notes": [], "params": { "forceDirect": false, @@ -51446,17 +51731,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73a5a36213b723522eba1a14c0a25c19", + "key": "fffc1d235c672d898e2ffee7fdb0921b", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51466,7 +51751,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbf82129ecb2ec330448284dbefca340", + "key": "e71138437e142c92030cfebff331d078", "notes": [], "params": { "forceDirect": true, @@ -51499,13 +51784,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62749cca65ac560322d2f5affb706948", + "key": "8a059c7e9d3d060b05ac585c91e9e9be", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 33.0 }, "result": { @@ -51519,7 +51804,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53212998aad95a75cba0ad55aafacbba", + "key": "27af7176cc99d4a418511e9759796686", "notes": [], "params": { "forceDirect": true, @@ -51547,12 +51832,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88068bef3ad0d0b33b9f03d01768b167", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe252d72f0b999eb4861c6e4a7a6b605", + "key": "bfe327fb3fe18d23738c140b6a74abf8", "notes": [], "params": { "pipetteId": "UUID" @@ -51566,16 +51866,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6aac36e2c3419799b734588106ab0da5", + "key": "cff28e0e06260076bc0f5f9dd7de6ecd", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -51585,7 +51885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34390ff769e0d1f8c68924e60f4439ca", + "key": "db08213d3b38724e1c3d2f2c46e58101", "notes": [], "params": { "seconds": 0.5 @@ -51599,7 +51899,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f09bb84bda6b72855c0a6db9d77dcc1f", + "key": "9f02ac7de482982e3904a8894f2d4939", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -51628,7 +51928,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a026c24dddb8656d23df9f6eba6b2557", + "key": "792fdb806fd8aef17bb54b3233e6716d", "notes": [], "params": { "homeAfter": false, @@ -51643,7 +51943,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f33742a192b10d2c7d9f539004cff1b", + "key": "989cb0cc2325f6f0acfedb40aac1299c", "notes": [], "params": { "liquidClassRecord": { @@ -52042,7 +52342,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79a3b16aed701dc2213cf03ac07e0f2f", + "key": "b83816c490ff25f257c70a3bf965fe9e", "notes": [], "params": { "labwareIds": [ @@ -52064,7 +52364,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "daae33dfe7819a0f31c69a61ac17fb4a", + "key": "e243129ca4052c1a1206bdc67c161440", "notes": [], "params": { "labwareId": "UUID", @@ -52097,7 +52397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b70912d9d42a8c415ca68acee332832a", + "key": "4793cea3382eac0822722cdbef5cc167", "notes": [], "params": { "forceDirect": false, @@ -52129,7 +52429,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78b18a4eb06441b4355917afc96e2f76", + "key": "e34508eb5f89f599fccbd45077648c58", "notes": [], "params": { "pipetteId": "UUID", @@ -52145,7 +52445,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e490cf60d1ed97857fd80fa1856058d", + "key": "1c40baea0e7186efbea9b2c12fe9bd20", "notes": [], "params": { "pipetteId": "UUID" @@ -52159,7 +52459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b8732cade697d4ec893b652d7ad008f", + "key": "f378637405b49cbadbcfc54c65728e73", "notes": [], "params": { "forceDirect": false, @@ -52191,7 +52491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbf950a5f1d8ec8741dbf9c650dfeec9", + "key": "ba8d43302880e8318e2b534fcb9139cc", "notes": [], "params": { "forceDirect": true, @@ -52224,7 +52524,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb500eb992a983adeffe9139395a5433", + "key": "cc2914dbc3e60863c25f3d6e0e9d3600", "notes": [], "params": { "correctionVolume": -1.045, @@ -52243,7 +52543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f84f84eda88acfbebb27390942fe54e", + "key": "ef7cdfa348a2d6cf92772415b8d10235", "notes": [], "params": { "seconds": 0.2 @@ -52257,7 +52557,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dade6b301d5a5201781bf2343bb497fa", + "key": "f8f5ae51031072389f6aac417773a7e8", "notes": [], "params": { "forceDirect": true, @@ -52290,7 +52590,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d48352ce0450648397fb52e9863ba16", + "key": "bd7156982f8f124a42e26facca529841", "notes": [], "params": { "seconds": 0.5 @@ -52304,7 +52604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "524231da4d2b29505a71b127a5159244", + "key": "d0ef2ad5c9918d398e43004a188da236", "notes": [], "params": { "correctionVolume": -1.12, @@ -52323,7 +52623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9aad163236f0e5b9f5381a0ff3b83db2", + "key": "062d89e50e3b3feb1a1ab63640236bf2", "notes": [], "params": { "seconds": 0.2 @@ -52337,7 +52637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97ac565e2f70efc6bd6802647e195e0d", + "key": "711619dca982638bea619de087edd716", "notes": [], "params": { "forceDirect": false, @@ -52369,7 +52669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "244e234b8b4d816781112024f6769e71", + "key": "6e79231928a5ef59fdd0ada9c9fa8890", "notes": [], "params": { "correctionVolume": -1.045, @@ -52389,7 +52689,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce4de285002719d913acb54bc50b4424", + "key": "e3eabad9efddf32403bd403f1a51cf87", "notes": [], "params": { "seconds": 2.0 @@ -52403,7 +52703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bbe97ecf131e7679e26733efeda8fe5", + "key": "ca881388af92cfe957898218f0890458", "notes": [], "params": { "forceDirect": true, @@ -52436,7 +52736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "950c330d4ca21ae735d051a16c06d9ff", + "key": "cdb48ff9315c34d0dd9399b6497ba124", "notes": [], "params": { "correctionVolume": 0.0, @@ -52456,7 +52756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a6f6f6e64b782f6f936edcfebe7e938", + "key": "acbb5cc0dff52ed44a3c4c5bf974cc78", "notes": [], "params": { "seconds": 2.0 @@ -52470,7 +52770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96338e9862cc33f7f6fe62a50ba98774", + "key": "0985ac2c5a8f076a11f3df6137e81a32", "notes": [], "params": { "forceDirect": true, @@ -52503,7 +52803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bdb16610779c9bd46d99a7ea5ba11182", + "key": "1ae881022f2d9243bf1b4459cc4729ad", "notes": [], "params": { "seconds": 0.5 @@ -52517,7 +52817,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8b149c66b2185c7cd5c7d234f144c75b", + "key": "a34eb5180304502418f5a6381a30e4a7", "notes": [], "params": { "correctionVolume": -0.75, @@ -52536,7 +52836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abc9c56680a392cdcb4c9d1cfc4cb392", + "key": "f33ab5fa226debd838edbef1f009c267", "notes": [], "params": { "seconds": 0.2 @@ -52550,7 +52850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ddabb6d117452cd8f2c38ed92edceea", + "key": "3c5f52eccc5b9009405591d8d6686be6", "notes": [], "params": { "forceDirect": false, @@ -52582,7 +52882,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6a7d36c1b043b512e1edb20f65abf5b", + "key": "218b13608f07e9740d7ec284640aedd4", "notes": [], "params": { "correctionVolume": 0.0, @@ -52602,7 +52902,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb8e25fc118bd3fa21353b41a550af19", + "key": "de62c70d3927ee2610c91226aa02f3c6", "notes": [], "params": { "seconds": 2.0 @@ -52616,7 +52916,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cceaea2149ad7741e2a2977ca3ab75a3", + "key": "dfe9d1fe2664f4b683f470c6f8a755b2", "notes": [], "params": { "pipetteId": "UUID", @@ -52632,7 +52932,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c7b8eef889b6f0d9b43da54df4325765", + "key": "22abeda76bdb40544ef1dc9fd5a145fa", "notes": [], "params": { "pipetteId": "UUID" @@ -52646,7 +52946,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ddb86b36708cf77210fb3fd70a25307", + "key": "2f810e06bf2e90081edef03d39d2dc0f", "notes": [], "params": { "forceDirect": false, @@ -52678,7 +52978,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "459ab851465fb97a6b08262a541b84c8", + "key": "4b24a5b37afbd7466ed5f83efc67ac6b", "notes": [], "params": { "forceDirect": true, @@ -52711,7 +53011,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a2322a5cc37c94d6a6e202b6023ad3c", + "key": "17826015dcc8a1305ac7bd2a96ec501a", "notes": [], "params": { "correctionVolume": -1.045, @@ -52730,7 +53030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7586e7c6f830cc07183336a6d266411", + "key": "822eac4b314b17f5aa2da542ad1203be", "notes": [], "params": { "seconds": 0.2 @@ -52744,7 +53044,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "649fc11014b08007cd4053f0650cf5df", + "key": "81274d1fdf08f2b7b324ba3601efd930", "notes": [], "params": { "forceDirect": true, @@ -52777,7 +53077,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f15878e9f304ec22c74227f927aec8fa", + "key": "282efc28480276746aef60d6883e5cb6", "notes": [], "params": { "seconds": 0.5 @@ -52791,7 +53091,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d637277553eed6b70362d33ac341726", + "key": "a04aa8c7542457ad1724d324ceb83137", "notes": [], "params": { "correctionVolume": -1.12, @@ -52810,7 +53110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "88aa8a467d927d2a9abdd6facf78b1d2", + "key": "8aa3996ab2e219a3421d903aa8a1f90b", "notes": [], "params": { "seconds": 0.2 @@ -52824,7 +53124,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3e0b0e5eca049c7c2d8631a6ced567a", + "key": "b2fb0dee0405153341c660764c03aea2", "notes": [], "params": { "forceDirect": false, @@ -52856,7 +53156,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45284c6b15393a046cd1f5c3e4024b89", + "key": "2e481ee4804f2b8865d2aaacf9a8ab34", "notes": [], "params": { "correctionVolume": -1.045, @@ -52876,7 +53176,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5ccd23619b49c493d7034ea45b33401", + "key": "d1eea0d52f85a01d338899be02110bf6", "notes": [], "params": { "seconds": 2.0 @@ -52890,7 +53190,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "313e5cc4084c517eda8a423c7a096610", + "key": "97ea708c1eb7340d45446841363d95d2", "notes": [], "params": { "forceDirect": true, @@ -52923,7 +53223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "809b47f3506915c24c0b25c295628f9d", + "key": "5156c3e0dfc3e65d4ece192ac5d0793b", "notes": [], "params": { "correctionVolume": 0.0, @@ -52943,7 +53243,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b95019cd1ae2c0974001f9c84703659b", + "key": "1a12dc6a871818cb8a1e96913506b3c5", "notes": [], "params": { "seconds": 2.0 @@ -52957,7 +53257,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7705f45277190b3538e37f31228c1d5a", + "key": "9bfdb526030000b32c35021ce7020b32", "notes": [], "params": { "forceDirect": true, @@ -52990,7 +53290,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "099d58906478d35f9ddf51e0e231db7a", + "key": "527123e1ccc5418397b18433d9839e60", "notes": [], "params": { "seconds": 0.5 @@ -53004,7 +53304,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5bdfc11301983a39dd6e510edeb6342", + "key": "412c943e5698c033d32b309a14dc6c55", "notes": [], "params": { "correctionVolume": -0.75, @@ -53023,7 +53323,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19c7e75eebecf11862c5b02cfe7aaa35", + "key": "bafc21c89f4f460c86c540f8f29226dd", "notes": [], "params": { "seconds": 0.2 @@ -53037,7 +53337,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c6d01d32baf916cd707ac9bfec4bcaea", + "key": "6ce925d1565798209ce292bc0460d66b", "notes": [], "params": { "forceDirect": false, @@ -53069,7 +53369,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b323971f8cee8f4e0cad7f7e026837bd", + "key": "b03116d752c7314623bec0a6991e3aed", "notes": [], "params": { "correctionVolume": 0.0, @@ -53089,7 +53389,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77a994cf36142b9f70879910c5e47761", + "key": "9df87dcdcb2be09e16cf110ecd38ca08", "notes": [], "params": { "seconds": 2.0 @@ -53103,7 +53403,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21466db1f45213a7201d58377a9a88e5", + "key": "b79513027469e0f82b4de082acc632aa", "notes": [], "params": { "pipetteId": "UUID", @@ -53119,7 +53419,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe9142b531071aebcba9aca775f7d76b", + "key": "117e80e8092769ca674dac85d836d40d", "notes": [], "params": { "pipetteId": "UUID" @@ -53133,7 +53433,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4201d2564e24a6bef00862ca3717832e", + "key": "f6c9ce8b4824e5b48eb935b8a6efce59", "notes": [], "params": { "forceDirect": false, @@ -53165,7 +53465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "201173f35e084aed60f0a767f724de92", + "key": "0c780e1d461c6b22da97f4cfee9cc12f", "notes": [], "params": { "forceDirect": true, @@ -53198,7 +53498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2849cbcf1bcea5ceecb0049aed5655b", + "key": "0ab4ae1aa1766ce15a565cb31bf6d87d", "notes": [], "params": { "correctionVolume": -1.045, @@ -53217,7 +53517,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "780b52c34b3a448836ae4d011cfda1dd", + "key": "10b7a93634191a54b811645a282d483a", "notes": [], "params": { "seconds": 0.2 @@ -53231,7 +53531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1dd8b596bd6839e384eb65cd01806fbc", + "key": "954c71e56e43fb7f1bea4c2837f9a6aa", "notes": [], "params": { "forceDirect": true, @@ -53264,7 +53564,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72581dc2de0d3747c463d307a9257aad", + "key": "275e6ed9cb32fdca22073a1ab52f2ce6", "notes": [], "params": { "seconds": 0.5 @@ -53278,7 +53578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a31d16862dbe3b98b373ab82405d643", + "key": "1219d41df0dd14740f8c6c5601186280", "notes": [], "params": { "correctionVolume": -1.12, @@ -53297,7 +53597,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7a472c61e67a4a5efac3bbe444a20d9", + "key": "6e6ccfce97528fdaa6f711edf7528aa5", "notes": [], "params": { "seconds": 0.2 @@ -53311,7 +53611,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e2d90969b8748c35e3f9b72307239b00", + "key": "d4424dd2ab582dbb68d2746e8a08f6e8", "notes": [], "params": { "forceDirect": false, @@ -53343,7 +53643,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff3e42d09cf8d355f399ebe0dadd4397", + "key": "c8a071403a990318a1c18bc14acd2cb2", "notes": [], "params": { "correctionVolume": -1.045, @@ -53363,7 +53663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed5610c7cfd67f24570a7cc1f8e9547a", + "key": "9af85b5388d7ce689f0330492ac0276c", "notes": [], "params": { "seconds": 2.0 @@ -53377,7 +53677,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "815fe272990dd3f2c9a714e666a049b1", + "key": "04c2baf30a060da3ba49455aa76f1ff1", "notes": [], "params": { "forceDirect": true, @@ -53410,7 +53710,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "06e980b36b0e19b18dcdfc505d9d5a17", + "key": "6b4bc02c9a6d793ea71a5e406186254b", "notes": [], "params": { "correctionVolume": 0.0, @@ -53430,7 +53730,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd57be1fbb2983f2266c11fae2640452", + "key": "21c96f0aea0f90d955fc8001c2575966", "notes": [], "params": { "seconds": 2.0 @@ -53444,7 +53744,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb9c375ecfa1fd498f39737fdd2f0271", + "key": "6ed69fc78f9fcf0fc87e4d2e18a26341", "notes": [], "params": { "forceDirect": true, @@ -53477,7 +53777,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba14105006d2cd029d5d4e18baaf6a73", + "key": "29d777fc6dfc5e8d839b0561bd08eea9", "notes": [], "params": { "seconds": 0.5 @@ -53491,7 +53791,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0f86fdd51c6966197915aa8b8a73b64", + "key": "809e25274f0bc75b58422d3f8ac4895b", "notes": [], "params": { "correctionVolume": -0.75, @@ -53510,7 +53810,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d335155568b7187e4fab13fbb0189356", + "key": "03b4b45cf75a00af6f61199f55b77e07", "notes": [], "params": { "seconds": 0.2 @@ -53524,7 +53824,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36766e3b1e682fdfc0e26cc102c9bf6e", + "key": "ec506641798ddfe59037bdef5b222f1e", "notes": [], "params": { "forceDirect": false, @@ -53556,7 +53856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ce2dc51bdb95cf4155c824280dbbfea", + "key": "12bbaf588bea5eddbefdaea9fb9db7c8", "notes": [], "params": { "correctionVolume": 0.0, @@ -53576,7 +53876,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a6d4ff3a14ccc0154b0bcf75df8e09be", + "key": "ce71c1e46c5253f041097891d6aa4ade", "notes": [], "params": { "seconds": 2.0 @@ -53590,7 +53890,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3aeb3e6a3cfe4ee96593e236728cb30d", + "key": "029ac005566f22693e691a6c2c6f2fed", "notes": [], "params": { "pipetteId": "UUID", @@ -53606,7 +53906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "290283e5ec65a387deeceb8f17c8cb3d", + "key": "c16a72fef8851c2a473857ea8d3ec6e2", "notes": [], "params": { "pipetteId": "UUID" @@ -53620,7 +53920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3c45e88cc8b5486c03f87379d0bf15c", + "key": "db9d6c252a4bf6864c6c889247c6ca88", "notes": [], "params": { "forceDirect": false, @@ -53652,7 +53952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a4257498f2f37a4f0edfff0d99af0f0", + "key": "17dc98f5be17969a376d47ccfcc596e3", "notes": [], "params": { "forceDirect": true, @@ -53685,7 +53985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "596db508811b0f8bfdb14ff6c09e0063", + "key": "1284d09add85e155f9703d941f60c5e3", "notes": [], "params": { "correctionVolume": -1.045, @@ -53704,7 +54004,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c509f21c0d599bd06aa075f41bb9215", + "key": "43a2b874d38291019cf854dcc0fdb559", "notes": [], "params": { "seconds": 0.2 @@ -53718,7 +54018,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9220ecb0450e4167eddbe9cb30f3537e", + "key": "666600ef7431e65e2c7ff8a43eaa81db", "notes": [], "params": { "forceDirect": true, @@ -53751,7 +54051,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4a4451edeaa86dbe34aa37f61a271b4", + "key": "ce9f72549ca49393cc71b5077f9e45c3", "notes": [], "params": { "seconds": 0.5 @@ -53765,7 +54065,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c4ed79e34d89c5eb7ca34c3db0283be", + "key": "0e6bee602d11d3eda42c190b1a864a08", "notes": [], "params": { "correctionVolume": -1.12, @@ -53784,7 +54084,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3de46c159e4da8be991ab70db3cce608", + "key": "3583446ca732692e41ee07185180a138", "notes": [], "params": { "seconds": 0.2 @@ -53798,7 +54098,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c14bc37921cac5e7c095688e47323211", + "key": "d31e05dabeb9d9c13050953426151f84", "notes": [], "params": { "forceDirect": false, @@ -53830,7 +54130,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95c3997f76460feef0fa81a6bc5275ec", + "key": "86772afea1d2bdf388526489a83ff606", "notes": [], "params": { "correctionVolume": -1.045, @@ -53850,7 +54150,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f3ba3d7451e3bd6a05cec1c3a0a8ec6", + "key": "da76f1f34cd64ce41b32940d82936e85", "notes": [], "params": { "seconds": 2.0 @@ -53864,7 +54164,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac0b1d2babfe0247fd60f35c4d01abab", + "key": "4f10f36b7cce988c3943b706549d1e5d", "notes": [], "params": { "forceDirect": true, @@ -53897,7 +54197,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5433bc7324ba3fa2289bc0a518ddd85", + "key": "145b535a1a707513428235dcf2195142", "notes": [], "params": { "correctionVolume": 0.0, @@ -53917,7 +54217,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4696f55452eb941354a742d11af4435c", + "key": "a9a6598abde505925bb21e5b3543d2ac", "notes": [], "params": { "seconds": 2.0 @@ -53931,7 +54231,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58c2eb249e57c092c0e312528f0830ec", + "key": "d6b32fd360b67fcd72d54456cd657d6f", "notes": [], "params": { "forceDirect": true, @@ -53964,7 +54264,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3cba0d4e9939ca0a8f75bcb6a36dd3b6", + "key": "723d240b4cfefd8e8759316abb9772c0", "notes": [], "params": { "seconds": 0.5 @@ -53978,7 +54278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "828310cd1aa2a6fbdc9cff36851676ef", + "key": "8dd401365fb0d37c66c4d7647b8106c0", "notes": [], "params": { "correctionVolume": -0.75, @@ -53997,7 +54297,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "630aa25ed0cfe9af1872c1131040b4b7", + "key": "fff3cd6d38512ed12b838b78a2d2c542", "notes": [], "params": { "seconds": 0.2 @@ -54011,7 +54311,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7eb4e280b7534ee5af452903b90cc6f8", + "key": "9acfc02faca6c71f27050f51d14c93fa", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -54040,7 +54340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1fe25338e4685e00611babb41cd7f548", + "key": "5c64553fc28d3b5f551515df776ba5e6", "notes": [], "params": { "homeAfter": false, @@ -54055,7 +54355,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c47469fca3991e7a404921f9dff5f0b", + "key": "5b2f4d0b9e4fa6578f773f624a831025", "notes": [], "params": { "liquidClassRecord": { @@ -54426,7 +54726,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93701a630a4952d4d92f9ed3a3400554", + "key": "3f50c50a828c172b4047c10990481fc9", "notes": [], "params": { "labwareIds": [ @@ -54448,7 +54748,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23a2ac6536db5ed98a094605b50c86b0", + "key": "000d413a293c2218465a50c614a803d5", "notes": [], "params": { "labwareId": "UUID", @@ -54481,7 +54781,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e1110f58a5b85fc0e55e17e0915d7cd", + "key": "13d49dfe35f2576d25cde65ef5b6f33c", "notes": [], "params": { "forceDirect": false, @@ -54513,7 +54813,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "993fcb26b1772448a5f63e367a876f2a", + "key": "49ac891677c129fd63047f8da1283ed1", "notes": [], "params": { "pipetteId": "UUID", @@ -54529,7 +54829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f3032e51e47ff8b8a2a4f5a5c2ce2de1", + "key": "5d6ef51c58a607ef530a58e9ed14bb01", "notes": [], "params": { "pipetteId": "UUID" @@ -54543,7 +54843,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fba3da2dfe67945fc74964b5d737293e", + "key": "a5e11b0b651a9c6c8f26107b8d2bc9a4", "notes": [], "params": { "forceDirect": false, @@ -54575,7 +54875,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a81e0b8cca36dbcbac4174b1eca149d", + "key": "2196791553e37faca5698614b5e7cb54", "notes": [], "params": { "forceDirect": true, @@ -54608,7 +54908,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1f13868afd44d47df10cb2f40b7d022", + "key": "b9d26742f7eb7eedbea7b3b35e7d0c26", "notes": [], "params": { "correctionVolume": 0.1575, @@ -54627,7 +54927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff8d737425980bb9737a5dd1ada9632d", + "key": "0ed1e0e4d231b08c8196daa3f04da40c", "notes": [], "params": { "seconds": 2.0 @@ -54641,7 +54941,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65d3649e6f134ba5a179c6a4dfaea771", + "key": "c83be6d428bb598f95fb080ff8804ae0", "notes": [], "params": { "forceDirect": true, @@ -54674,7 +54974,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f28262c8b6afd6e74eb8baaa67af64e", + "key": "8fb7e4aeb06f21330b5ffaeb03895a84", "notes": [], "params": { "forceDirect": false, @@ -54706,7 +55006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "39b4ad0e4622502a428ebfa843055353", + "key": "04da5f21f3ab1a6f7d4bf417314831ab", "notes": [], "params": { "forceDirect": true, @@ -54739,7 +55039,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "581dc1d32283acbb112d55b802ab90b0", + "key": "9a05cd639964700f460d804e043c9b9d", "notes": [], "params": { "correctionVolume": 0.0, @@ -54759,7 +55059,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd4ce0f74f5194d6bdaaa96c11f8bf1b", + "key": "86d775ec8957a1a21363a7d498620bf8", "notes": [], "params": { "seconds": 1.0 @@ -54773,7 +55073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7318bf1af48a099b99d822903b7c70f6", + "key": "71d67921e0eab7e30641d9baeb7fc928", "notes": [], "params": { "forceDirect": true, @@ -54806,7 +55106,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1ed4234f93a981242183993bed3d077", + "key": "fdf1c213e26562aff02c521770db7584", "notes": [], "params": { "pipetteId": "UUID" @@ -54820,7 +55120,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e6087882d38b76c7e3d35b4974090c0", + "key": "dbe54636d7d43daf28d46e01066a69d0", "notes": [], "params": { "forceDirect": false, @@ -54852,7 +55152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71f59354af190fcd6cdb3e59f0bd7e4f", + "key": "08d0edf7183ceb907aba4dc4f7e4c1b0", "notes": [], "params": { "pipetteId": "UUID", @@ -54868,7 +55168,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07c756f829b894ce502426b24a0f5ed5", + "key": "4deda0b2c4f881ef2677c969b4db8d99", "notes": [], "params": { "pipetteId": "UUID" @@ -54882,7 +55182,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bcd136a5f854d99aa11118e2c4d4eeb", + "key": "b781fa8c263967bd9f25b57730a2e616", "notes": [], "params": { "forceDirect": false, @@ -54914,7 +55214,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f3feb30e1a7be2db93548e0fdde0c96", + "key": "0ef17e952d0fc094fc5434a15117dd24", "notes": [], "params": { "forceDirect": true, @@ -54947,7 +55247,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf8394999664632ab981c9a2bc86863d", + "key": "cde0f53f29a04ebf8c13c55b95b85201", "notes": [], "params": { "correctionVolume": 0.1575, @@ -54966,7 +55266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aee2795e2e4beb0e9e0a740620eb673a", + "key": "ff97352ee2d0ad613d073b67abd6ccbd", "notes": [], "params": { "seconds": 2.0 @@ -54980,7 +55280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e267ec912f4f3c8ca5da1b6cedc06964", + "key": "326d9da535aff4b94b3acb9af4039897", "notes": [], "params": { "forceDirect": true, @@ -55013,7 +55313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b892b362af9feeb00adaba21fee9a09", + "key": "f31ba1399804fb541f08fb6e37d189f1", "notes": [], "params": { "forceDirect": false, @@ -55045,7 +55345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b191c73f0f2789847fa7f88f6abd2223", + "key": "64b820c3c169c2ceade2170d156af660", "notes": [], "params": { "forceDirect": true, @@ -55078,7 +55378,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f672f27b70dce0dd0fbe42a6bbe40d4", + "key": "ee15421e6a5ef2b99da636d30578c23f", "notes": [], "params": { "correctionVolume": 0.0, @@ -55098,7 +55398,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "551a8de38ccedb50e93d05ee08764be0", + "key": "3b43466e36aabf2fecd3e3ff9417d437", "notes": [], "params": { "seconds": 1.0 @@ -55112,7 +55412,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c168d01031611d847374a3452523c085", + "key": "eafd59390d9cec8d361d4eb0680f3ece", "notes": [], "params": { "forceDirect": true, @@ -55145,7 +55445,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d00ff9678af142ebe15c972b98a1d30", + "key": "a67bf8de55041d8efb993dc193a2051e", "notes": [], "params": { "pipetteId": "UUID" @@ -55159,7 +55459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f5bb2c21f3c39bb3d611907fc100672", + "key": "5610f3f4480c55c94c64c028a1d72278", "notes": [], "params": { "forceDirect": false, @@ -55191,7 +55491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e48b7d10288b4b6a1d24569a8c001052", + "key": "e8d594cb1021bb942f2f5d4a0c0f398f", "notes": [], "params": { "pipetteId": "UUID", @@ -55207,7 +55507,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5647fc50d74327e2b58ff057d7214e0d", + "key": "22342ec7ccdc41f8d4c981f2b1f3ce77", "notes": [], "params": { "pipetteId": "UUID" @@ -55221,7 +55521,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dae0a72c23605a01e8a125b9a3cb1940", + "key": "6105452141bfab1d1ad50f500893c743", "notes": [], "params": { "forceDirect": false, @@ -55253,7 +55553,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10aef0ecaadeafb92af5d20f61641413", + "key": "5554b488423f66c285827614bd9ed1fb", "notes": [], "params": { "forceDirect": true, @@ -55286,7 +55586,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fce2931ab619f89030d99909614461b", + "key": "27ce73789e6b6c814da98b19d01d3b0f", "notes": [], "params": { "correctionVolume": 0.1575, @@ -55305,7 +55605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f0e1afd3e03559d79bd2b9e72ee2c17", + "key": "75f80015bbe2d6172ab8a9d894f371c5", "notes": [], "params": { "seconds": 2.0 @@ -55319,7 +55619,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86b29e42d19aff8492fb6a08b123d224", + "key": "9452ef0ca9606442c0e367519e464cee", "notes": [], "params": { "forceDirect": true, @@ -55352,7 +55652,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cde124f1cd0d290bc2bd8dc8024c9ce5", + "key": "6ccf9656078f010dae9600d5678cea17", "notes": [], "params": { "forceDirect": false, @@ -55384,7 +55684,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31e23d9719ee7efe699006932b5320c7", + "key": "79bdfc22d365169014925da30e16d8dd", "notes": [], "params": { "forceDirect": true, @@ -55417,7 +55717,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea7a5a5a611bea80564f0d2f843aed85", + "key": "f3920d4caf7ca2d6f754a6cb678957b3", "notes": [], "params": { "correctionVolume": 0.0, @@ -55437,7 +55737,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfac56e226d145a30b700f2a71b0eb42", + "key": "bbb7112bfb1edcae74228eef87d580c4", "notes": [], "params": { "seconds": 1.0 @@ -55451,7 +55751,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "481e2352e47aa6a598996d57500bd5be", + "key": "d9fc1b5f4b6d1777ccff0171563f3961", "notes": [], "params": { "forceDirect": true, @@ -55484,7 +55784,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c336a20db9d531c401ad165d3f1a2457", + "key": "859068dddfc325d83b4e910a51745a16", "notes": [], "params": { "pipetteId": "UUID" @@ -55498,7 +55798,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10560d373ad625e3a093b005bed30528", + "key": "2929a57147ec385651197c524dcba611", "notes": [], "params": { "forceDirect": false, @@ -55530,7 +55830,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2add5379553a919099de9685d47001df", + "key": "79323d10252f5ce1bdb2a25c90e18964", "notes": [], "params": { "pipetteId": "UUID", @@ -55546,7 +55846,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6333f1f1329294b4128a56846df9c52d", + "key": "c631edf3045db1d92f1f16f0fb454068", "notes": [], "params": { "pipetteId": "UUID" @@ -55560,7 +55860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf375b77a4f7c77fd73b789a29ee04ac", + "key": "32bb45bd1fedc4293778755ebbe2bd03", "notes": [], "params": { "forceDirect": false, @@ -55592,7 +55892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "606ef2d0e6b2cffa127d0c555bcf247a", + "key": "a6645852808e6adf38ce08e7bae43532", "notes": [], "params": { "forceDirect": true, @@ -55625,7 +55925,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8bfa4b486e4ca317a6ad852e52286933", + "key": "47d6b25672cd34760c12ba6af42c693e", "notes": [], "params": { "correctionVolume": 0.1575, @@ -55644,7 +55944,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be17cc2a6155b19a2343488964a239cd", + "key": "d3341f644a84e4300b7c635a91a0f7b0", "notes": [], "params": { "seconds": 2.0 @@ -55658,7 +55958,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0cf530956647587a9587d82d665b4cbb", + "key": "4a7d42d62e96815fb80ccb1b81725e89", "notes": [], "params": { "forceDirect": true, @@ -55691,7 +55991,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "075bca7d42566cda16a28d06eb8af750", + "key": "250b629bfcab1b71b51694cd8228a8cb", "notes": [], "params": { "forceDirect": false, @@ -55723,7 +56023,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bef2480abf2d187aa2a971fb5cc8a940", + "key": "56174420adfd179b30f83dd6f4b59d6c", "notes": [], "params": { "forceDirect": true, @@ -55756,7 +56056,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b91609c0c9ffaf412afa856b863c43d", + "key": "5a5f0c4545154de147a4a2c08c757f04", "notes": [], "params": { "correctionVolume": 0.0, @@ -55776,7 +56076,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5de574f8356b7f95acb6556ecfd18aba", + "key": "c0b208279276f2aa3bf11b53774156b5", "notes": [], "params": { "seconds": 1.0 @@ -55790,7 +56090,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8069dd73ae0b4469a9d0bbfad6d43172", + "key": "4429b1590b20568898a7cc3a27ecf4bc", "notes": [], "params": { "forceDirect": true, @@ -55823,7 +56123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14a9066ef0285162fe47d0f3d9cc536e", + "key": "599ce2df2257ea5d754fea563501e881", "notes": [], "params": { "pipetteId": "UUID" @@ -55837,7 +56137,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "403f72ace5be1528c48eead29ad7b69b", + "key": "33a0e52e1909ea84d8c4b0b222a2e4b7", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -55866,7 +56166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44e90cadf77af4900412698fcfbc61e3", + "key": "4358e08e0b529e2fddc21fa2eb13caf6", "notes": [], "params": { "homeAfter": false, @@ -55881,7 +56181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f87909b0c90f61ab128b19a08921a7a0", + "key": "a9d60bebff2baadfdd8a567ac4b1ea2d", "notes": [], "params": { "liquidClassRecord": { @@ -56240,7 +56540,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "51a89b96aaf01c85df7c8e8484cd8209", + "key": "d5c2384e44bf22072dbae8e647cfd95f", "notes": [], "params": { "labwareIds": [ @@ -56262,7 +56562,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2eeb9ecb4cdb6cc181faa73a0a2e4850", + "key": "2d7d2476c0ffcfe58bc5b1e5d4be9217", "notes": [], "params": { "labwareId": "UUID", @@ -56295,7 +56595,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0261243455a4e1c2c4bd46f81e71f1d1", + "key": "042350d15c20d34c657c800e06e77ff0", "notes": [], "params": { "forceDirect": false, @@ -56327,7 +56627,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6da7bc59f528da480f3fa65d07cdd458", + "key": "b4ff59f2b9140e418efe61fc65430baf", "notes": [], "params": { "pipetteId": "UUID", @@ -56343,7 +56643,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31fe31087307c66e440dc2bd9b2aa781", + "key": "c7af949a12f24aaaac08f2498f534d02", "notes": [], "params": { "pipetteId": "UUID" @@ -56357,7 +56657,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cd16593e9443836a64a061de427e780", + "key": "4b3e5c143a3745eee66d9d276f31a4c7", "notes": [], "params": { "forceDirect": false, @@ -56389,7 +56689,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c91eefdaa54064d0f89c9ad6854759fb", + "key": "80652fa1a44870cdb55decb042e76bd5", "notes": [], "params": { "forceDirect": true, @@ -56422,7 +56722,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "746659dfa2b1bf83063e80ce4fd87c85", + "key": "f477999f32b42511d3fed04183821811", "notes": [], "params": { "correctionVolume": 0.0, @@ -56441,7 +56741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eee7fb2ed3903b7d6e8e9f39d9bce924", + "key": "5f86ebef1b2685046d9a6516d41dab25", "notes": [], "params": { "seconds": 0.2 @@ -56455,7 +56755,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "345cf4ca2fb7d62ba15ab4a6fc6634ea", + "key": "a0c801b31f765687acd2e6ca549a6a6a", "notes": [], "params": { "forceDirect": true, @@ -56488,7 +56788,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2b8bf3e2dc214cb967a1d7d1e8c2ce5", + "key": "2ddc279d874f821fc638107255860857", "notes": [], "params": { "forceDirect": false, @@ -56520,7 +56820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7430d7cdee50e90d508fbcdbcca69f7", + "key": "79a68f0b9109ed1fd4d8e9320ffeb628", "notes": [], "params": { "forceDirect": true, @@ -56553,7 +56853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c808777b9f4c5e3f74b26ddf5ef8d333", + "key": "2eaadb4a089522df630d7255ed1ca8f6", "notes": [], "params": { "correctionVolume": 0.0, @@ -56573,7 +56873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01619cda9d1f5700c4551c5888b8e6c2", + "key": "cba81f37b5f9818b24e7623ee7f6c445", "notes": [], "params": { "seconds": 0.2 @@ -56587,7 +56887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6eba84b9bbe412c248e3cade46424b1f", + "key": "71d42f761073a963880537a93f686a34", "notes": [], "params": { "forceDirect": true, @@ -56620,7 +56920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af0b24b0f2e0405c8aae3dd5c84e3303", + "key": "5204e0e57f2cc02925ab6b841b438d76", "notes": [], "params": { "pipetteId": "UUID" @@ -56634,7 +56934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8497068dc250b328f081b6e56d0ec74", + "key": "050ee7115e4f80585327b66eef1fb550", "notes": [], "params": { "correctionVolume": 0.0, @@ -56653,7 +56953,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37dbff2831c290b40835c5447edb61b4", + "key": "ea1e66fdfd526f739fa5bd9c33fcd55b", "notes": [], "params": { "seconds": 0.2 @@ -56667,7 +56967,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "09176400a4eb276f0e5c5b1cd133a4ad", + "key": "507711689fcad6678205694d6e9f789e", "notes": [], "params": { "forceDirect": false, @@ -56699,7 +56999,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bd5a097b008d25acca2e4019f41a59f", + "key": "731c537aac53bb711c5c938cb9da1188", "notes": [], "params": { "correctionVolume": 0.0, @@ -56719,7 +57019,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d8777a22281a8e0e2fee719b7fd9cece", + "key": "3e8e07f94489a7c81dba3d1fccb78f06", "notes": [], "params": { "seconds": 0.2 @@ -56733,7 +57033,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "afa3590fa37070f5d8b4fe9c203924ec", + "key": "d1a165e515edaa6d2554a189ef2a6fac", "notes": [], "params": { "pipetteId": "UUID", @@ -56749,7 +57049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c371ea5d101258243f0ecefbcb862a69", + "key": "c230aa6530454a2bfa6e0d2158a968ee", "notes": [], "params": { "pipetteId": "UUID" @@ -56763,7 +57063,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "987ad0bbae981d4707040222b798d44c", + "key": "f75a9195c3eea598caf712f5a58f1a20", "notes": [], "params": { "forceDirect": false, @@ -56795,7 +57095,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "828646298d561a74e56035c4ed876150", + "key": "43694d884e8d78c67852c8a9f226be8b", "notes": [], "params": { "forceDirect": true, @@ -56828,7 +57128,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b94f35d213dbafc036d176e11f4965dc", + "key": "791febe629087942751ad7505c445b3e", "notes": [], "params": { "correctionVolume": 0.0, @@ -56847,7 +57147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6e1ca4fc24ff850bdf016568982548c", + "key": "f6cf4db8782269f345624d6e8a01dcc0", "notes": [], "params": { "seconds": 0.2 @@ -56861,7 +57161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62ef61ea1299027059467cafb71b1cec", + "key": "0e15bd23f6ff5929054f463be2fe5539", "notes": [], "params": { "forceDirect": true, @@ -56894,7 +57194,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81a7ed1216b15ec1d5fb96f6b122321f", + "key": "579ea4e24bae70a42b3126e69bf54fea", "notes": [], "params": { "forceDirect": false, @@ -56926,7 +57226,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "635f61508a3b30d9a128aea9d5be3ba4", + "key": "479ecbe0ddb1359440a7d436279d6feb", "notes": [], "params": { "forceDirect": true, @@ -56959,7 +57259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "466ff8b92c48f60ab0d26627a3057223", + "key": "63107c7370c4e811aa80a6e9a7bb82cc", "notes": [], "params": { "correctionVolume": 0.0, @@ -56979,7 +57279,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c7fa2f76387c137995a2de5225969eb", + "key": "a6de105e2e17908add245319117c8b9e", "notes": [], "params": { "seconds": 0.2 @@ -56993,7 +57293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b1ce5d10b855bfec829595ec35d6e81", + "key": "7f02ad0566c7ca3dee0f2c1003763c3f", "notes": [], "params": { "forceDirect": true, @@ -57026,7 +57326,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8508525ea1d1a736672516d28d3b1f1c", + "key": "a67961419f57bb35081ff6078b5abf05", "notes": [], "params": { "pipetteId": "UUID" @@ -57040,7 +57340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef337165dcce3b70e889718777f57680", + "key": "b6a41077db7e0407dd321d056ed2c9b0", "notes": [], "params": { "correctionVolume": 0.0, @@ -57059,7 +57359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "143f2a509f3ed2f7f684616a978173f6", + "key": "4a014dc2d60e5368878a121570930e47", "notes": [], "params": { "seconds": 0.2 @@ -57073,7 +57373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5906f767f8ad5f345466e3c1956c2de9", + "key": "69d409ea7467933de3a1ff239ffbccbe", "notes": [], "params": { "forceDirect": false, @@ -57105,7 +57405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d97374da9861094b34d69cca8ac732a5", + "key": "4af09e82b936a33cb7552ee503930cae", "notes": [], "params": { "correctionVolume": 0.0, @@ -57125,7 +57425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c65661054d96b18c8b163be49347cae", + "key": "cf4307cba7db429b3327d50885cd5083", "notes": [], "params": { "seconds": 0.2 @@ -57139,7 +57439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "efe3236218ce72e658971c1fcd773896", + "key": "f93a62ba812a4b6a85274490d72842ad", "notes": [], "params": { "pipetteId": "UUID", @@ -57155,7 +57455,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02f0a01d08eeec59ff69f6c7628c7934", + "key": "d96ca63e6b95e7d824b33bca04588b41", "notes": [], "params": { "pipetteId": "UUID" @@ -57169,7 +57469,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac365d5080a930f3a9d7295e43a0e44f", + "key": "9d5d58ae8f0b65c0dbd778b268fa21fb", "notes": [], "params": { "forceDirect": false, @@ -57201,7 +57501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f0f1175abae87893ed817d62f137a9fc", + "key": "48a734389f5271ec0af1b99eddb78f74", "notes": [], "params": { "forceDirect": true, @@ -57234,7 +57534,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "887e49cfc23d6cb7d36b31aa2338abf4", + "key": "ba6a407568d79091d586a4fa76d32a82", "notes": [], "params": { "correctionVolume": 0.0, @@ -57253,7 +57553,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "012b8285f4287c72bc50543b76ad1667", + "key": "15baa7f55771e06c8a57b25fada4f90b", "notes": [], "params": { "seconds": 0.2 @@ -57267,7 +57567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e5fd1d10020a017adf9dafcd79c2a3c", + "key": "ca80b750f3fb6a8d6bb06c4179c1bf30", "notes": [], "params": { "forceDirect": true, @@ -57300,7 +57600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d850ac43b0c31bab110758d41835d7a", + "key": "a365c2b502edd0fa61f2fd12b35efb6d", "notes": [], "params": { "forceDirect": false, @@ -57332,7 +57632,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1205e8f32c30a7fc0b954afeb719c2e", + "key": "dc4bb4d4bf31e08da7f72407208ecf9d", "notes": [], "params": { "forceDirect": true, @@ -57365,7 +57665,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6bcdd3679ce206bb8187fa2c5dd5d8d", + "key": "bac765be5e753f803b4c42c94fdbe008", "notes": [], "params": { "correctionVolume": 0.0, @@ -57385,7 +57685,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e48b5a22cc048b5c4f077923d1c2e144", + "key": "afb594ff62bb262860353b0b9e8538c4", "notes": [], "params": { "seconds": 0.2 @@ -57399,7 +57699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4fc5fdfbfd2db8cb8ce678c01ecb5ce", + "key": "fb6226c7a272943ed410f67211597da2", "notes": [], "params": { "forceDirect": true, @@ -57432,7 +57732,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1a064fa580e0244932145392e95c0c3", + "key": "9217efe66e10e9a0ab8ecf84dce727f6", "notes": [], "params": { "pipetteId": "UUID" @@ -57446,7 +57746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74fa82a44de198b5b952fd2f2fb6d197", + "key": "15b0d74a7019e18c6e07f68bf83cac4b", "notes": [], "params": { "correctionVolume": 0.0, @@ -57465,7 +57765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1c0ac6016134da42cd0c45c821bee39", + "key": "b54ce97f322b35c477a5236ff8dc6d71", "notes": [], "params": { "seconds": 0.2 @@ -57479,7 +57779,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65b482207e50f35ed9738ec79c17934d", + "key": "09360e640efc0c1f4b47b6d94496ffb1", "notes": [], "params": { "forceDirect": false, @@ -57511,7 +57811,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea11ed449aecdf51503c76d55103241c", + "key": "d91982ec0d3d02b71b6e1c8c719dd3aa", "notes": [], "params": { "correctionVolume": 0.0, @@ -57531,7 +57831,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07ce8d1946308e39879291e0a4f56884", + "key": "33f29759e6c227d75045cba539d113dc", "notes": [], "params": { "seconds": 0.2 @@ -57545,7 +57845,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "babea9781cc873a7876501ef8b4061e7", + "key": "ad603b1772ca66b91569c67571d1f6eb", "notes": [], "params": { "pipetteId": "UUID", @@ -57561,7 +57861,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b9c88e9de7383407cbf8c4608569df9", + "key": "b7bd1919815b116f493ab9ee183905d6", "notes": [], "params": { "pipetteId": "UUID" @@ -57575,7 +57875,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0374f74d3b25a84d620406deae474020", + "key": "941e34acb49d19d7e371cb2bc6edba9a", "notes": [], "params": { "forceDirect": false, @@ -57607,7 +57907,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65a04376bb325edc02412f97f9df057e", + "key": "6f51e1c5bed6706af514c418d49eff5e", "notes": [], "params": { "forceDirect": true, @@ -57640,7 +57940,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2841490aca66c21a87f3ce3fa036459", + "key": "74f0148bd2d9dbcd297b709dbc7b4026", "notes": [], "params": { "correctionVolume": 0.0, @@ -57659,7 +57959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "736b3ba3855d78d1f9c51c5f21b9df26", + "key": "9a102a8fb6f96fc8204cc15f22f870f7", "notes": [], "params": { "seconds": 0.2 @@ -57673,7 +57973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce2ceae1a0e98d5c09e086586c49932c", + "key": "af61eabb147ebfb9e77b7e57587b9201", "notes": [], "params": { "forceDirect": true, @@ -57706,7 +58006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f1e3b7f9c9eb3f8e8ba6233957050b3", + "key": "42a56742a954e05db3c99ff216cd1e22", "notes": [], "params": { "forceDirect": false, @@ -57738,7 +58038,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8c34e3e94916f44c9663065e6f5a17a", + "key": "01f33e7f50ba814b08bf80ce4cbcefef", "notes": [], "params": { "forceDirect": true, @@ -57771,7 +58071,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4c22642c7291a56686d3327a718c4992", + "key": "ee960daabe10fb7eeeed1915d8afc006", "notes": [], "params": { "correctionVolume": 0.0, @@ -57791,7 +58091,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a275ef27a55b4a7f29a49486117a1c0", + "key": "a2398b08969c3320032aebc501579c19", "notes": [], "params": { "seconds": 0.2 @@ -57805,7 +58105,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ce6b539f2661bc6e8d19e9eb02eba86", + "key": "bc5149f5a26a38271c61902b18ee350c", "notes": [], "params": { "forceDirect": true, @@ -57838,7 +58138,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8a603dab8198df2672c5a31757cbf62", + "key": "75698383858f652c12a0157e18c17dcf", "notes": [], "params": { "pipetteId": "UUID" @@ -57852,7 +58152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37ca32eaa0daea76e9cd3e0b507a24fe", + "key": "537ca9b0128692f68dbea6986c96bd9f", "notes": [], "params": { "correctionVolume": 0.0, @@ -57871,7 +58171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72301bf70b21b44ce8fd17b7aabdd9b1", + "key": "3bbdfb15ee8a282ec2d2a51cd30fed71", "notes": [], "params": { "seconds": 0.2 @@ -57885,7 +58185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5de754a8c2b51e6e104300889dae055d", + "key": "b036fb87ea1f421bbe0ec039ee460bca", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -57914,7 +58214,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e5adbc5e552efe8395eee6309638c56", + "key": "a95166a8f4e91c39e76077a5509d2472", "notes": [], "params": { "homeAfter": false, @@ -57929,7 +58229,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "87bf24da0fddedda9db4defea104d564", + "key": "3dbd15d1b2c953e8f6124780d4e7db4c", "notes": [], "params": { "liquidClassRecord": { @@ -58316,7 +58616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "229b3e81eb7a2951213ecfa3288dfd45", + "key": "b8c69e07e7a12ec7dfe3b803b68bdcee", "notes": [], "params": { "labwareIds": [ @@ -58338,7 +58638,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "226ecad2b53f295abd6a3e07a551ff13", + "key": "c62da8b456e0e4ec73c4fcca2b166cb6", "notes": [], "params": { "labwareId": "UUID", @@ -58371,7 +58671,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c569e7d017ec793ccb43c5b2c764572", + "key": "847d46ad13d0195b93327bd5e370daac", "notes": [], "params": { "forceDirect": false, @@ -58403,7 +58703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9be9c099562025b05f993fd31076802", + "key": "44af225a67c22339226d8f3844a1b37c", "notes": [], "params": { "pipetteId": "UUID", @@ -58419,7 +58719,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f17ac7704114b636ff0de421a928e53", + "key": "3ed005b00604ef982521da096edacd84", "notes": [], "params": { "pipetteId": "UUID" @@ -58433,7 +58733,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dff6b652e10782f3b395509241685ea4", + "key": "fe70c513070daef839c7a57cacf43fe2", "notes": [], "params": { "forceDirect": false, @@ -58465,7 +58765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "211eb6e4f077ff0d9a3a7e288af9029d", + "key": "f30efd6fc7e82fc4f51048831a8cfb74", "notes": [], "params": { "forceDirect": true, @@ -58498,7 +58798,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea3cfd6546a3c0deb8cf8ecdc3e4e2e8", + "key": "329ea6b0426fa98bb9529c9222abbc50", "notes": [], "params": { "correctionVolume": -0.5, @@ -58517,7 +58817,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61f8b08da2911de099e79d48c1c83144", + "key": "1c4355adaaf7f3c8bd40fd4d90267239", "notes": [], "params": { "seconds": 0.2 @@ -58531,7 +58831,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3f6088fa140720e3e64754988d98c6c", + "key": "595dc18edb2509e79f7289b9e54687d0", "notes": [], "params": { "forceDirect": true, @@ -58564,7 +58864,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f66c326edd9895cdc3f9276fa1ae938", + "key": "d3326c367bf06c5c845c334077eb33e0", "notes": [], "params": { "seconds": 0.5 @@ -58578,7 +58878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb182695bb5973ed967a970682314063", + "key": "7f489e4e59d20ce15d03aafdaa690b8a", "notes": [], "params": { "forceDirect": false, @@ -58610,7 +58910,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8600e505ed74493379e85b8c5cd0f461", + "key": "43421b2c0e0ce62b0c3ab2f3fb4ced47", "notes": [], "params": { "forceDirect": true, @@ -58643,7 +58943,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10ee381a2d08e3e1f7c0b663bb666da4", + "key": "ec95966391ce56e4b6d11f9166187030", "notes": [], "params": { "correctionVolume": 0.0, @@ -58663,7 +58963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04a9e30c4e9789e69c240942b8e9d789", + "key": "beee319c81396df92b6afebec5f24164", "notes": [], "params": { "seconds": 0.2 @@ -58677,7 +58977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fdc32920f098e68485a26cdc2e475969", + "key": "7b5f858a6f8aabfb65948b97e9e09008", "notes": [], "params": { "forceDirect": true, @@ -58710,7 +59010,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a09bbc8366af34db557fd528c368344", + "key": "b49a9e938a4aa5787d04c91175d7e442", "notes": [], "params": { "seconds": 0.5 @@ -58724,7 +59024,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22844a9266f3336fd0ccea2b0808e555", + "key": "525d28f09323a1759ba7c0c473a2dafd", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -58743,7 +59043,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e0330166f14c55d864e8867cb98c35d", + "key": "f8d4a91cb35ef4233c6696a6624a39ce", "notes": [], "params": { "seconds": 0.2 @@ -58757,7 +59057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5dc5bdfd5ec3d91201e23c3648b8fc6a", + "key": "568bace589d87a02ea92780c6b77cd99", "notes": [], "params": { "forceDirect": false, @@ -58789,7 +59089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f40b6e88219ae8a55e8df689cebcd7b7", + "key": "9456e726074fd78c00c41506839d3f45", "notes": [], "params": { "correctionVolume": 0.0, @@ -58809,7 +59109,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b225e51c89112af0ff16fd125efb9c8", + "key": "40b79a0e968e480e29edae36336b7886", "notes": [], "params": { "seconds": 0.2 @@ -58823,7 +59123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b2bab4d4adc7c36cf9b094655cf80b0", + "key": "ee7e7f09b1289a7de585033d84223dbc", "notes": [], "params": { "pipetteId": "UUID", @@ -58839,7 +59139,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da0b99bfb332ebe50cf60d6d3bae5851", + "key": "5a3ca7faa59d637098bfd568e96e814c", "notes": [], "params": { "pipetteId": "UUID" @@ -58853,7 +59153,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ccb8778cea70c915bf2f48b73a33544b", + "key": "e37b565eb90ffb65034aaed731ea0fb3", "notes": [], "params": { "forceDirect": false, @@ -58885,7 +59185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "938db78fb395323b9b4ec31b3c50e4cd", + "key": "53f20769ae6229f041abdfc137ad5008", "notes": [], "params": { "forceDirect": true, @@ -58918,7 +59218,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "518174158fd4e9256fe43b7d64fd7f68", + "key": "c4c7ff01b8438d59152d6fc97299edc4", "notes": [], "params": { "correctionVolume": -0.5, @@ -58937,7 +59237,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b77030ad1314dfe94cbd340892f9c71b", + "key": "71ad0796f1c258b0985dc683a257e4d8", "notes": [], "params": { "seconds": 0.2 @@ -58951,7 +59251,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "67e89435971eaf63c2a1682f0b647b91", + "key": "f3f84e66520f440d0ba8d70199ffd16a", "notes": [], "params": { "forceDirect": true, @@ -58984,7 +59284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc819f7facb914e7078a4aeaab33df7c", + "key": "a4c148a5887ee9e31482dd440065eb79", "notes": [], "params": { "seconds": 0.5 @@ -58998,7 +59298,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4aeb01c347aee3d4ace3a5ce1cfbf0d7", + "key": "7e040e7a3653d759e3ffe4224a3fe5d9", "notes": [], "params": { "forceDirect": false, @@ -59030,7 +59330,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "771362d2e66699997304a33bf4750d02", + "key": "69d41503d4272b85ae9f163fc945ecd8", "notes": [], "params": { "forceDirect": true, @@ -59063,7 +59363,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac5825ab73940433178439cca6e7213b", + "key": "3815f446b55a100b4cc236f6120f9aba", "notes": [], "params": { "correctionVolume": 0.0, @@ -59083,7 +59383,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f00aa6e9834c3ecbd48c7a7e2cb03a0", + "key": "5d2b58b83d60105311821c830fe2eba5", "notes": [], "params": { "seconds": 0.2 @@ -59097,7 +59397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f755fcf9db5f75355a7f14cad9ff4ad4", + "key": "007ea5ae65235e5c9186664bfc93e795", "notes": [], "params": { "forceDirect": true, @@ -59130,7 +59430,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "059092ebc6179a1a553963654808db36", + "key": "9a182493965a7d44051b08c81116c02a", "notes": [], "params": { "seconds": 0.5 @@ -59144,7 +59444,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1fe3fb2ff267436b86ec796e56c35216", + "key": "761e5085b1decb6519080299f6eabd1b", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -59163,7 +59463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aab8c917ceac9f4c4333ecfd082a1f8e", + "key": "0876809bb28ee0c02ce3e6c60c16485e", "notes": [], "params": { "seconds": 0.2 @@ -59177,7 +59477,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43baffa62cfbb9265c968215159c723a", + "key": "5f8f28b966a09a4dd581ee655def6036", "notes": [], "params": { "forceDirect": false, @@ -59209,7 +59509,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5e1ec39225edbd623b57c18aa8908b1", + "key": "2ab810f67b95a555e81e9dd728166998", "notes": [], "params": { "correctionVolume": 0.0, @@ -59229,7 +59529,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db39521d7dbe0955ab9df0f6bc26107b", + "key": "11d2c06990862a40d8f73765256592c9", "notes": [], "params": { "seconds": 0.2 @@ -59243,7 +59543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1eda6dc0540d8f25080847aadb8141d4", + "key": "3bd3d582869b6c73c076ab78aea51144", "notes": [], "params": { "pipetteId": "UUID", @@ -59259,7 +59559,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "070b0c9d691687bb9ef371daf5b5e8ef", + "key": "4afa69c9c7b08c11d2e370709570e533", "notes": [], "params": { "pipetteId": "UUID" @@ -59273,7 +59573,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f00fe2ccdce35f79bf1e417f7f2b4222", + "key": "072ff32779d1c9b5df7c37d0dacbbad0", "notes": [], "params": { "forceDirect": false, @@ -59305,7 +59605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2ba3252268b5582570ddf3bb4c83bbb", + "key": "8b9a1fc52e5e029d9023854d1a457b13", "notes": [], "params": { "forceDirect": true, @@ -59338,7 +59638,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97cb14a8d0c8fa0ec225f2b27f5a8c09", + "key": "043536428551a3dfcaeead22f0172a23", "notes": [], "params": { "correctionVolume": -0.5, @@ -59357,7 +59657,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4ed6edfeb4b2c1e88bdf1776d385cce", + "key": "827fcb8b366cb39612c9bcbd6e1d4c00", "notes": [], "params": { "seconds": 0.2 @@ -59371,7 +59671,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34d6029a125af552d4a2660c818ff636", + "key": "c903f903a1d9229fc3733732ef46d32c", "notes": [], "params": { "forceDirect": true, @@ -59404,7 +59704,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e005e1b60b8246e60584c00b75a232a2", + "key": "ee2f647432ba780e869802e1ac3db7c5", "notes": [], "params": { "seconds": 0.5 @@ -59418,7 +59718,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ee7af05a6e59d29cce4cf0d513c61e45", + "key": "0cbc89e67f8848d329df24e869b702ee", "notes": [], "params": { "forceDirect": false, @@ -59450,7 +59750,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53c8336cfbe4ede3b28eda873a17aa74", + "key": "dba40a84d64999548237e5f9207d4496", "notes": [], "params": { "forceDirect": true, @@ -59483,7 +59783,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d05cfd5e41d95b2243d9c7dd0c26d779", + "key": "967ab040eeae71072a4ebf54ac0baa85", "notes": [], "params": { "correctionVolume": 0.0, @@ -59503,7 +59803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b81149251374663c8198625dbaaff25", + "key": "dbb123f7bf338e57734eb87ea6f0cc09", "notes": [], "params": { "seconds": 0.2 @@ -59517,7 +59817,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "141a3225e757ad03d9353f4c236120cd", + "key": "15fbb594d53851214300260cd35e07eb", "notes": [], "params": { "forceDirect": true, @@ -59550,7 +59850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27575b3b0a85d343aed2341ff394e60a", + "key": "058eaccb05cf4413ecb6e85ce94c7af0", "notes": [], "params": { "seconds": 0.5 @@ -59564,7 +59864,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0b1a2c8342aa9fd9d19c0fe7958605c", + "key": "bc8006fcce3ad6c9a3760a3b398ac9a0", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -59583,7 +59883,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13e5e789eb29dacbda68aafc9410105f", + "key": "5cc0cf6a777138809133c538d117a024", "notes": [], "params": { "seconds": 0.2 @@ -59597,7 +59897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fc763972433a9c21d183901cea8d8d4", + "key": "3e0114c681aac94ace0b976508869f36", "notes": [], "params": { "forceDirect": false, @@ -59629,7 +59929,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74e897a5248693f01b205239462b4299", + "key": "c02ecf4843df2b5e66cd3f78945684c9", "notes": [], "params": { "correctionVolume": 0.0, @@ -59649,7 +59949,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa6027fcbe569ffafb1f665ff19175bf", + "key": "bc0e0283b1fdf62103b4cb8a0371ee66", "notes": [], "params": { "seconds": 0.2 @@ -59663,7 +59963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0cef7889c8d19e61a5f53760bde4ebd", + "key": "64a7be9a512596e9049728e413dd0e2e", "notes": [], "params": { "pipetteId": "UUID", @@ -59679,7 +59979,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32b2ea2dc24687bedf4d220176c8f051", + "key": "9b4a6fddf582f90fe4eb97295ba91cee", "notes": [], "params": { "pipetteId": "UUID" @@ -59693,7 +59993,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92ee4832c3a3000cea35ace3025c4916", + "key": "3d8c35b449a295e8c3195a0709991695", "notes": [], "params": { "forceDirect": false, @@ -59725,7 +60025,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7059ce7545e7a6a117bfc2baf0463eb6", + "key": "ff835a9d93eb65c7bfe97a9485293ade", "notes": [], "params": { "forceDirect": true, @@ -59758,7 +60058,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "915e1628c1b75724760184b394e7acab", + "key": "c0f3493d040d88cef9725eed2b953a66", "notes": [], "params": { "correctionVolume": -0.5, @@ -59777,7 +60077,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "725e477da35e349226f87de4fec2f133", + "key": "e51df0f75037db5f676839a774ffb2c5", "notes": [], "params": { "seconds": 0.2 @@ -59791,7 +60091,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0945a4ed8ceaa57730e7aa9430e98ffc", + "key": "fc3f3a10c05bcf2c45254f591bef12ec", "notes": [], "params": { "forceDirect": true, @@ -59824,7 +60124,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1de52f8bec084401d8b5d7d33ed0778b", + "key": "4277462878f1c49d9005832a2af2011d", "notes": [], "params": { "seconds": 0.5 @@ -59838,7 +60138,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a5fd6ef6579a9990e9341dd72dcf49b", + "key": "f53ce03e721fac15ff2aac57171bbe57", "notes": [], "params": { "forceDirect": false, @@ -59870,7 +60170,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8dcf73499f865cabb0bd0536316ea93", + "key": "c1a6a05ff118bc512fc948919da53f1d", "notes": [], "params": { "forceDirect": true, @@ -59903,7 +60203,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5b5002ce6a7bc496ae089e64809eaa9", + "key": "23db521ef407693a75616c673a96c494", "notes": [], "params": { "correctionVolume": 0.0, @@ -59923,7 +60223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c2a0deb1c37a0ff6ef48c9dc7e403d1", + "key": "f16a1010445aec737f629ada24a22147", "notes": [], "params": { "seconds": 0.2 @@ -59937,7 +60237,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6d0ffa6e9c7a653592ee2b78f116611", + "key": "8ab8f9b1b01bd172334aab2146a343b6", "notes": [], "params": { "forceDirect": true, @@ -59970,7 +60270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10958247b5456a49070911553833208d", + "key": "e872070566562068ca6070f96c3b8aa4", "notes": [], "params": { "seconds": 0.5 @@ -59984,7 +60284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3c1c18c6309a067ead1c1e7ea4c2d88", + "key": "a427b95cc864ed23b21a207212456a26", "notes": [], "params": { "correctionVolume": -0.47777777777777775, @@ -60003,7 +60303,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c859c90d1571371ffef63217da94ca85", + "key": "9d15794640f88aca6efaf486b0e82c27", "notes": [], "params": { "seconds": 0.2 @@ -60017,7 +60317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e9a8545afa94305d1e36d1b139ebf3e", + "key": "0b3f86dd5126f76d23c6d417226c8f58", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -60046,7 +60346,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26fc6e2db1bbc5716dfc29942073f367", + "key": "ef8d755e419c2f4910ac017fc91c926f", "notes": [], "params": { "homeAfter": false, @@ -60061,7 +60361,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a98d7c23529a95d0e269f6869c20c008", + "key": "579ba9ca032d455a093ba67de2f30e8b", "notes": [], "params": { "liquidClassRecord": { @@ -60436,7 +60736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a4ef02313b8d9160d2f9ad99eba31075", + "key": "4a5cf6c8c106734bd45e0f661f0b537c", "notes": [], "params": { "labwareIds": [ @@ -60458,7 +60758,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7da4a42bae44f34427536dc1b9e53adc", + "key": "c7f8bc6cef637a1c25bbc4c729b3ffcf", "notes": [], "params": { "labwareId": "UUID", @@ -60491,7 +60791,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df6b8097cbd873539bd4b04b2387a948", + "key": "72b6cab4c03748fc8311e04566644cdc", "notes": [], "params": { "forceDirect": false, @@ -60523,7 +60823,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "049d8064a8dcb71eee5f65af5c7e5d46", + "key": "29dc2762bebbb4eda9a318fecd303252", "notes": [], "params": { "pipetteId": "UUID", @@ -60539,7 +60839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3a6e2ec11a86f4cb71229db4d6c1ae7", + "key": "8de0727608ae7fbdf9263a91b2d2c5db", "notes": [], "params": { "pipetteId": "UUID" @@ -60553,7 +60853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5caf320fd16442d1e0c0204a221beb3", + "key": "d5db5ad04bfdd6ad4002c8d5ff816df2", "notes": [], "params": { "forceDirect": false, @@ -60585,7 +60885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e1da2e61de15c82b27c569927c31119", + "key": "7e2fe7d4fc6dc026a6a0cda00352b461", "notes": [], "params": { "forceDirect": true, @@ -60618,7 +60918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8815a286ecdeb037e5e83b7180d28c7a", + "key": "9a81ba4f9ed8ad935b948b6b7fbf0d3d", "notes": [], "params": { "correctionVolume": -0.2, @@ -60637,7 +60937,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64eeefd89e85e0fcbdf8fb3c6fe0b64c", + "key": "2de431c60c274383ac2a07c44f217b55", "notes": [], "params": { "seconds": 1.0 @@ -60651,7 +60951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3abd9c5aed2abf5b9684c6bac7f40e7c", + "key": "fa14b35e290f34c373adc1d55fa576fd", "notes": [], "params": { "forceDirect": true, @@ -60684,7 +60984,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93bda9c2aadb893e66fc45478d2604b6", + "key": "e4b1193c5e7440e52976009927e9ca49", "notes": [], "params": { "forceDirect": false, @@ -60716,7 +61016,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36f00bc4251e9b20bb8c4651be4cbcaf", + "key": "a653f37335011f885155b8b7fbfa105b", "notes": [], "params": { "forceDirect": true, @@ -60749,7 +61049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f230e8c439fb3259a25dafc00ffc521e", + "key": "c2d5b983386ebcae4f9a6d45a012f7bb", "notes": [], "params": { "correctionVolume": 0.0, @@ -60769,7 +61069,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1d1b9f6812f30ec0e9dfe9af1b0d7ce", + "key": "c205ea19911ecff7fb40b583a8b504e4", "notes": [], "params": { "seconds": 0.5 @@ -60783,7 +61083,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "455193053893dc17834a4b9849018fdb", + "key": "cc8b8453fd6e4202114124c2187ce5a9", "notes": [], "params": { "forceDirect": true, @@ -60816,7 +61116,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e40912a634c21f5f44da44ec148b31a4", + "key": "2e6d843bb0aa4cfc1715f3bca53fb6f9", "notes": [], "params": { "pipetteId": "UUID" @@ -60830,7 +61130,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07b7e08dda7a784ee0f72e094b2f3140", + "key": "5efc29f0058026ea7bea9b3b099a7a59", "notes": [], "params": { "forceDirect": false, @@ -60862,7 +61162,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33b30eee9cf2baf79bc9474f8798f9b6", + "key": "d323a7f9f99feec7a760d76de3f9797c", "notes": [], "params": { "pipetteId": "UUID", @@ -60878,7 +61178,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6869a36901fab105f526ce613be8f8e7", + "key": "e071a6faabf062137b36d65bd8a9b616", "notes": [], "params": { "pipetteId": "UUID" @@ -60892,7 +61192,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ceabca4f9bcb912ae56783df94bcc05d", + "key": "547abf3974a4dcea69f626e09cbe87aa", "notes": [], "params": { "forceDirect": false, @@ -60924,7 +61224,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79529555eec5066d83e84fabf3856af3", + "key": "a7b0b49b4b378475b3be1a4de7d44f7c", "notes": [], "params": { "forceDirect": true, @@ -60957,7 +61257,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "288240206a627c7c5df3b763aa44384a", + "key": "f3def83390d1388650c56cfbbf3fd0ac", "notes": [], "params": { "correctionVolume": -0.2, @@ -60976,7 +61276,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d6ecd431f4a758ff9151605d55cd8f6", + "key": "2e6c67cc507df718621baa630e9ff6c6", "notes": [], "params": { "seconds": 1.0 @@ -60990,7 +61290,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6669a763d7ebdc16d07d88cdacab30ed", + "key": "364ace892f05b6cc2504171e9a5ac4c8", "notes": [], "params": { "forceDirect": true, @@ -61023,7 +61323,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1bbd695e397e79cffe364a375463561e", + "key": "56df4ff95a69941e1f886ab05185bf8d", "notes": [], "params": { "forceDirect": false, @@ -61055,7 +61355,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f949e62a0a8be7c93578f51379e7e43a", + "key": "f272c573a9e60184ce676a0020e99448", "notes": [], "params": { "forceDirect": true, @@ -61088,7 +61388,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "783a3c673dec4208b77037845706d085", + "key": "36c065e1e351b40524aafebbdeedd763", "notes": [], "params": { "correctionVolume": 0.0, @@ -61108,7 +61408,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28a8852b974db907f5f89ed493b73919", + "key": "777cc18175475030e7dbc0ed73ce79bd", "notes": [], "params": { "seconds": 0.5 @@ -61122,7 +61422,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ec18a5febf0d5113882f8c77c13e121", + "key": "480a37b3efd431abda670cdcb0d31e72", "notes": [], "params": { "forceDirect": true, @@ -61155,7 +61455,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3913440f493fbac614d5736b49e158e4", + "key": "17586168defc2d13b1bdd574ac6e38db", "notes": [], "params": { "pipetteId": "UUID" @@ -61169,7 +61469,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3b6c13ddcef4828bc284f24bd1f908f", + "key": "67d3f62ffe12fa5a237ff3ae5f82ae0c", "notes": [], "params": { "forceDirect": false, @@ -61201,7 +61501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52a7e9f77327f71f835890223c0e0d32", + "key": "bd075761d967f99a40392ca29cd447d7", "notes": [], "params": { "pipetteId": "UUID", @@ -61217,7 +61517,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1321411c09de45ff4f2dc3e7f524c567", + "key": "75166f91d65b19d94252a2f942713f37", "notes": [], "params": { "pipetteId": "UUID" @@ -61231,7 +61531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4bca4a216336d44b112eac9c0a04ff05", + "key": "7ce5c80e32aee803f3a192933d4e87d8", "notes": [], "params": { "forceDirect": false, @@ -61263,7 +61563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62ad9680b4b7d4c9494fd1fff41625a6", + "key": "40a5dacaf244f1a1159b0be1bac88e64", "notes": [], "params": { "forceDirect": true, @@ -61296,7 +61596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7037a9b62edcd082f63df5ed9ddab0c4", + "key": "0b47d020a0243f6ae2597cb74a0aa4da", "notes": [], "params": { "correctionVolume": -0.2, @@ -61315,7 +61615,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9febe22ddd67ffc7344178de5a73105a", + "key": "c9cd0770af41a0ed10c9d48b28e4a6e5", "notes": [], "params": { "seconds": 1.0 @@ -61329,7 +61629,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9b14b791ed4fd8df908946663f8933c", + "key": "47734b8a283588be22756e0323e66d8c", "notes": [], "params": { "forceDirect": true, @@ -61362,7 +61662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0f26b5a9ce94b7d169f532b443f9a8a", + "key": "517794eb656ad35b9e3a862be0ed36ee", "notes": [], "params": { "forceDirect": false, @@ -61394,7 +61694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "337c01e71ba8d0200013916f647ed006", + "key": "4b36a75a2cbdea81d9e98c34646774b7", "notes": [], "params": { "forceDirect": true, @@ -61427,7 +61727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "971c703ffb2b23223a911aece251601c", + "key": "1ed94e227b0d9551a5bcc8fc6611a442", "notes": [], "params": { "correctionVolume": 0.0, @@ -61447,7 +61747,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b6acfbc6947463bee9739edfffd23e2", + "key": "f6076cd7f90e41c95cdf86a5d23df761", "notes": [], "params": { "seconds": 0.5 @@ -61461,7 +61761,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd3731850cedec76618c52e598958812", + "key": "412635fc0bbf1fea77acb19446203945", "notes": [], "params": { "forceDirect": true, @@ -61494,7 +61794,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c70d4454f2d5a499c811b859a30422f", + "key": "c808ea7d4c64e3e7ceec897cb7f64335", "notes": [], "params": { "pipetteId": "UUID" @@ -61508,7 +61808,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83bf58dd3817472c14b3f195e2f1f09a", + "key": "a1c6f7ffd605fd7cddfe4ccd8470b3e2", "notes": [], "params": { "forceDirect": false, @@ -61540,7 +61840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45d8b1cb888a34b4dc5ad14518ed0d17", + "key": "5a02ab398430e5dad4829110599c8bec", "notes": [], "params": { "pipetteId": "UUID", @@ -61556,7 +61856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "caa30b790027715a5cacdc71d057571f", + "key": "45559d2b6a2050dda399c14a2c98c727", "notes": [], "params": { "pipetteId": "UUID" @@ -61570,7 +61870,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7eae5c59f55dcdbc52a3ac440c3a179f", + "key": "7d0ead80bb1b9fe95b35ad53b44b07ae", "notes": [], "params": { "forceDirect": false, @@ -61602,7 +61902,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8497aaf72a5b038721d4dc7633c3de24", + "key": "9b4a9e8a75d6164f23c1ecceb21bcf82", "notes": [], "params": { "forceDirect": true, @@ -61635,7 +61935,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "acf8e2ac3cdd886536039c0c863a50ba", + "key": "9aa23cd43e5513d8ae7ef7b0a604bca2", "notes": [], "params": { "correctionVolume": -0.2, @@ -61654,7 +61954,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b3057acc5a1b7c4fdc0e143aa1ca609", + "key": "2192540ff73fecf5bec42e80dc623aad", "notes": [], "params": { "seconds": 1.0 @@ -61668,7 +61968,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "848c5a6ac8db11e6f3a61801d9963c07", + "key": "7af586674421914e83611d49524b3327", "notes": [], "params": { "forceDirect": true, @@ -61701,7 +62001,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f51d8f4a638954d1d53f815e94d51daf", + "key": "133e0c3888fdb3568db6543d81e6c5cd", "notes": [], "params": { "forceDirect": false, @@ -61733,7 +62033,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d46d644dae004d51ccf18047a7e5047", + "key": "ca38bd27c4a0542f8c9b20b44369e33e", "notes": [], "params": { "forceDirect": true, @@ -61766,7 +62066,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f5f896b1c3506aaa81b1f9988a269a4", + "key": "225b4ebb03db83ff3e0656d64ae36c5a", "notes": [], "params": { "correctionVolume": 0.0, @@ -61786,7 +62086,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3729fad3139e1741e8d35f286f357d9e", + "key": "d63cb736c30e2bb974cc0482d5307de7", "notes": [], "params": { "seconds": 0.5 @@ -61800,7 +62100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a75901998b3fdf143c1499304856c9c", + "key": "b863c1f099b2ecdf8caf586a424b411a", "notes": [], "params": { "forceDirect": true, @@ -61833,7 +62133,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0c1123cee812e0d707c50748261f158", + "key": "4de2e4287b012602cf0c0bf15b164cc0", "notes": [], "params": { "pipetteId": "UUID" @@ -61847,7 +62147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f22515dcfeaba5ec9daf216e6debbf33", + "key": "aa4825f2af04cdd8542a8312d7004616", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -61876,7 +62176,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e23165ed926487a6286f42f68936d11", + "key": "55f5005a57adfc4e3339106dbdb2ec10", "notes": [], "params": { "homeAfter": false, @@ -61891,7 +62191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04cddbfcb88681bf209e91a9064fdf02", + "key": "73a2d07fe6e28a3e4cf31671d65e1436", "notes": [], "params": { "liquidClassRecord": { @@ -61945,11 +62245,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -62169,7 +62469,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -62179,16 +62479,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" @@ -62250,7 +62550,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fdd20412ba0e2fd03ec8dbe9c18493d5", + "key": "79ae7834ee7fb5d6fcd40213cf163aea", "notes": [], "params": { "labwareIds": [ @@ -62272,7 +62572,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0a0ac7d57f091fd03645e991a8051fa", + "key": "ab9f3a2b5fbd706f72cf40e586ed660c", "notes": [], "params": { "labwareId": "UUID", @@ -62305,7 +62605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "019a36e5cc0ec98b4beb7ff02c83a8be", + "key": "b63af97fee60564584fb1efe8345629e", "notes": [], "params": { "forceDirect": false, @@ -62337,7 +62637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b7b7ce51256629223010cde3a003875", + "key": "8bb3afb5295d7d8c463f18ecfe948c60", "notes": [], "params": { "pipetteId": "UUID", @@ -62353,7 +62653,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f01ed7d9eb2a701828ccff1317385ecf", + "key": "1e27537dee2eff4185d64a2b8fa29bce", "notes": [], "params": { "pipetteId": "UUID" @@ -62367,7 +62667,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48460943fbc17d4094332d5cb5b7d8aa", + "key": "3e2ab1eadb41de160f7756a3affbb819", "notes": [], "params": { "forceDirect": false, @@ -62399,7 +62699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc86d894ea2ba819c48d17473a8720cb", + "key": "4786011acb5fa1ba934adf43de6fdd3d", "notes": [], "params": { "forceDirect": true, @@ -62432,7 +62732,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abfe9c9eae0b5a50306e51cd6be9847a", + "key": "604181b01aba91b1ba61638d026ed745", "notes": [], "params": { "correctionVolume": 0.0, @@ -62451,7 +62751,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8eaaf6f5678204cc1847ec93169cea63", + "key": "e17a42951164df675248ae66cfd446d6", "notes": [], "params": { "seconds": 0.5 @@ -62465,7 +62765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7310dbf4ef44f06234592b91fd3dc103", + "key": "4ca87848d2ba100a27ef0e376245692c", "notes": [], "params": { "forceDirect": true, @@ -62498,7 +62798,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4fd270cb7b0a2d18abd88b748232709d", + "key": "0a0f4206851bb5e1701b16db7f866125", "notes": [], "params": { "forceDirect": false, @@ -62530,7 +62830,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b44fe9958f072f9de5919841261bad54", + "key": "a002c248159afa009fe6c9b2056c2b0b", "notes": [], "params": { "forceDirect": true, @@ -62563,13 +62863,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ba6564095ccd7a31d310dda34f577af", + "key": "e9c95348021717e190fee3c743617315", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 50.0 }, "result": { @@ -62583,7 +62883,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "425bda2381abb01ca5659fd77d4eca5a", + "key": "51f944ad4b9d6eb55d62071efc944935", "notes": [], "params": { "forceDirect": true, @@ -62611,12 +62911,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea0bffbcf7f43b2124b22d13ef6d96bf", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7af49c9d7fc1743baca332794d14e69e", + "key": "fd7a24c005d4c36459bae9135fdb5b96", "notes": [], "params": { "pipetteId": "UUID" @@ -62630,16 +62945,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46e704cd1ac5f2177b4e443180152904", + "key": "8ec986d2eb968aac384abdf09be401f4", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -62649,7 +62964,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8cc90730038f48a31a321d9fc3884a4", + "key": "6e0afb26df61387eaccd4eef9e15e00c", "notes": [], "params": { "seconds": 0.5 @@ -62663,7 +62978,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3af790b24a5fa59a37a498ab1c874cee", + "key": "44c589007521ae82471897f7d2ca5b77", "notes": [], "params": { "forceDirect": false, @@ -62695,17 +63010,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04fb69ccc1c7f51b98f611e9f4c273e7", + "key": "fa1189d4b851fe92885210031ce46d58", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -62715,7 +63030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b110c990b1e85cf84c6ea256177c5bf6", + "key": "53c7d45ec755a25534e73c54c943b7ee", "notes": [], "params": { "pipetteId": "UUID", @@ -62731,7 +63046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c177c4627004b5f31b3e8c76d7d59610", + "key": "5a3237cbc46f73272de795e6bf3eb768", "notes": [], "params": { "pipetteId": "UUID" @@ -62745,7 +63060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07900f0f38ae3277e63b09ee5e7af78b", + "key": "cf516bb94bd12fa2683167a51b831622", "notes": [], "params": { "forceDirect": false, @@ -62777,7 +63092,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b69e54a2d4ca0740795e4d8015ef5e24", + "key": "c1815f2bb1e061a01e6c61496614ab7c", "notes": [], "params": { "forceDirect": true, @@ -62810,7 +63125,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2dbadb9794ed42fd7ff00270f38f9807", + "key": "be5db96d8ece136dbc181242a1e397a8", "notes": [], "params": { "correctionVolume": 0.0, @@ -62829,7 +63144,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aeec2e401f6accb51bed94be694fdac6", + "key": "570002031e2d40436f226eaf66c315a9", "notes": [], "params": { "seconds": 0.5 @@ -62843,7 +63158,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a3ac853dfa4ea1745d7caf18d338010", + "key": "5681bfedd2113dba6404c2fee2dd832e", "notes": [], "params": { "forceDirect": true, @@ -62876,7 +63191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0841ddf956e36bcae0bd86483d7a9dd", + "key": "6819fc0248a4b0c69be04d4526928e7f", "notes": [], "params": { "forceDirect": false, @@ -62908,7 +63223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f188b108b20026de258377b7065a989d", + "key": "ad8988f68582f838c57044f151b5eb0c", "notes": [], "params": { "forceDirect": true, @@ -62941,13 +63256,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1e2a0464cba3f3058e2a143d9ad5221", + "key": "96d3b0b5496b0b53d766680d51a70d11", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 50.0 }, "result": { @@ -62961,7 +63276,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9933d9cb583375332fef50480ff3a7e", + "key": "ac69fca5547f7842146c8f751f3e7790", "notes": [], "params": { "forceDirect": true, @@ -62989,12 +63304,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "135b1096305e5ded5674838ca182a69f", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f76ffabf1bd405b6c77e2f03739bfd6b", + "key": "9dbfca38a08829745a6b6e3b297b19e4", "notes": [], "params": { "pipetteId": "UUID" @@ -63008,16 +63338,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e24d5f350b06fa5298f98802b9103a06", + "key": "63f8ecb0f84555609ea2b54e6699c385", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -63027,7 +63357,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c7d94680e03d9efc4ac8d9f9b8b12c5", + "key": "1adcf7c6b9825aa427ea9d14f216ee08", "notes": [], "params": { "seconds": 0.5 @@ -63041,7 +63371,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a21b1ab8eae134757af981662441c42c", + "key": "5f2da6f6684cc7950d9890ffdd8f3737", "notes": [], "params": { "forceDirect": false, @@ -63073,17 +63403,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df1f8dc853a1ffa257375715acb6cce5", + "key": "508125a11abf7bc3b7f5698c242b4673", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -63093,7 +63423,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5513940c062b7be07127e87c60b3ce8d", + "key": "a6e4e33ea188e16b62af1c5a003ab826", "notes": [], "params": { "pipetteId": "UUID", @@ -63109,7 +63439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59f8de20c0c906cf93dfc9509557e86a", + "key": "300ff752d43aea579d4526a94b19a52f", "notes": [], "params": { "pipetteId": "UUID" @@ -63123,7 +63453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22e62caa5397e64eca70ac41d12880c0", + "key": "7f336d252cd273acb3ef90f2b48fca70", "notes": [], "params": { "forceDirect": false, @@ -63155,7 +63485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3c4711280d7d65ca909d74fe356b60c", + "key": "f3f9db9406dcf225abae88b1deba2807", "notes": [], "params": { "forceDirect": true, @@ -63188,7 +63518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "06c2eaf550882731a70f5c81c9e0fe47", + "key": "ac752e09c12f5cd026bf39ea6534e02f", "notes": [], "params": { "correctionVolume": 0.0, @@ -63207,7 +63537,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "796b4643b4a47dde8949e216c1290fdf", + "key": "a28ea4f002371b760e62dc5a84b56fd4", "notes": [], "params": { "seconds": 0.5 @@ -63221,7 +63551,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "662c723b3b87ff0d73d458c26267c390", + "key": "a73a17bd55a00d1afdc39ffd83286bfd", "notes": [], "params": { "forceDirect": true, @@ -63254,7 +63584,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4036bb6ba55b701cc34742e89726f254", + "key": "4bb99bb7d6a7f1efd745a7cbd87f6ff0", "notes": [], "params": { "forceDirect": false, @@ -63286,7 +63616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3997dc76bdc04d7282c179f3ee8d4ff9", + "key": "2190b944340ec7997f62610fcff7d727", "notes": [], "params": { "forceDirect": true, @@ -63319,13 +63649,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ace3fdaa83da43571631d9daf2187270", + "key": "a79c776f4db1876a733e2c0d38359ec1", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 50.0 }, "result": { @@ -63339,7 +63669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b0952d62b9e0c15fd49c25ef13ec592", + "key": "e21a84731216d221cbc02c7ddbe91a0c", "notes": [], "params": { "forceDirect": true, @@ -63367,12 +63697,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "988d299a903c931fb92cd6871fa1821c", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f1b8f5cdbcaf1e7f8f274011d997bdf4", + "key": "f45970c37b6005f9cb5a9bc7846b79b5", "notes": [], "params": { "pipetteId": "UUID" @@ -63386,16 +63731,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eed63f9539e8c9f0dd7f9906f74c6b5a", + "key": "bd229b503cfa39d32383054f4fe20f43", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -63405,7 +63750,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c68bd8cff66f56cebc0506d4257aabc5", + "key": "3c604e926106f0e8307a9a4e7002f48b", "notes": [], "params": { "seconds": 0.5 @@ -63419,7 +63764,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a7d25da82298eb5a63bdb08452a76bc", + "key": "2a196a7e31bdb2e5b2e14f984337ace9", "notes": [], "params": { "forceDirect": false, @@ -63451,17 +63796,17 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcb846a9891026087b4f73f0d2c3ead0", + "key": "7776cfe6c1044dd173b987ae9b06db97", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", "pushOut": 0.0, - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -63471,7 +63816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ecd1e1b5e93b83b92b8ac51700fb9f9", + "key": "1750a5944c0b0ba52802a77f35b3f134", "notes": [], "params": { "pipetteId": "UUID", @@ -63487,7 +63832,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f5949d60a2961d7aa6b8ff6bc82c5ed", + "key": "ac19585ba8646d505d4c449770fcf380", "notes": [], "params": { "pipetteId": "UUID" @@ -63501,7 +63846,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd3b8bb712aa01cab421bacc26130ed6", + "key": "23b31d402198e9437a0f93517a88f2f4", "notes": [], "params": { "forceDirect": false, @@ -63533,7 +63878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18e2b913bfad06969c9b61af6e96184f", + "key": "7b0599479e67072ac9eefa38d88eaee7", "notes": [], "params": { "forceDirect": true, @@ -63566,7 +63911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a317858d3e9dcd5ed3c8a104a79a0ca8", + "key": "d3dd2cd1ce1063746b6079d23e718af6", "notes": [], "params": { "correctionVolume": 0.0, @@ -63585,7 +63930,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55c259c1583f0edb67c23aa675cc03f3", + "key": "78f12637ca514c7849bc4e78ddc4e3c0", "notes": [], "params": { "seconds": 0.5 @@ -63599,7 +63944,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "328de1154ec1811a38266b9a7a00a5e7", + "key": "183f5dbab722e390125a61b6411012bf", "notes": [], "params": { "forceDirect": true, @@ -63632,7 +63977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14cbd0713033b14853df48949a8c29af", + "key": "f319dec611bfde0f82a7c20ab797ddb9", "notes": [], "params": { "forceDirect": false, @@ -63664,7 +64009,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da1ed1aacea3672c48a9b711d19246bb", + "key": "7cee134ce95771321957867acb2eb397", "notes": [], "params": { "forceDirect": true, @@ -63697,13 +64042,13 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2b9f4ba5b414a0264dc0aedf51ad9c0c", + "key": "d9f9195ee1620838b8f00a98c6321c86", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 478.0, "pipetteId": "UUID", - "pushOut": 20.0, + "pushOut": 5.0, "volume": 50.0 }, "result": { @@ -63717,7 +64062,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d17e5c5ae38eda6894c9993c7532597", + "key": "a8b5432a19e349a5f9bc547b2cb3d5d3", "notes": [], "params": { "forceDirect": true, @@ -63745,12 +64090,27 @@ "startedAt": "TIMESTAMP", "status": "succeeded" }, + { + "commandType": "blowOutInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6f43834ae3f15cc3a01648061572f74", + "notes": [], + "params": { + "flowRate": 478.0, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, { "commandType": "prepareToAspirate", "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5a82de4a38a9c0387a2520bcf5c035b", + "key": "c4c3706285693f1916d902d86177ec61", "notes": [], "params": { "pipetteId": "UUID" @@ -63764,16 +64124,16 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75e353c68e7bb0738715e516274209cb", + "key": "799ba68ffd9a275a2cad0018959f94df", "notes": [], "params": { "correctionVolume": 0.0, "flowRate": 318.0, "pipetteId": "UUID", - "volume": 1.0 + "volume": 0.1 }, "result": { - "volume": 1.0 + "volume": 0.1 }, "startedAt": "TIMESTAMP", "status": "succeeded" @@ -63783,7 +64143,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db7cac7fa758d8c3f6881ec42d01cd79", + "key": "365c560ed0069c50ccf252fa43323b3d", "notes": [], "params": { "seconds": 0.5 @@ -63797,7 +64157,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8b0ae4572cc26575776e26d48990a685", + "key": "ab9aaa047363a8ddde5596ea25688169", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -63826,7 +64186,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1b454983748acd48214dbda21516782", + "key": "76328a07af8b8e8642e238ab0bfffe0c", "notes": [], "params": { "homeAfter": false, @@ -63841,7 +64201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3758bb0daa1a518917c01210110f65ba", + "key": "6b068d3ee1b47948e69454a4a0d23a04", "notes": [], "params": { "liquidClassRecord": { @@ -64240,7 +64600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "39aa8d3c312b89f828740197f324cdf3", + "key": "780d87f235c62b8ecbd24fcfe4f59073", "notes": [], "params": { "labwareIds": [ @@ -64262,7 +64622,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "214ad8ad121916067d5a769fd69676b9", + "key": "a8b96cb45ab3b1e9295c82d740fd58b4", "notes": [], "params": { "labwareId": "UUID", @@ -64295,7 +64655,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9474b497c36b44b90fb0743a74fd1a05", + "key": "07e6846917cc2b050d21e138ff654623", "notes": [], "params": { "forceDirect": false, @@ -64327,7 +64687,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ac854f5dad734a2224b7c9c4b78d12b", + "key": "5c9ab95e0b6628273e8a815d09a7a82f", "notes": [], "params": { "pipetteId": "UUID", @@ -64343,7 +64703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad3d7d14e30d2ed2b42a2703e012024b", + "key": "319d23532f79006d3e9483c0e1a3de40", "notes": [], "params": { "pipetteId": "UUID" @@ -64357,7 +64717,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "845bd88f76528c8be621d0f86769f83d", + "key": "b9fcc8e9f88e9e511b2961c1a671c24c", "notes": [], "params": { "forceDirect": false, @@ -64389,7 +64749,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7dd604060dd8d4c6aff785a47af223e4", + "key": "37aae8f40e317b2c9885b60c50bbe6bc", "notes": [], "params": { "forceDirect": true, @@ -64422,7 +64782,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff614a480de51d2e5cde882471f7a4f2", + "key": "697ed86317a31262c0c5e52ec8209f43", "notes": [], "params": { "correctionVolume": -1.3, @@ -64441,7 +64801,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9e960bdb0405cdf060005cd62d5b977", + "key": "2845a88c0fe137220c2dab318e9771d3", "notes": [], "params": { "seconds": 0.2 @@ -64455,7 +64815,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6075d828137d9229208a3c6361596a3", + "key": "b5427cf16978c5e91e3f488c34220632", "notes": [], "params": { "forceDirect": true, @@ -64488,7 +64848,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b393244b3adf66d6dc0e69562a2fe43", + "key": "ad0f5b06e01b24e9b22b7b30a6435e57", "notes": [], "params": { "seconds": 0.5 @@ -64502,7 +64862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53c1126b93c4f60e7bed58225fd0f430", + "key": "ca0f79edade113010079495b409f9972", "notes": [], "params": { "forceDirect": false, @@ -64534,7 +64894,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "35ef29b6f72adb00cc057cf7fe7a1ad4", + "key": "7a3afaf92fec1e7f7d9ee42efd91cbc7", "notes": [], "params": { "forceDirect": true, @@ -64567,7 +64927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6b53216603bc0c2dc48999f388d4f55", + "key": "efc942206ddfb8a4c77283402c1c9595", "notes": [], "params": { "correctionVolume": 0.0, @@ -64587,7 +64947,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "511e10e48f55ef5d70d9922d754e48fd", + "key": "0ed89e6b8ee95bc296ea31ff60325eb5", "notes": [], "params": { "seconds": 2.0 @@ -64601,7 +64961,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89f44475a7f19813687648a655bc893e", + "key": "588d82ff2593eca980ba457d05d767dd", "notes": [], "params": { "forceDirect": true, @@ -64634,7 +64994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a609048a7c347f7009838e89cfde20a", + "key": "0ec7bc27642b26ba297bcedf9cf470c3", "notes": [], "params": { "seconds": 0.5 @@ -64648,7 +65008,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "763ac16872f4737c5a81f880d09a3ee7", + "key": "c145d1262086add839a62f6b1428f9c1", "notes": [], "params": { "correctionVolume": -0.75, @@ -64667,7 +65027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83c76bd5990e73851e919a811ebf4c32", + "key": "7ee8b6ff752800ba247050e08eeecd7c", "notes": [], "params": { "seconds": 0.2 @@ -64681,7 +65041,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7d0bcb929cc3581f4cda365424e3eb50", + "key": "a478060cfe6519a35fbc7e077f1c6047", "notes": [], "params": { "forceDirect": false, @@ -64713,7 +65073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4c1e3eab3b45c969ec718ccd74dbfdb", + "key": "fe216db07164e9c157f2c5203ad21006", "notes": [], "params": { "correctionVolume": 0.0, @@ -64733,7 +65093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d48be9d5a974937968035b0ad49da63", + "key": "488d0eb4d7df9cac3f3cc6ece8c0f842", "notes": [], "params": { "seconds": 2.0 @@ -64747,7 +65107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ac63d7a7566a503f4ce6aecf70b503d", + "key": "504fbd46dd567e7358b63f859ea52148", "notes": [], "params": { "pipetteId": "UUID", @@ -64763,7 +65123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4729d8c434fffa48ff50d25ebc6f4d99", + "key": "ce948022055c55927deafb4d3e3b48a5", "notes": [], "params": { "pipetteId": "UUID" @@ -64777,7 +65137,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89577f1631720827a13b4c85bf9bdaae", + "key": "a4caedbd14b4b0819151df58143e0f46", "notes": [], "params": { "forceDirect": false, @@ -64809,7 +65169,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63ad8e078d090c7b8933e3f09e7c35a4", + "key": "45856f5213c2779b16052b46911437f3", "notes": [], "params": { "forceDirect": true, @@ -64842,7 +65202,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dfdc7511a13befd3fbc9047a6a421e0", + "key": "0d2e715715593c69593690fe275b032c", "notes": [], "params": { "correctionVolume": -1.3, @@ -64861,7 +65221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "beff3db3c1e2a5a5781f98146c0209d7", + "key": "8aad134a747d952fca3fb165cc5bde7d", "notes": [], "params": { "seconds": 0.2 @@ -64875,7 +65235,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19c0b7f619b6605789b34b4a95708466", + "key": "89af7c3441d31ad222a84a507bf90007", "notes": [], "params": { "forceDirect": true, @@ -64908,7 +65268,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "246d49b20e73889ac2662249aba8ea53", + "key": "903d972db9d87d23d72b5e9fc86d2f96", "notes": [], "params": { "seconds": 0.5 @@ -64922,7 +65282,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3fab5609292d2395ad5f7b616f16439a", + "key": "016d997a33738584c5421f620bc076a9", "notes": [], "params": { "forceDirect": false, @@ -64954,7 +65314,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3502a4f0d7f6629bd22d11bbd1f7e510", + "key": "ccf059d817266698ad6edf0efcbfb7ae", "notes": [], "params": { "forceDirect": true, @@ -64987,7 +65347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "04b57e9c6af2695786606f667f7caf6a", + "key": "6751dca9a7702d190866fe9d5f1c6549", "notes": [], "params": { "correctionVolume": 0.0, @@ -65007,7 +65367,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "03ed0bdd130349e67c1ffab9f7349c52", + "key": "ce040ee7b00e692fb2b7ca7b28ab0430", "notes": [], "params": { "seconds": 2.0 @@ -65021,7 +65381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69ad09f986b3608b5118883b83da9669", + "key": "f67de6d751a4e6ab715dfdca7a6e8ca0", "notes": [], "params": { "forceDirect": true, @@ -65054,7 +65414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "664e9e1a032008e28d808fc78528d890", + "key": "e9e198cfbc9456f3a3359e9265c832ec", "notes": [], "params": { "seconds": 0.5 @@ -65068,7 +65428,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a00fef2d7affa5e79f2544cf2fec75b", + "key": "cff35966087820f20cca2b965dc22ef1", "notes": [], "params": { "correctionVolume": -0.75, @@ -65087,7 +65447,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25b06557ce8ef56ff3daaa96f030528a", + "key": "b0f25a39387a68ce1f0dbca648d1faa0", "notes": [], "params": { "seconds": 0.2 @@ -65101,7 +65461,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46f3a1708129dbe3d3a345d03b6ea82f", + "key": "59e237c899f954c317cf20911c97d705", "notes": [], "params": { "forceDirect": false, @@ -65133,7 +65493,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81dbc9fd60d4ea224db8a23c3852efae", + "key": "6aa3aa04ac28a1f60449d76ee665ea47", "notes": [], "params": { "correctionVolume": 0.0, @@ -65153,7 +65513,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e484c05731247f7edd0a37c063690615", + "key": "598c231d4e0aa9aa0b087c5cbabf42c9", "notes": [], "params": { "seconds": 2.0 @@ -65167,7 +65527,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e7dcff99c4319597b471dc262c4fbc0", + "key": "9bf37190d7426dca07bb680d9a3af3e2", "notes": [], "params": { "pipetteId": "UUID", @@ -65183,7 +65543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d13090c9ab9e8bd4e019aed2f52fc972", + "key": "95d679f42449583fef99e52671eff380", "notes": [], "params": { "pipetteId": "UUID" @@ -65197,7 +65557,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6da862bc1729942ad08ef8f03b10fc38", + "key": "25fd042c222b7ce91332d49d1f6ef0f1", "notes": [], "params": { "forceDirect": false, @@ -65229,7 +65589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b2341773306d8d6d13185e41aa202e6", + "key": "945936dbdac02a199f7462e54b5ebb48", "notes": [], "params": { "forceDirect": true, @@ -65262,7 +65622,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc1f22b55978bad21149f3c11d93c201", + "key": "dda6658312919cf3fb112a4a795339b9", "notes": [], "params": { "correctionVolume": -1.3, @@ -65281,7 +65641,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05d89999b19be6a319ed50e51d44897c", + "key": "d3e58daf637f24a8ea104aaffef36c89", "notes": [], "params": { "seconds": 0.2 @@ -65295,7 +65655,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a84f637fd2302fbe2c998fae25888741", + "key": "091402ab23ab1b13537cdaa78bf4efb1", "notes": [], "params": { "forceDirect": true, @@ -65328,7 +65688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ccac4ac83453a0f8213e91e499439a1f", + "key": "d51683378c278df4f539d77d2ada5072", "notes": [], "params": { "seconds": 0.5 @@ -65342,7 +65702,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3a655969df42a6e061b649687ab5b9d", + "key": "9effed0a870eaa6eb3caedacaa180301", "notes": [], "params": { "forceDirect": false, @@ -65374,7 +65734,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d37b84d8dc220f38f46648adf3ba7ea", + "key": "3f9a91f975a019cfad6115caffaaa337", "notes": [], "params": { "forceDirect": true, @@ -65407,7 +65767,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe495a2b36e1988fbe741830be95fec1", + "key": "bd58cc515d17ded399247751bb35c42d", "notes": [], "params": { "correctionVolume": 0.0, @@ -65427,7 +65787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "935141c898f0469632244a57a8fce5ee", + "key": "df09284b53d4e9efc336e8eaca4b920e", "notes": [], "params": { "seconds": 2.0 @@ -65441,7 +65801,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b45fa9a38c5a054751b6ad9f952b316", + "key": "6194a11bc41f0eace24cbfdfbc252f76", "notes": [], "params": { "forceDirect": true, @@ -65474,7 +65834,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fce7c2ad5b1dc45a15a6284e41eadd43", + "key": "a9c4af59091605aea42beae20af655a7", "notes": [], "params": { "seconds": 0.5 @@ -65488,7 +65848,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "17d87192c1a172b68702eb22b34c1240", + "key": "b468ad303de4e57ff30cd9dda55c4c7d", "notes": [], "params": { "correctionVolume": -0.75, @@ -65507,7 +65867,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90267744c97db15f94aa5fc193570603", + "key": "6690013225e7aa7c44d37c0538a9b74f", "notes": [], "params": { "seconds": 0.2 @@ -65521,7 +65881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6479330581ba9618895e76e0dfc8bbe", + "key": "d8d527d0111c69deb0733a9cb1755acb", "notes": [], "params": { "forceDirect": false, @@ -65553,7 +65913,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a67f2b2c9b57ec798703eb0043c441b", + "key": "eb3d15d78570e831e25bcb14b49ab277", "notes": [], "params": { "correctionVolume": 0.0, @@ -65573,7 +65933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "316d678721aca756deef492404739b43", + "key": "754b8988c307f9218970c30eeafb2d45", "notes": [], "params": { "seconds": 2.0 @@ -65587,7 +65947,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5e243c3c96ee2883e91e69e10be21bd", + "key": "cba6fb453598d83a8443e6cdceaeb0b2", "notes": [], "params": { "pipetteId": "UUID", @@ -65603,7 +65963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "306d304c1366d75533f976ee98685c03", + "key": "e0c200684a567b7229bc882454fa0f33", "notes": [], "params": { "pipetteId": "UUID" @@ -65617,7 +65977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "457e7cebd948e8071e78a48387f667a3", + "key": "123f5be85f416f7d5f1822b135de3ce9", "notes": [], "params": { "forceDirect": false, @@ -65649,7 +66009,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "125b1ce5c696ff124ac84f869dde82bc", + "key": "bd66c3114f54b59ef60b7b0bfba58df4", "notes": [], "params": { "forceDirect": true, @@ -65682,7 +66042,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e78648009fa1e7ceeeca007bec46dc0e", + "key": "9748ed1e475afd48c9101b4fe5baa963", "notes": [], "params": { "correctionVolume": -1.3, @@ -65701,7 +66061,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c3f62e4cd1e0f0c03cc229abd513750f", + "key": "066950a48fc7a409b0b4524d54972f8e", "notes": [], "params": { "seconds": 0.2 @@ -65715,7 +66075,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c720b1d92dbd7c12d0b6fdc21760d39", + "key": "ab8faf9d57f9680b66451d05ae2ae0ec", "notes": [], "params": { "forceDirect": true, @@ -65748,7 +66108,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f95558213a950642582c2443feed476", + "key": "1044e2113573cee794f5e6ce69a88995", "notes": [], "params": { "seconds": 0.5 @@ -65762,7 +66122,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81f94da0d0b3ae6e0c7627872b1621de", + "key": "ecf65f945b5a2b5928cca0b16765e614", "notes": [], "params": { "forceDirect": false, @@ -65794,7 +66154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "451e191e5025e1ae3391c7bbfa71f23a", + "key": "c5a2e081be1daaf68788042cf7a875aa", "notes": [], "params": { "forceDirect": true, @@ -65827,7 +66187,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "850edba0f96469789973ad9c411b49bd", + "key": "572059b0bfb86a84f3964f4f154e0bda", "notes": [], "params": { "correctionVolume": 0.0, @@ -65847,7 +66207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d388edfc2a6784d2614e131f2a7925dc", + "key": "2a744523628838a3fcd0693d6cc23328", "notes": [], "params": { "seconds": 2.0 @@ -65861,7 +66221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e533adebcb1f13c76e2cec115dba6a44", + "key": "671184dacee44262ec75ef4cf7cb9a36", "notes": [], "params": { "forceDirect": true, @@ -65894,7 +66254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a9ef5c71904d59bb0e1815b00704ca7", + "key": "f71d86b3bebdcec616526566a86c4b40", "notes": [], "params": { "seconds": 0.5 @@ -65908,7 +66268,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0096d6f725029d681ade907ec63e25d", + "key": "4ccf1037ff44f58aeda313ef311c2a4c", "notes": [], "params": { "correctionVolume": -0.75, @@ -65927,7 +66287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78c914e8403063335c6b1194260f5598", + "key": "a064b8c61bac4056397fae5ca4fdc979", "notes": [], "params": { "seconds": 0.2 @@ -65941,7 +66301,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7e18c425557f32c8b69a3c980df2712", + "key": "3c4a8d3b5e992025b31251eb7262610b", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -65970,7 +66330,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe09d3a470d7fa2f9a197ba3d7a929c2", + "key": "fad0fd486b4dd50323aa726b20298fd3", "notes": [], "params": { "homeAfter": false, @@ -65985,7 +66345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a2b505697c1211180b8f7add30121ac", + "key": "7aa076dc6937ec547a3c92e2461f4926", "notes": [], "params": { "liquidClassRecord": { @@ -66356,7 +66716,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2cfeebc49b5fb6034bb20cbf489f19b1", + "key": "9868d33eed94dc10693e6ca116da94e0", "notes": [], "params": { "labwareIds": [ @@ -66378,7 +66738,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a383b2f1a2bf9dae01f87f8d12b3b504", + "key": "516030d88d7bb4b9d1f32c4900ec4bb1", "notes": [], "params": { "labwareId": "UUID", @@ -66411,7 +66771,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a44b7b79c55186d78ffb6a1fd3fc9ddd", + "key": "cb03cb6bc4ff0ee3eda731a8987608e0", "notes": [], "params": { "forceDirect": false, @@ -66443,7 +66803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6bec8893876a0a83c65d7c7ea7dd52bd", + "key": "f104e9baf1aecde91a44099391ee4371", "notes": [], "params": { "pipetteId": "UUID", @@ -66459,7 +66819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe338cca144faadb75417810bdb31871", + "key": "1704edc7710c7679b80b6a797a0647ba", "notes": [], "params": { "pipetteId": "UUID" @@ -66473,7 +66833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "725d247abfa79bf4da72e27dcea4ffa6", + "key": "fa8c4f690c4bcec077c0254393f94e09", "notes": [], "params": { "forceDirect": false, @@ -66505,7 +66865,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4515f255a03618f86ad2df233244a11d", + "key": "5fc2b6945444e53fa3abc20cc2015e93", "notes": [], "params": { "forceDirect": true, @@ -66538,7 +66898,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c595f29c8ae83ed762303d664a2c9c8a", + "key": "369bb167e82037b86aaa62c621875eda", "notes": [], "params": { "correctionVolume": 0.2, @@ -66557,7 +66917,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e4d93dab2260dc1cf2b7aa5ff47b837", + "key": "13c781d74767d196b8dfb20ee1bb50db", "notes": [], "params": { "seconds": 2.0 @@ -66571,7 +66931,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64042594e9baa2396fec636b3e045edb", + "key": "37ee97f26301545af7002ce53efa1a3e", "notes": [], "params": { "forceDirect": true, @@ -66604,7 +66964,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2e86ca635f4197f75510bd9ddeb2491", + "key": "d4da0bb5af17dbe14327c369d93e37f5", "notes": [], "params": { "forceDirect": false, @@ -66636,7 +66996,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a41b36594bd8cc3ceaf2501f406077f", + "key": "85fe7c65cfc013d51675d9e2737bf025", "notes": [], "params": { "forceDirect": true, @@ -66669,7 +67029,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bfdc40aa96ccceac2af98adaebde0ea", + "key": "f45765610bd89aabae4b61fe647f712a", "notes": [], "params": { "correctionVolume": 0.0, @@ -66689,7 +67049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c845e08b494fab4d0e973332e9ae216", + "key": "a9883cd77b876b09f009ec4f0f04f5ec", "notes": [], "params": { "seconds": 1.0 @@ -66703,7 +67063,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d926955eeae089673396e74f68addd4", + "key": "6b8f2453a6c45e2c60434ea00fce38c3", "notes": [], "params": { "forceDirect": true, @@ -66736,7 +67096,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "de791d3e9445fe4a223c857e8b10f95f", + "key": "e0e99b5607b21e027ea5185518ffe55b", "notes": [], "params": { "pipetteId": "UUID" @@ -66750,7 +67110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1733b3e8e0a0e08c9cd8cbd52243c32", + "key": "b19dc148e673c4d90cadde4cf7a27074", "notes": [], "params": { "forceDirect": false, @@ -66782,7 +67142,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae32c246818dd974cc9a74214eed258f", + "key": "ad30dcc14d54fccb007511cb43aa8e98", "notes": [], "params": { "pipetteId": "UUID", @@ -66798,7 +67158,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b12f3e27500d12618d47ea63f582595", + "key": "9fa2dddbef5156a928ed59ff5a7eac5c", "notes": [], "params": { "pipetteId": "UUID" @@ -66812,7 +67172,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3df29b61ded9b9aee1e8881341218664", + "key": "b7e223471f7709d799a26ad9cde3ed97", "notes": [], "params": { "forceDirect": false, @@ -66844,7 +67204,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44f53213ebd37ee9683e775dd9f9d61c", + "key": "e6779f262bf698d2049ea1b41dbc0fc1", "notes": [], "params": { "forceDirect": true, @@ -66877,7 +67237,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37deb31864140a1b736304c2408e7b32", + "key": "7a995014b8ba317e3b7e3eaae2e972e1", "notes": [], "params": { "correctionVolume": 0.2, @@ -66896,7 +67256,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e66a1d8a0ee894f9e0b7c70968f198f", + "key": "17153bc436e0c13a05fc2f6944d8a35a", "notes": [], "params": { "seconds": 2.0 @@ -66910,7 +67270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1d6c5d76c7ebdd632288491ba39c3bc", + "key": "bac86205db23c7378cc97575dd66f0d5", "notes": [], "params": { "forceDirect": true, @@ -66943,7 +67303,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99ea28e402a890aaf203147fcf4f81e9", + "key": "d2402388283b858be4f6bbe6162543cd", "notes": [], "params": { "forceDirect": false, @@ -66975,7 +67335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b90a3eab260f0775960854332f8a27be", + "key": "e740dfb48cabb811a21e04af1e3bd7dd", "notes": [], "params": { "forceDirect": true, @@ -67008,7 +67368,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfa7d096fec892f2e0ac732e89a349c1", + "key": "d41e5b635ee2ddbf8de017d6c0dab370", "notes": [], "params": { "correctionVolume": 0.0, @@ -67028,7 +67388,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59e9d27a343a83f6c1d0cad0d8a8410e", + "key": "b70b962e0c65da59342b0c8a9a87071c", "notes": [], "params": { "seconds": 1.0 @@ -67042,7 +67402,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "165f523b37e84348530664be0bf3f7c7", + "key": "e1d03758c1091111cc98d8740e260714", "notes": [], "params": { "forceDirect": true, @@ -67075,7 +67435,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d9f9994f6955bd11562414dad38d78b2", + "key": "c58c54f2575455c4d1edf4b4ee229454", "notes": [], "params": { "pipetteId": "UUID" @@ -67089,7 +67449,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3d99339b92446c79bc4bd6c909e24c4", + "key": "59f89fb88c87d346f97d1f00ea197b7f", "notes": [], "params": { "forceDirect": false, @@ -67121,7 +67481,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "739598f11ac59157c979cb22feec95b6", + "key": "4770aec4c90cb4cae21d75659360672d", "notes": [], "params": { "pipetteId": "UUID", @@ -67137,7 +67497,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13a187acccbd9554f45e91f2f37de46d", + "key": "a2b8091968147aab8847019cf8ab18c9", "notes": [], "params": { "pipetteId": "UUID" @@ -67151,7 +67511,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5591501d352eddd7e2a03f7fbc5f8989", + "key": "739e08a123fb57015f1f7a172cab9d81", "notes": [], "params": { "forceDirect": false, @@ -67183,7 +67543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58df895185e93113795fdbe4f7ad1d56", + "key": "90cc9c319d055a5d9b027f19b600c9fe", "notes": [], "params": { "forceDirect": true, @@ -67216,7 +67576,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86cc79c9b26b32fbccd26101938973c5", + "key": "c3a336a4d0d830cab3676d34ca955b00", "notes": [], "params": { "correctionVolume": 0.2, @@ -67235,7 +67595,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4eeff2e2d07deaef410a97188534678d", + "key": "44164c1e6a2f98e71473c2a05f582ffc", "notes": [], "params": { "seconds": 2.0 @@ -67249,7 +67609,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d323316e411252ccde7f932ab724f047", + "key": "d4a9295ccbab9546d40e6a3ea930ce4b", "notes": [], "params": { "forceDirect": true, @@ -67282,7 +67642,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df5667df7121f4b181a78eceae4657e9", + "key": "514eeda3e669ae4a54bda694b1ffffad", "notes": [], "params": { "forceDirect": false, @@ -67314,7 +67674,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f74197e5c4b89f9ad2a041e22f38baf9", + "key": "86b0e03dd155dd4ad727c69dbb49e1ae", "notes": [], "params": { "forceDirect": true, @@ -67347,7 +67707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e89b2659ffa4f25903ccb22e366f26d", + "key": "5e0d7b75ff2caa9f00216b5750f36ad4", "notes": [], "params": { "correctionVolume": 0.0, @@ -67367,7 +67727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c35b2220de09ed93eeaa587cd07ecd1f", + "key": "f30ab076b10974e752e2dcbe3ee831e2", "notes": [], "params": { "seconds": 1.0 @@ -67381,7 +67741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d363ecd8c1b0bdaad47f65b5761f4365", + "key": "38b65cfbf7648ad70537604c63a93a7c", "notes": [], "params": { "forceDirect": true, @@ -67414,7 +67774,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cac8412e4dc913d3bdfbc48fa21a7ac4", + "key": "41b692aa084136e8bd20bed6dece927f", "notes": [], "params": { "pipetteId": "UUID" @@ -67428,7 +67788,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f187cbc5246b87580fa5c5bb8dd2724", + "key": "cd9434653eb81ff3df1fcca905879b06", "notes": [], "params": { "forceDirect": false, @@ -67460,7 +67820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "510e6bf391d3152ba31689076bf71d62", + "key": "25dea363a92e9cf3303baaa2344525dd", "notes": [], "params": { "pipetteId": "UUID", @@ -67476,7 +67836,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b4315ba1ab184b93b8dd04da5f775df", + "key": "522fba55335bd2d28a947547210b4ae4", "notes": [], "params": { "pipetteId": "UUID" @@ -67490,7 +67850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30a9e9b9ee0b61d803dbdcae491ba4ff", + "key": "7f95c2ec4fcce8fe7a59f42fb02985ff", "notes": [], "params": { "forceDirect": false, @@ -67522,7 +67882,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99a4016f98888e6f3975eef2b9d41680", + "key": "e5da4a70eacedc5020014a41f64d3ce1", "notes": [], "params": { "forceDirect": true, @@ -67555,7 +67915,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e965f3976d774fb68f28655a7132595", + "key": "a6811a05f80f394a64205e17bb5a6d87", "notes": [], "params": { "correctionVolume": 0.2, @@ -67574,7 +67934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31fe47fae32bb3854e425ec04c6594e5", + "key": "3d17521e0c1aedaf91c78781f25e8890", "notes": [], "params": { "seconds": 2.0 @@ -67588,7 +67948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "079133450f892c37c72935ae113e173d", + "key": "a885248cf58fbc1daa332253b951009d", "notes": [], "params": { "forceDirect": true, @@ -67621,7 +67981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31312876e566780d95ff6da35a6a6ce6", + "key": "8a9ff3a1065c6aca7ff0a588ac654ace", "notes": [], "params": { "forceDirect": false, @@ -67653,7 +68013,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f14d37c9488dc564753ad9073ab74377", + "key": "88577bbecc5dcc57a9f72c8d16385035", "notes": [], "params": { "forceDirect": true, @@ -67686,7 +68046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8040df89027b3a0632e3e77f450bd3c3", + "key": "cc27159c1f8f0e8bf380f6331af34a6d", "notes": [], "params": { "correctionVolume": 0.0, @@ -67706,7 +68066,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91b90fe4c173a5d10ea150bcb1717ab9", + "key": "720feb9ad603ed438ddce99ed41325ec", "notes": [], "params": { "seconds": 1.0 @@ -67720,7 +68080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb45a4742285d3c7fd4cc0f5aec74856", + "key": "4c65eb6568b41ddacc0badabda8fb92e", "notes": [], "params": { "forceDirect": true, @@ -67753,7 +68113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e03460f2e9d9cfb42ad399838c67d9a5", + "key": "e2381d5cea0a0071222e93d7f7ac9912", "notes": [], "params": { "pipetteId": "UUID" @@ -67767,7 +68127,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2b281644c78bb9f9aaa42b65fcc65f3", + "key": "3fcfc9dabdc885128baad4818e17c7f8", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -67796,7 +68156,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "daa6f6f7dbaa7bb75a28c24212bb0ea8", + "key": "4dbda55ece666c8efac022fd77d80f45", "notes": [], "params": { "homeAfter": false, @@ -67811,7 +68171,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fb04baaed492cb867d5513bfe9f24eaf", + "key": "db3c62f46e0408b3372cc29db6e99926", "notes": [], "params": { "liquidClassRecord": { @@ -68146,7 +68506,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a89d01021a430726c4d8981b683fb8e9", + "key": "9c9d7554bd2f6477717974e3fcf923e0", "notes": [], "params": { "labwareIds": [ @@ -68168,7 +68528,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "567c7627b223ed5970d3c77e22558a30", + "key": "9b12fa3a755338e5b8700052cfa2ee9a", "notes": [], "params": { "labwareId": "UUID", @@ -68201,7 +68561,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5939f97154d149d81a640b9f073f1e4b", + "key": "f209c107bbd0302876e85319a263ad0c", "notes": [], "params": { "forceDirect": false, @@ -68233,7 +68593,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4b114fb327a8a3c281acfa9f0b0ea34", + "key": "e31d058a5afafd03a67ffc8f91ac7083", "notes": [], "params": { "pipetteId": "UUID", @@ -68249,7 +68609,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bafc1b44f57a81dccbb15bdce19c820d", + "key": "eafd1e078c0ea0972c3c4318f267545c", "notes": [], "params": { "pipetteId": "UUID" @@ -68263,7 +68623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54066f9fb09d7263f378f0623ee67bdc", + "key": "e906d21558d2d15fed3445b99e406e62", "notes": [], "params": { "forceDirect": false, @@ -68295,7 +68655,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f047ba967eaacdff8ebfda6f729237b", + "key": "9df78ab3ac1d20d95e208ed9f0744a4c", "notes": [], "params": { "forceDirect": true, @@ -68328,7 +68688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e1ed9799d1287e4c7bcdc0403374339", + "key": "e39e05bb0f9bf19842f234616873909a", "notes": [], "params": { "correctionVolume": 0.0, @@ -68347,7 +68707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d23d8d10ca054e59ff2a7764a1b27c6", + "key": "3cf002fe90616fef453f7f8f49d29f4d", "notes": [], "params": { "seconds": 0.5 @@ -68361,7 +68721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa50f20c7dc46a08ab99b8e52bf162ca", + "key": "5fce38e0e25f65ba105be6fa7c1e0141", "notes": [], "params": { "forceDirect": true, @@ -68394,7 +68754,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "727bf34de069ea62db0250a5686b4ec5", + "key": "58bcd8c043e10daae84f32e131910c70", "notes": [], "params": { "correctionVolume": 0.0, @@ -68413,7 +68773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eaa6b131d684af572c2f262aad73a188", + "key": "03b63f87db525b8a939fb61b7edc520d", "notes": [], "params": { "seconds": 0.5 @@ -68427,7 +68787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "766c84a52ff8d233ed9f0d22c23fd711", + "key": "c621fbef7f04418a30c199587ae1e4de", "notes": [], "params": { "forceDirect": false, @@ -68459,7 +68819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9e0da0ab1abb292bc4189b7080dd5aa", + "key": "0c6ac2527925a89bd9e658870b7f29d9", "notes": [], "params": { "correctionVolume": 0.0, @@ -68479,7 +68839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6954a79e501dfbc3692c2ab4686996ac", + "key": "32baa026c5dad9ba449a93d4b84a8b62", "notes": [], "params": { "forceDirect": true, @@ -68512,7 +68872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1779dac4977a35cfbc3783440d9c1dc4", + "key": "eca7993ccf45907daba229405da5d440", "notes": [], "params": { "correctionVolume": 0.0, @@ -68532,7 +68892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df699a5c72e019aecd415278772a44fc", + "key": "abfc39acc3f5e92376f2e28e8891b064", "notes": [], "params": { "forceDirect": true, @@ -68565,7 +68925,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4fe7d96e2ffbb29cbedde30699756aa", + "key": "f0bcfe539df0c161bcfe5e68eb5dd82b", "notes": [], "params": { "pipetteId": "UUID" @@ -68579,7 +68939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af9f7d21e194233a30470cdf9ab42a97", + "key": "c5e881787fc764053931666c2eb0e954", "notes": [], "params": { "correctionVolume": 0.0, @@ -68598,7 +68958,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "033f4cb34e6ad71d80529164c404eea2", + "key": "a5912e103fcdf90129638daff810ba87", "notes": [], "params": { "seconds": 0.5 @@ -68612,7 +68972,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ff246a4f3beaf6977d8e6258d4be2d2", + "key": "99d255f977f938284b2b393ad92b931d", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -68641,7 +69001,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4cac47c71b9ae954e7d09bfad7b03332", + "key": "07021cc79c306f5097faed574259ba79", "notes": [], "params": { "homeAfter": false, @@ -68656,7 +69016,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ad8f136abdabe067a96a1394c7cfd64", + "key": "66b7f433032013d4b6153c6634f403f0", "notes": [], "params": { "liquidClassRecord": { @@ -69051,7 +69411,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7c559901d2e758bd9fff4e0087e2825d", + "key": "64f8e13f1f77127e7d0c5fbdd9c56a84", "notes": [], "params": { "labwareIds": [ @@ -69073,7 +69433,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c52574e754710be77b7f096ad5823d10", + "key": "daf18cd49bca82cca784c1b7e7b17f6f", "notes": [], "params": { "labwareId": "UUID", @@ -69106,7 +69466,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c3e6ab48ace8d49741920de70f4c76fd", + "key": "b9b265c556332012f090c64773ea5013", "notes": [], "params": { "forceDirect": false, @@ -69138,7 +69498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0918e6e4b5bab5aaff947821db084d4", + "key": "a8ca7398b4dc8b258d2420b73f069008", "notes": [], "params": { "pipetteId": "UUID", @@ -69154,7 +69514,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9c9a57c34c277afd5d049e1b6090144", + "key": "cf2c654f8ab9856c1795a17c95c8312a", "notes": [], "params": { "pipetteId": "UUID" @@ -69168,7 +69528,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cba74933e6a40af1ffdb19e0eaf9a289", + "key": "03cf17ec663f298944bdceb2754b7655", "notes": [], "params": { "forceDirect": false, @@ -69200,7 +69560,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e055c01901235ac5bbb6ed6cbadba065", + "key": "ae792ab9e85b3dd8608e5715a33e4e5d", "notes": [], "params": { "forceDirect": true, @@ -69233,7 +69593,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd9805b9232d53c321b050c536590e67", + "key": "9e2b5c564cb73eb7707bce107325d99e", "notes": [], "params": { "correctionVolume": -28.911111111111115, @@ -69252,7 +69612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24f61fdae4721e6d16006079838d1627", + "key": "ddfb5f09c24123cd2a368346196c25b9", "notes": [], "params": { "seconds": 0.2 @@ -69266,7 +69626,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a2ac8cf1b73ed138ccebef0f6be285b", + "key": "1afc7d208dbc3fa070319a68b238a0e7", "notes": [], "params": { "forceDirect": true, @@ -69299,7 +69659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a1adb528f55d457ed0c452a66e93d13", + "key": "a631070a8bfec86802909640a8ca5f60", "notes": [], "params": { "seconds": 0.5 @@ -69313,7 +69673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b6a68b36d29ed48d81ee79fca8189fa", + "key": "bb197d922df79e26a25efde366db85a4", "notes": [], "params": { "correctionVolume": -28.959715380405036, @@ -69332,7 +69692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "488d68e6ed286bcb94fe56641075e365", + "key": "303bde015fb04ce88223c4d86af10455", "notes": [], "params": { "seconds": 0.2 @@ -69346,7 +69706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89bac809d7b26022584654a85a8e94a6", + "key": "1fbbb7d61ccfa71a82275040a4520fdb", "notes": [], "params": { "forceDirect": false, @@ -69378,7 +69738,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "803dec4e73c1ccd9d25dcd32c647f747", + "key": "9f8cdb0343b26437ba3b4eb771aff58f", "notes": [], "params": { "correctionVolume": -28.911111111111115, @@ -69398,7 +69758,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be635235064688e4fb30834e19a56bb7", + "key": "a8621b5d65c82b58c97a474bb9e27942", "notes": [], "params": { "seconds": 1.0 @@ -69412,7 +69772,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b501a6b1e5e3cf00de27a336809fa182", + "key": "34ac05d82535e97ec1ae622f95044226", "notes": [], "params": { "forceDirect": true, @@ -69445,7 +69805,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0dbdcdabe6ec13493a045f3091d05b9", + "key": "13329fcf1cc6a53b7ec42431905ec6b5", "notes": [], "params": { "correctionVolume": 0.0, @@ -69465,7 +69825,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a56fe2fd0e522132e35455ebe897dd78", + "key": "fa8bf006b2cd43a3f8844424146ee3d7", "notes": [], "params": { "seconds": 1.0 @@ -69479,7 +69839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75f6f632f2a491aa1b1219bfc2f1fd69", + "key": "1579ec323fc895e07fba260fd6078b1e", "notes": [], "params": { "forceDirect": true, @@ -69512,7 +69872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce50a062aad05f7fea138df90c90b079", + "key": "d93fd86856562a6b304a3dbbc4ca77be", "notes": [], "params": { "seconds": 0.5 @@ -69526,7 +69886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ec237361ca8ccf55ce2484bc2c38706", + "key": "14cd2d9b395f1676446ccff232cdbb99", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -69545,7 +69905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5990e6493036f2cb44c399997191090", + "key": "e0321a9239c009d5b689a0514b48d09e", "notes": [], "params": { "seconds": 0.2 @@ -69559,7 +69919,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9932a242c442722130ec736e86086a9a", + "key": "78e583a86b2b6c9f890543b04e33c6dd", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -69588,7 +69948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f72d0915c7fb74e4bc61dc2f341aba81", + "key": "79c6664aa175709476e350a03f83d237", "notes": [], "params": { "homeAfter": false, @@ -69603,7 +69963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28ffe4c61cb83a8dfd0f2bf2cf2a565a", + "key": "8749c19fee59c5e8df902c66ce97df9c", "notes": [], "params": { "liquidClassRecord": { @@ -69966,7 +70326,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6896d404cc2e9923b8b588f003486916", + "key": "20df7182db9afdceeff0892185878780", "notes": [], "params": { "labwareIds": [ @@ -69988,7 +70348,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da80151a4930c4fce121b270350b0641", + "key": "af367ca90cb0736a86481746cd680c88", "notes": [], "params": { "labwareId": "UUID", @@ -70021,7 +70381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c75083e82e5cc470ff70c0b4425884ac", + "key": "a0ff2dc074b66a00008aec8b3fa55feb", "notes": [], "params": { "forceDirect": false, @@ -70053,7 +70413,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7871c7036ad6c978578d098037cd73b4", + "key": "e007aca4566a7f95efefdd0d67e8beda", "notes": [], "params": { "pipetteId": "UUID", @@ -70069,7 +70429,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df45cd22bd7cff2f1ad6a35de09aacfb", + "key": "e0b3b112d96330c02cbf92234e89cdfd", "notes": [], "params": { "pipetteId": "UUID" @@ -70083,7 +70443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45f0cbcdf3dacdb79e8f5be01fb91757", + "key": "5dfb3425b7a5ec978fb759e6b5b5dbc4", "notes": [], "params": { "forceDirect": false, @@ -70115,7 +70475,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3cbd8c34c3612290aaa977791745f84b", + "key": "f46c65acff5a8edfaf1ad81531e34ce6", "notes": [], "params": { "forceDirect": true, @@ -70148,7 +70508,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "478216f4360f6f0e8e57cbc2b7140c25", + "key": "7c2163e0ec1cfd93e320ad53a146cd26", "notes": [], "params": { "correctionVolume": 10.655555555555557, @@ -70167,7 +70527,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "655b65b5d081db35c1c4b64427e0eb56", + "key": "30518967c7a4abfec74b8dc62b2afe24", "notes": [], "params": { "seconds": 0.7 @@ -70181,7 +70541,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ebd1afb69cec832bb64ac23186439991", + "key": "2382c45cf51c734b3ac4f3bd28ff5fb5", "notes": [], "params": { "forceDirect": true, @@ -70214,7 +70574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "055f84a83a292ebb94cb6a785844132f", + "key": "3f96dcd16d87929ee2a4e920aa916c88", "notes": [], "params": { "forceDirect": false, @@ -70246,7 +70606,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f39063a94a32ac5e82bd391053ac641", + "key": "0e97372e64bc3a8e7179f960aa4d4b1d", "notes": [], "params": { "forceDirect": true, @@ -70279,7 +70639,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c9934e6eff9de3be985820d95ba931d", + "key": "bffa6938c06b7b9c81a64b5f588dec48", "notes": [], "params": { "correctionVolume": 0.0, @@ -70299,7 +70659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24c1a14469971d1696f2f66eefb2e9fb", + "key": "5070824906df7883501ee7b2c6e37aa9", "notes": [], "params": { "seconds": 0.5 @@ -70313,7 +70673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "464536683c7ec5b26c9c28b7825dd39b", + "key": "7a22732b9f8f5115e7efa79de7b03f07", "notes": [], "params": { "forceDirect": true, @@ -70346,7 +70706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e035f176af9dff5d77dfa7a6b86b1c2", + "key": "a36924cbcab4841a6af5fba39f894e2f", "notes": [], "params": { "pipetteId": "UUID" @@ -70360,7 +70720,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "002e32cc8c3f0127c38936dc287a6b6f", + "key": "64bbd041ed96a3c08097d1cee7e94fe1", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -70389,7 +70749,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91b6dda98c511949f8e66d7ccab2eff6", + "key": "96c290c17fd9feb47af4c94aa6818b66", "notes": [], "params": { "homeAfter": false, @@ -70404,7 +70764,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ab5bf7cc0faff10ba10b1bafc036c31", + "key": "1eecbc3ab8175f80deabb22ad5eab4c5", "notes": [], "params": { "liquidClassRecord": { @@ -70739,7 +71099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a18e4f8927cec3515a27f801b755e09", + "key": "3631ce90043438ac9dff2e80b663960a", "notes": [], "params": { "labwareIds": [ @@ -70761,7 +71121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86853b2a8ad5641e589ebc8c796e1358", + "key": "469470f31cd5bdef76443e43b06be7d5", "notes": [], "params": { "labwareId": "UUID", @@ -70794,7 +71154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff033101a5dee46ffa3557b85cf7de75", + "key": "202722b0453387e86028db1b8b06df98", "notes": [], "params": { "forceDirect": false, @@ -70826,7 +71186,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d040ff3bbf81cc7d24a04744dc7ccad0", + "key": "1fde26f0e2b3a0a0dfcb441f23a7479a", "notes": [], "params": { "pipetteId": "UUID", @@ -70842,7 +71202,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4304b5831073d8ad10902baffbac088f", + "key": "7c1e6c7896d9394253e97e0be00cc3cd", "notes": [], "params": { "pipetteId": "UUID" @@ -70856,7 +71216,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f5b60306445b038695427ccdd1a5835", + "key": "93863f997fcdc73fd8debbaf425006c6", "notes": [], "params": { "forceDirect": false, @@ -70888,7 +71248,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6e27c720c9e1df07dc49f68dd4a2c73", + "key": "25afc784b792a5949cc64ad550d82368", "notes": [], "params": { "forceDirect": true, @@ -70921,7 +71281,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16689e085e1d1d97ec7e89c55b147382", + "key": "b736db0c4af7009599b845fa6a1eb367", "notes": [], "params": { "correctionVolume": 0.0, @@ -70940,7 +71300,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e87ba718b71c1b226cff623a2bb8ff28", + "key": "799e6e4c2c2ed759504ebba0dd2ed95f", "notes": [], "params": { "seconds": 0.5 @@ -70954,7 +71314,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe4ef8122c1051e23303759d4fab0547", + "key": "8a4863e1e2d25a7e2907bbc8e2400b9d", "notes": [], "params": { "forceDirect": true, @@ -70987,7 +71347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "395699d801e6960fab251465d24b629c", + "key": "9df24fe8afb3eaac1756b3335925a608", "notes": [], "params": { "correctionVolume": 0.0, @@ -71006,7 +71366,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2cb890e828b83b1176adc4c9cba33e2f", + "key": "4bb258bd80c4258e057d06a91132ab69", "notes": [], "params": { "seconds": 0.5 @@ -71020,7 +71380,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "186a09cdc72822f0673f27072ecb3ca1", + "key": "67bec0a98918720df24110b3bebb0e57", "notes": [], "params": { "forceDirect": false, @@ -71052,7 +71412,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5949e711abd5e65ce260bc8af0b835e8", + "key": "ed2a860ccdef59677872cce0ca15043b", "notes": [], "params": { "correctionVolume": 0.0, @@ -71072,7 +71432,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "150fc9f61ccc4c13d6cac5a16500853c", + "key": "a61716309cacf65538275dc87bedf49b", "notes": [], "params": { "forceDirect": true, @@ -71105,7 +71465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f75946e0d51049dd80d679a75a14d60f", + "key": "696d5a10634ef1d2b5f343a8f236ce11", "notes": [], "params": { "correctionVolume": 0.0, @@ -71125,7 +71485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90fb3223043341e89e534e5a8ed1f242", + "key": "e98466ac171e8fa6bc29f8fa9ebac82e", "notes": [], "params": { "forceDirect": true, @@ -71158,7 +71518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d4a18023e1618dc11665704eab8d57a", + "key": "1b57e8c6a41ed64eb4655be2e21cfd96", "notes": [], "params": { "pipetteId": "UUID" @@ -71172,7 +71532,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fecdbb0d8beb048ccbe197f45d0400e2", + "key": "7a538473e0eb931732455db1a48e2717", "notes": [], "params": { "correctionVolume": 0.0, @@ -71191,7 +71551,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c342a842621b9447393c1ffbf56ce894", + "key": "7e7c614010d680ee26b693737fb4e093", "notes": [], "params": { "seconds": 0.5 @@ -71205,7 +71565,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bad60750bb0896813dc9ddfeea6f692f", + "key": "8c8db39a058c04186f5f53abd2ea9cd8", "notes": [], "params": { "forceDirect": false, @@ -71237,7 +71597,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "463368324af90e5249c95e592f3b7db0", + "key": "5ed5b07c191aee15f6036214c443223c", "notes": [], "params": { "correctionVolume": 0.0, @@ -71257,7 +71617,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ec9b9f0f896d95b7021e7725aef2ce1", + "key": "cb5d869d759a6a49ec030dff6043ae07", "notes": [], "params": { "pipetteId": "UUID", @@ -71273,7 +71633,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0c7308be9fa6ef85e54ff92d3bb63ab", + "key": "0fb75d417875a9db4e259b3327f98d2e", "notes": [], "params": { "pipetteId": "UUID" @@ -71287,7 +71647,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66a2f5529e80d3cefe8292dd44d2b35f", + "key": "941582904c35a538e50bd4269c9f94fa", "notes": [], "params": { "forceDirect": false, @@ -71319,7 +71679,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3dc95d2bb799dfea6b259fbaf722ddc2", + "key": "8126fb16823e41d774727dcb71b01dc6", "notes": [], "params": { "forceDirect": true, @@ -71352,7 +71712,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81d50f383d3e761e089715109a71e980", + "key": "a83f7404ecdd526b078a1a43029392d5", "notes": [], "params": { "correctionVolume": 0.0, @@ -71371,7 +71731,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f96ec21b15dc23eb2dbd6e8e43e13809", + "key": "3a1954a4a9d301c757dfe75ecc4d5bb3", "notes": [], "params": { "seconds": 0.5 @@ -71385,7 +71745,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1abbeb3c3d01f72faf69981550dd172", + "key": "a443f33d867667f9b30d162e3fe4edd4", "notes": [], "params": { "forceDirect": true, @@ -71418,7 +71778,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b11a54639cc593ae7342ee13a4c43ad0", + "key": "28d11f8930c061b313e039bbfbf7bd4c", "notes": [], "params": { "correctionVolume": 0.0, @@ -71437,7 +71797,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f58f789dbb2e65cea2de395f79c425e2", + "key": "a5388135287ea15203dddbb177a87a86", "notes": [], "params": { "seconds": 0.5 @@ -71451,7 +71811,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95ba0c56f0db0ca738533fe91b3c4b66", + "key": "b6fdd33fcac5c4f85fe26a34488b78fe", "notes": [], "params": { "forceDirect": false, @@ -71483,7 +71843,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84eb5bec753918f009cc9fc0f9ce0560", + "key": "ae20606f50ace8daafdafb66eabfd65c", "notes": [], "params": { "correctionVolume": 0.0, @@ -71503,7 +71863,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f01e7d1fbe582ffe5022f8041a0920b4", + "key": "45b0ff6c79ce590f3e2e0a565b00dea8", "notes": [], "params": { "forceDirect": true, @@ -71536,7 +71896,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ace3018fadb7cdafa2a2f778f84fbad", + "key": "9fbc027787d5d06cf674aea3f49b8ae7", "notes": [], "params": { "correctionVolume": 0.0, @@ -71556,7 +71916,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52c733093fb80d21bbc6626be65d1cde", + "key": "570cd54bb16f0d1161f06084a932ee29", "notes": [], "params": { "forceDirect": true, @@ -71589,7 +71949,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34445a63a9759b3a3efd94275715fb09", + "key": "c3f73ce6f15aed71b72e74d0489f0f3b", "notes": [], "params": { "pipetteId": "UUID" @@ -71603,7 +71963,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05cd05fb3e9d3319c7620f9ccb572d54", + "key": "62a40e8e6e1643442831828f334ff2f6", "notes": [], "params": { "correctionVolume": 0.0, @@ -71622,7 +71982,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48a0949318bb90890817347edf7ed111", + "key": "a6365183797f4fc9387855e9941552a4", "notes": [], "params": { "seconds": 0.5 @@ -71636,7 +71996,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "862c8c97f64dc96ece62e83b68734ea8", + "key": "464ddb3ee5bed89890046a82afb3355e", "notes": [], "params": { "forceDirect": false, @@ -71668,7 +72028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "887cc6a316dc3c7b7366502e6e7d020e", + "key": "09386a0e24dacb149bf8579c71639e1d", "notes": [], "params": { "correctionVolume": 0.0, @@ -71688,7 +72048,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6847b7133f3bfa49b78e7f4b897be597", + "key": "55e6d343130a2c6e492df91abfed1dfd", "notes": [], "params": { "pipetteId": "UUID", @@ -71704,7 +72064,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a3991b5b9df0a3e6a850227be848dd8", + "key": "7b0e32131fe657c909d47029342701d7", "notes": [], "params": { "pipetteId": "UUID" @@ -71718,7 +72078,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "309e56ebcfc94971561366cb746ca3c2", + "key": "b6dc402a82c19d87da1a505c7173a7b5", "notes": [], "params": { "forceDirect": false, @@ -71750,7 +72110,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "114cdf24e63e9945905ecd8e5bbd592a", + "key": "aab404c7659fb2be58bbf14e35b2911b", "notes": [], "params": { "forceDirect": true, @@ -71783,7 +72143,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "171f2878d393d52055ea225bc3656ef3", + "key": "3bd4b1af03ef32256edbfe65ab414afc", "notes": [], "params": { "correctionVolume": 0.0, @@ -71802,7 +72162,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f2ece0c7b00a2291c3b435836baec78", + "key": "b5dc57d2614d251f3d67748bea4a9989", "notes": [], "params": { "seconds": 0.5 @@ -71816,7 +72176,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77dc8ff11cdace3f68c6461fe1378b70", + "key": "ce1c4a2b38723b42958f026afc139250", "notes": [], "params": { "forceDirect": true, @@ -71849,7 +72209,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62ff7675118b121a5ca008e0df4f89cd", + "key": "3d3eeb660547fd78627ff6885a7722cf", "notes": [], "params": { "correctionVolume": 0.0, @@ -71868,7 +72228,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "395265c586612fec1caa632decb74c41", + "key": "aa2409f8ae3d279e6b61bcea6a601117", "notes": [], "params": { "seconds": 0.5 @@ -71882,7 +72242,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0069b012f44dc67ff1959dc66b430199", + "key": "19f02c452bde4131b93caf636866b5c3", "notes": [], "params": { "forceDirect": false, @@ -71914,7 +72274,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9265d180cd7566eeb7d7d256025b7924", + "key": "64d47fe7f7aacaac230c8c254ddbbc2d", "notes": [], "params": { "correctionVolume": 0.0, @@ -71934,7 +72294,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9a18e5ce7b3ff7459bfc056da5adea7", + "key": "f42233a1538977ba6c43b14d74416328", "notes": [], "params": { "forceDirect": true, @@ -71967,7 +72327,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aacb8da95fd4a3b9ee873ec6a481f515", + "key": "5f22e4774aa83098f3103badc03d3da5", "notes": [], "params": { "correctionVolume": 0.0, @@ -71987,7 +72347,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "658460410c03ecd5aad0b5604536d5f4", + "key": "243ce1157613fdcf2932e221fc4d70c7", "notes": [], "params": { "forceDirect": true, @@ -72020,7 +72380,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fbda33c9e4b00f49bfc607394099cdea", + "key": "0e441eb798792a15586cb57b4b47a77f", "notes": [], "params": { "pipetteId": "UUID" @@ -72034,7 +72394,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "010870c797e22f01f59610297877b4c1", + "key": "c60c13070c05ab29f809782295d8f048", "notes": [], "params": { "correctionVolume": 0.0, @@ -72053,7 +72413,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d284c5151a19236dc5e7efa26e8c59c0", + "key": "618150c930ffbcfe8cbcf466cd2de839", "notes": [], "params": { "seconds": 0.5 @@ -72067,7 +72427,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "88027e1b854c26ce6dcd5325e1317c92", + "key": "0fdb7167079e23a9cc4b239502a81ff8", "notes": [], "params": { "forceDirect": false, @@ -72099,7 +72459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4195971a936d38a999641ed87de9bbd0", + "key": "bd2c044c9a311ba58e13806a887c6b6e", "notes": [], "params": { "correctionVolume": 0.0, @@ -72119,7 +72479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6602bc599fbbe4c991b8865dd17bbdfe", + "key": "9affebfe98c3c659c2e28e8dbe040c76", "notes": [], "params": { "pipetteId": "UUID", @@ -72135,7 +72495,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11f0e8d38d8ee986759586218f3bdbf4", + "key": "658c3d8480bcce3e4cce5a33665feaa0", "notes": [], "params": { "pipetteId": "UUID" @@ -72149,7 +72509,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33c6bfeecf83559a1d27c90899481e8a", + "key": "3f69b83d6d073af531fad59a51e96405", "notes": [], "params": { "forceDirect": false, @@ -72181,7 +72541,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc609d83f2da5c4f52eb596144d6523b", + "key": "f51dbd0838cb3d887accba2b5446ccef", "notes": [], "params": { "forceDirect": true, @@ -72214,7 +72574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7cd71d8463d87484c7a8043ad4c31eac", + "key": "b1bf3c4c83ee5b34f495f0e0cd3767a9", "notes": [], "params": { "correctionVolume": 0.0, @@ -72233,7 +72593,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a63e4f47593e06d9fd9067e8efdc92e", + "key": "508f4092f61fcfc1417c7f63916de93d", "notes": [], "params": { "seconds": 0.5 @@ -72247,7 +72607,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b706931ec5dd754ab997582e2acab9ac", + "key": "4087dc8dde37b2f8a0d6a2c843d36ab4", "notes": [], "params": { "forceDirect": true, @@ -72280,7 +72640,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c376080e76255cd8ccc29efbf71c18a7", + "key": "f503af738d9743feeb9a468baefa8d15", "notes": [], "params": { "correctionVolume": 0.0, @@ -72299,7 +72659,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d84569e105a7dbb251c03d51875a4f2", + "key": "c26d1bbbbbdedbad12404df3f49d3df9", "notes": [], "params": { "seconds": 0.5 @@ -72313,7 +72673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9acf1716e2d3c2d4877fa08406c73fac", + "key": "8d21891234cac6a161bf260b21891ee4", "notes": [], "params": { "forceDirect": false, @@ -72345,7 +72705,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef22fbae94632b4a5bc4209f046304c7", + "key": "a44fe8f5bdd27cb35c14218cbf722414", "notes": [], "params": { "correctionVolume": 0.0, @@ -72365,7 +72725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45eb452bdb6dd0656b093621c6342f46", + "key": "a2f2c003176e0950b71cf6acca92711a", "notes": [], "params": { "forceDirect": true, @@ -72398,7 +72758,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ff0e0f325d7d957bb106a69fb2f1011", + "key": "770cf1c89089f3936df0bbc06f65979f", "notes": [], "params": { "correctionVolume": 0.0, @@ -72418,7 +72778,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e83fa887aa534f0e49c363986116a727", + "key": "5b18be7c7361aaa5c53494eb6c3e58b9", "notes": [], "params": { "forceDirect": true, @@ -72451,7 +72811,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "691c6069648099b1c312da80c5f31527", + "key": "4522679e1aa39a2c9053bb66287282c8", "notes": [], "params": { "pipetteId": "UUID" @@ -72465,7 +72825,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d7c7251021cb69aa14b9290efad6fff", + "key": "afad951c3f79bc115db1e577cea0feb8", "notes": [], "params": { "correctionVolume": 0.0, @@ -72484,7 +72844,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71359e1eba16957e7a19768164ec9b53", + "key": "cfac80a5fc299a676a417c884633c304", "notes": [], "params": { "seconds": 0.5 @@ -72498,7 +72858,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a066c365e8b7dafe07316256cc51f019", + "key": "341e012f41ad75fb30bff0bc7b69b260", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -72527,7 +72887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae71f60b4c1a3a14624dce5a9a62d43e", + "key": "2687d6325a2e7e2fd8a99fa3c7fb5162", "notes": [], "params": { "homeAfter": false, @@ -72542,7 +72902,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7690703f9146d00c6c83d5961c9ed83f", + "key": "690cbfee432634df4bb8e0cc0f731908", "notes": [], "params": { "liquidClassRecord": { @@ -72937,7 +73297,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "447ee45ef2bd119c359dd3f49b071b51", + "key": "8e9d9948a0b57c847c29d2fc00b32e92", "notes": [], "params": { "labwareIds": [ @@ -72959,7 +73319,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58c09fe8badd18230b912f502a99d07c", + "key": "9614601810c72c9849547a257ffa1510", "notes": [], "params": { "labwareId": "UUID", @@ -72992,7 +73352,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa1240f154b10db4ac9568d6b669a136", + "key": "3cda0271b140416d7591d5db3708f2dd", "notes": [], "params": { "forceDirect": false, @@ -73024,7 +73384,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0cde43f7aa13532dbb560839553260e", + "key": "9b138346de0399aded64b449a07cba2a", "notes": [], "params": { "pipetteId": "UUID", @@ -73040,7 +73400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6dd04094bed415564cb815a6e21d4d8d", + "key": "6f358f9c1011be30039f2799a24bb067", "notes": [], "params": { "pipetteId": "UUID" @@ -73054,7 +73414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d121909008dd715eec7385c96fb4121c", + "key": "fe185de4a77d7180d345f235e36214cd", "notes": [], "params": { "forceDirect": false, @@ -73086,7 +73446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "769c7438b92a6b41ab7e505f55386051", + "key": "5864705fd8ab40582b55b80afa9a3f8d", "notes": [], "params": { "forceDirect": true, @@ -73119,7 +73479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d913fc16f9f3f12dd0486f34983ef174", + "key": "196dcc3f441e88ca184c01e7dc9e750e", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -73138,7 +73498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e323fd3a66c0248bb191b273e693b8f5", + "key": "0c6f9f66c5081a8bc7078895d573dea6", "notes": [], "params": { "seconds": 0.2 @@ -73152,7 +73512,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e57d24ca88459b19736f2fb6b911746d", + "key": "a8826a7d3a2d780f70407da50e83ce65", "notes": [], "params": { "forceDirect": true, @@ -73185,7 +73545,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bcbb50d5e48cbcc236351a85d75a7f32", + "key": "0976bc66c081a2c7d9c2b064231304e8", "notes": [], "params": { "seconds": 0.5 @@ -73199,7 +73559,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75cb3d25c0ed5b7d7d221e2a849d69fd", + "key": "938e555d5194907913d02659839c4ebd", "notes": [], "params": { "correctionVolume": -19.238861521620144, @@ -73218,7 +73578,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab94a3e4f3e2f1a24520cdb0b4d03205", + "key": "adda3f0e57d6597f6f79d2ac23aa4290", "notes": [], "params": { "seconds": 0.2 @@ -73232,7 +73592,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0461ed99115e9f794278c1094e937a74", + "key": "572b8ae3bf69ee7f9f5ba0ac615cded9", "notes": [], "params": { "forceDirect": false, @@ -73264,7 +73624,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbc2d2c0ba152604f3607194e6b919a4", + "key": "66b8cea485821ee7a6c4427dc5dfb473", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -73284,7 +73644,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eda4263a7118ad78b57daddc64aa9549", + "key": "2d0e80cc3312be2ca1f997a212f019c2", "notes": [], "params": { "seconds": 1.0 @@ -73298,7 +73658,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f868bc21fcd032040438b8bd569b790f", + "key": "83b5cdb6826cda1591f2f66a37170759", "notes": [], "params": { "forceDirect": true, @@ -73331,7 +73691,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ca2616f09771936407040b48aabf3dc", + "key": "9566d0733ea97aa87b428f1f6513ce98", "notes": [], "params": { "correctionVolume": 0.0, @@ -73351,7 +73711,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ced8990d0d7f97f8ecea217bcc05d292", + "key": "2515d34dfcf2993e5f11f2139918cc92", "notes": [], "params": { "seconds": 1.0 @@ -73365,7 +73725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b032ed107457195aea50a27d01e763f6", + "key": "268d8f0ecbaf5db1edc23e7062d5523e", "notes": [], "params": { "forceDirect": true, @@ -73398,7 +73758,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d6445c69dceba6ba56a1a75545d482c", + "key": "88a95464888f66af95757d26f5524913", "notes": [], "params": { "seconds": 0.5 @@ -73412,7 +73772,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e5a2373b99ad291bfe3de0e0f026d57", + "key": "e95f3633d0124c501deed5c088b32966", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -73431,7 +73791,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "957204e7cc09771eea7cbf3e7355c5bb", + "key": "2f5cdf23605948f34781cad89c5eb23a", "notes": [], "params": { "seconds": 0.2 @@ -73445,7 +73805,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ad5e0251b878a8b58f00a6430105bbd", + "key": "851a03c4a508c991bcbc7b7f06bad9d7", "notes": [], "params": { "forceDirect": false, @@ -73477,7 +73837,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80de9d84ba09ae37e19089bc56afc663", + "key": "48c14d41134a6ee78475c315481f5b3f", "notes": [], "params": { "correctionVolume": 0.0, @@ -73497,7 +73857,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44eb3694417f664ad30f867261680bc2", + "key": "0d63fceae743308ab180b134345eaa76", "notes": [], "params": { "seconds": 1.0 @@ -73511,7 +73871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7a692eff5ab2ec11849e6b090d97bbc", + "key": "e64c4139d5251f6f4d680996f1074443", "notes": [], "params": { "pipetteId": "UUID", @@ -73527,7 +73887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "689354906948e5b49ac4d159068c7589", + "key": "068d8c2de39ae5beacdbf8c2bc3e963d", "notes": [], "params": { "pipetteId": "UUID" @@ -73541,7 +73901,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "51266eb6a350cd90ee3850f3f1da2f10", + "key": "715a1cf8dd8f8c6446ead425f950c6a4", "notes": [], "params": { "forceDirect": false, @@ -73573,7 +73933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3bf0ca35f1919fc187dee2f8e3fd623b", + "key": "924d6213b760c5d3e2a5fc7c9f679e96", "notes": [], "params": { "forceDirect": true, @@ -73606,7 +73966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95a548ae44d06389718cd0cd9aa45aa8", + "key": "4e59a71cb00dc851ad57bce55911dab7", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -73625,7 +73985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10281d654eabb0b706b20ea342ce9098", + "key": "181cafde031fac7b55398f2d0d45b40f", "notes": [], "params": { "seconds": 0.2 @@ -73639,7 +73999,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f8c292025a7d052013f9c90b661f39ca", + "key": "96f31218941b1bbbdf8f24146c45870c", "notes": [], "params": { "forceDirect": true, @@ -73672,7 +74032,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "465c41c5a2d3c46f814938510328687a", + "key": "93c547c7df59e5e8eb588175d18d6804", "notes": [], "params": { "seconds": 0.5 @@ -73686,7 +74046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4cb2c8fe3875f6a5ab7afdd795cff0d", + "key": "2f3ced99c1dd77c9eac61782da78b9e8", "notes": [], "params": { "correctionVolume": -19.238861521620144, @@ -73705,7 +74065,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18f627beae53dac68ae0e3227d76781c", + "key": "217e19954cb7374dc50f543a98a42e4f", "notes": [], "params": { "seconds": 0.2 @@ -73719,7 +74079,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d80541c842d28a7cb22d865bd1e89f5", + "key": "44cc84d387e302a102dcaa3c0eca0205", "notes": [], "params": { "forceDirect": false, @@ -73751,7 +74111,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd29098db93636485370737cbd155927", + "key": "622b278fb4dd933d750a250c7d78ec6f", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -73771,7 +74131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5acb66e94e5bb46b1e8b61239a8ff143", + "key": "9529c95786efd24f62f4fbf3949faaaf", "notes": [], "params": { "seconds": 1.0 @@ -73785,7 +74145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f54e73cb226499d0812ca23e9580320c", + "key": "ec7fda6448d11737be8c5807daaf58d0", "notes": [], "params": { "forceDirect": true, @@ -73818,7 +74178,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfebef8cb53d1583af70b2acc55b478d", + "key": "a0f10a41af403d7334064ced6212c22e", "notes": [], "params": { "correctionVolume": 0.0, @@ -73838,7 +74198,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "841ecff469dd0fd5a475ffe00ae84f29", + "key": "445f406ee83300ea31bf3c56f9310aba", "notes": [], "params": { "seconds": 1.0 @@ -73852,7 +74212,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41eb69e56854bb7c274129223fa2ea00", + "key": "ac041f5309f4f00a751a43fa83777521", "notes": [], "params": { "forceDirect": true, @@ -73885,7 +74245,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "073e93c9d6e69add6c35d64fa8ef41e8", + "key": "0e236602628805c5fcbe29a520fa24d5", "notes": [], "params": { "seconds": 0.5 @@ -73899,7 +74259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19760b2452f2ccb1f0e32cc3e89b2bfb", + "key": "33858f7452c71f8f7e54a24ae4888fdd", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -73918,7 +74278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "544f48bdd6f40ce0c0ff31a7d7b52b8a", + "key": "17a653274dbd89a41dbf6f9fd24bf5eb", "notes": [], "params": { "seconds": 0.2 @@ -73932,7 +74292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7581790ec0c45b7ae823c3a550dd5263", + "key": "52dd7edfd298610a7489abf96abae503", "notes": [], "params": { "forceDirect": false, @@ -73964,7 +74324,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5a7a51eaeb1b2e1156c611b1ac320ab", + "key": "db4db32c5b2473353c07ab5788a93074", "notes": [], "params": { "correctionVolume": 0.0, @@ -73984,7 +74344,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d549c634a4d12765404e4ad2ba13ef30", + "key": "5edc739bfc6f0319aa4db204d7847725", "notes": [], "params": { "seconds": 1.0 @@ -73998,7 +74358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7d90dd3adf0ff2d32a392649cbee8796", + "key": "bb5479fe712f2d9c4b90886ba517a1de", "notes": [], "params": { "pipetteId": "UUID", @@ -74014,7 +74374,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c047fd3b97e5b28d550b020da26bbdf", + "key": "ca01db2120239fdb7f9856ae8391cd26", "notes": [], "params": { "pipetteId": "UUID" @@ -74028,7 +74388,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f40088283b0fd42d0f5c63a319469f26", + "key": "9dfc8d641ab944536d82d399a763ac12", "notes": [], "params": { "forceDirect": false, @@ -74060,7 +74420,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "776197a1dfd208a60989f5b132d445c0", + "key": "53ef5f76e80a65546cdd0604323386bf", "notes": [], "params": { "forceDirect": true, @@ -74093,7 +74453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "862cb6746073b16bbeafe92251c5855e", + "key": "16fe596cda07c11dc98e278a166fe630", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -74112,7 +74472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f4cc566e492eaaf4407ded094837f36", + "key": "49a6acfd802f4c4114800d3c4bd26b49", "notes": [], "params": { "seconds": 0.2 @@ -74126,7 +74486,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b56992421dabffd5c878723e0d975a1", + "key": "68df2e5ee630bf3c9f9ff14d4fed51e2", "notes": [], "params": { "forceDirect": true, @@ -74159,7 +74519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bba2949546c99a671fe581ab9c817bd4", + "key": "9285690e01b4a3a93fc34f02567961ab", "notes": [], "params": { "seconds": 0.5 @@ -74173,7 +74533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d8909c2f79702a070b022677c7a5d54", + "key": "3f1193fed1e189d952351045c9089a5f", "notes": [], "params": { "correctionVolume": -19.238861521620144, @@ -74192,7 +74552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a1fc7c49d296167c3c5260a53e425cd", + "key": "8c740aac05d13dd3440bb4c48ac6c8c0", "notes": [], "params": { "seconds": 0.2 @@ -74206,7 +74566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a31779213d9807717ad2d82df08f82b7", + "key": "34c20a20b36d50ce1f7131c200293318", "notes": [], "params": { "forceDirect": false, @@ -74238,7 +74598,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e85417d6875fe2c6f4a44207aa39eed", + "key": "fc76afd96caa4aabb3dc2a029a1534b5", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -74258,7 +74618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4950d4a1784d8af0617f60fb0fbe692", + "key": "78da15c9bf1174ffa06cb0b0eeb3412d", "notes": [], "params": { "seconds": 1.0 @@ -74272,7 +74632,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74647367b3789ee26a55f75fc98ca98e", + "key": "9d9fcbf7f2144bf288f1acfcaaede6ca", "notes": [], "params": { "forceDirect": true, @@ -74305,7 +74665,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a66880e5deac3897e5a92832f028ef96", + "key": "e5375082bec0758a99ee91f3e852b5e8", "notes": [], "params": { "correctionVolume": 0.0, @@ -74325,7 +74685,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e34066cff1acf8d3103d42da66cf2dc9", + "key": "9d589f550844f7e83c214991af277f03", "notes": [], "params": { "seconds": 1.0 @@ -74339,7 +74699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a06e45f4dc7624fdb681143fbe0fa58e", + "key": "cc404b879a275af3b395da44580f92f9", "notes": [], "params": { "forceDirect": true, @@ -74372,7 +74732,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4593b2bf9fc5b0e2fe1d20855bb5ee7", + "key": "a210289c23e41888b0fbaff336d1f6b3", "notes": [], "params": { "seconds": 0.5 @@ -74386,7 +74746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ade9dc31fabe189d22899cd70852882", + "key": "47f9b2e37ce6830232ed18bfba5c9bfa", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -74405,7 +74765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "82b605536d9ef8ffd8ecca8bda2d547a", + "key": "e98cc8bbd891aedb93f7089114a10070", "notes": [], "params": { "seconds": 0.2 @@ -74419,7 +74779,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcca926e61da72afd35ec5e154767493", + "key": "e1970e804ccb0dde9eadb4fd053f3375", "notes": [], "params": { "forceDirect": false, @@ -74451,7 +74811,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "272134df2e43f60ee9f82ccd11a8df5a", + "key": "955417543dd3f6533c2240c187c1247c", "notes": [], "params": { "correctionVolume": 0.0, @@ -74471,7 +74831,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59d0641e57c7cc71ad6869391b359208", + "key": "ecc76ff300fd4a28d551610e66bbce1f", "notes": [], "params": { "seconds": 1.0 @@ -74485,7 +74845,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4747c128db1c2fda19fecd675329a46", + "key": "577dce5ed774b5ac7ff6e6bed8e0db85", "notes": [], "params": { "pipetteId": "UUID", @@ -74501,7 +74861,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07ef72db559b53a30f2db17752147bbb", + "key": "fe672f8768ee92e66eac3b4361e757bc", "notes": [], "params": { "pipetteId": "UUID" @@ -74515,7 +74875,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c20a634308704449006ec431825f048", + "key": "79ad4c3c44855e6f3773447e9b7e8aba", "notes": [], "params": { "forceDirect": false, @@ -74547,7 +74907,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f280dda0f8e0366905262a211217778", + "key": "d76a073e380e28be838205958e441fac", "notes": [], "params": { "forceDirect": true, @@ -74580,7 +74940,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6da3d2841094dbf259ef52ada839deb", + "key": "6499fe579716593323a0cf2067723a3b", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -74599,7 +74959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89ad9d566c729dced94f4ec03724c632", + "key": "8d8649b6f2c9a7ae5de2391cfca9fba9", "notes": [], "params": { "seconds": 0.2 @@ -74613,7 +74973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ca82ca000814c8c803276a3a2525a7c", + "key": "1d4f78eac87921a9bd258c37b9c5041b", "notes": [], "params": { "forceDirect": true, @@ -74646,7 +75006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "443c1b3afb2b8826968046d8152a76d0", + "key": "8acdb817a2a63a7a42a3e8f35192a6e9", "notes": [], "params": { "seconds": 0.5 @@ -74660,7 +75020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe85ea063125b6b7dee3ad614680640f", + "key": "f530963a3043f6610e2870e3b5f99fb3", "notes": [], "params": { "correctionVolume": -19.238861521620144, @@ -74679,7 +75039,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "68f0e42843ae8eb302a2d72fb617eb39", + "key": "98a708f700cd6bcf8aae6221a5be0be4", "notes": [], "params": { "seconds": 0.2 @@ -74693,7 +75053,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86d8dc115b93b0b5fa08c3aa97d2eae9", + "key": "6b55ab59ef1e07398f2965f5d08f910f", "notes": [], "params": { "forceDirect": false, @@ -74725,7 +75085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f659d8d0e49363549ffac34a799c903", + "key": "81f2a6e6e8eb4854d70f092b775c1828", "notes": [], "params": { "correctionVolume": -19.044444444444448, @@ -74745,7 +75105,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83cacd7102e05ad95a7ccc736113e827", + "key": "44ede396c3c453af29c1d07df0efbbf9", "notes": [], "params": { "seconds": 1.0 @@ -74759,7 +75119,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d9c352a488668afedc1d60b7df4cd4b", + "key": "1ec3af75c723a2beb4b20a6c16499e1e", "notes": [], "params": { "forceDirect": true, @@ -74792,7 +75152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d8e0e52d6e0d64267da34e4a5a06dcf", + "key": "b59ec988f3cc9bff5e1d740e178fa0df", "notes": [], "params": { "correctionVolume": 0.0, @@ -74812,7 +75172,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78578d70226f1272dcca6efad018d854", + "key": "40da0af06d266de4708796bf718f191f", "notes": [], "params": { "seconds": 1.0 @@ -74826,7 +75186,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8bfaf96423118157f21a226d0688ac3a", + "key": "9eda37bb3b7a53db8f8016117d77021d", "notes": [], "params": { "forceDirect": true, @@ -74859,7 +75219,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d82eacab5d3cca98eb592e398b4fb1cf", + "key": "3c1bfd886a6f0ddc7062ed85f22c3f3b", "notes": [], "params": { "seconds": 0.5 @@ -74873,7 +75233,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1fe56e302508b1365f22d77aa94a8797", + "key": "3935720f356c596ab8b8825034c591ef", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -74892,7 +75252,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9971fb323954a445d4e478ab071e09da", + "key": "b10972ad2fb8d1c5fa5f106123e8911f", "notes": [], "params": { "seconds": 0.2 @@ -74906,7 +75266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75ea9c776b6b750028681e61cdb93d08", + "key": "7f914543fc9197df823f11b877359690", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -74935,7 +75295,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79b68dd4853f81422ad5021fcb8a487d", + "key": "ebdfcf874c92c258d7c1d72322e1472f", "notes": [], "params": { "homeAfter": false, @@ -74950,7 +75310,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bbd772a84948160ec2d68276d0baee5", + "key": "284e50affda92a58b947c62e56604a35", "notes": [], "params": { "liquidClassRecord": { @@ -75313,7 +75673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70ac6ac25177e1150774da2daa00facb", + "key": "b21ded74251a8c991f5dc78b57778c5f", "notes": [], "params": { "labwareIds": [ @@ -75335,7 +75695,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37d9f4c03dda26017a0d4c5bbaae2a16", + "key": "2d673a7ec62a92bbf611c1cabd66c7c0", "notes": [], "params": { "labwareId": "UUID", @@ -75368,7 +75728,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd54f4296413bc0bf1ef0d31a6343354", + "key": "74a261c320d0d1597d84cf46fb89586b", "notes": [], "params": { "forceDirect": false, @@ -75400,7 +75760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe469916747aeb2ab85f05900ab72fbb", + "key": "40886b604f04436929d8b5f2556ba735", "notes": [], "params": { "pipetteId": "UUID", @@ -75416,7 +75776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca06b7ae431ad619e4b1aad9bfeccab7", + "key": "6c86dbf487ad1cf586114764aff1d83d", "notes": [], "params": { "pipetteId": "UUID" @@ -75430,7 +75790,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "59b186dfb9eb12f0e56bb55a458c7343", + "key": "55d647b3c4f2a0612dd7b42c8b3e2ca8", "notes": [], "params": { "forceDirect": false, @@ -75462,7 +75822,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e4d0f6189d18380b9cc532dccb77552b", + "key": "f9b9320436e63cf3eb620a3fef1bc9b6", "notes": [], "params": { "forceDirect": true, @@ -75495,7 +75855,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a71e1fd943f93cf480858c20ae8223c6", + "key": "3cf9ebc5c1516da0d9602a6e93c97e66", "notes": [], "params": { "correctionVolume": 6.622222222222223, @@ -75514,7 +75874,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74f765f09651dbed5834ff28efd0ef5f", + "key": "0c9b16b49fe5948530564dc83309480f", "notes": [], "params": { "seconds": 0.7 @@ -75528,7 +75888,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae32e8efb566e9e409c5f76c980d5440", + "key": "43e72158d4cb0688e47d1b8ac5726c92", "notes": [], "params": { "forceDirect": true, @@ -75561,7 +75921,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6505490b332cffef06218e7938bd99b", + "key": "71d6324073d91c94b49fef67d4eecb4c", "notes": [], "params": { "forceDirect": false, @@ -75593,7 +75953,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "235dc0709c132db63efe76b5037f5798", + "key": "10c0082744adab6cddc1607f64f4f1e5", "notes": [], "params": { "forceDirect": true, @@ -75626,7 +75986,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "905af0853ddb7f930fa75c305bf0cade", + "key": "a2a31df4771f245b6a7a9c8fba1491f9", "notes": [], "params": { "correctionVolume": 0.0, @@ -75646,7 +76006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3d65491da71f56cb6a00158359a1184", + "key": "237541eb57353c18669da3cc98e0379e", "notes": [], "params": { "seconds": 0.5 @@ -75660,7 +76020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "923a22185188706e1a80a0e8db305b78", + "key": "cc2907fb1c3dabb757a8c78e9f100819", "notes": [], "params": { "forceDirect": true, @@ -75693,7 +76053,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "432896436dc1f53e687b9be649fa9957", + "key": "c98810c468fac14272869ba49bb4915f", "notes": [], "params": { "pipetteId": "UUID" @@ -75707,7 +76067,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d909f918ff397256e22c005c3e32fe99", + "key": "7db75971ceac34b13c8164b6e545e462", "notes": [], "params": { "forceDirect": false, @@ -75739,7 +76099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5b37647b3e0d491abc94363e8cbcba1", + "key": "307109dbfd311b0083c4d3674ee31ad7", "notes": [], "params": { "pipetteId": "UUID", @@ -75755,7 +76115,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16159c57b4b9fe9c315c19e81f003fa6", + "key": "42730a419bbc4d8d49f04558aa4d9d6c", "notes": [], "params": { "pipetteId": "UUID" @@ -75769,7 +76129,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a43b79eb0666f140df02d65fd0a68f3", + "key": "9a1ea404bef488f0f8fb5677b258eb8d", "notes": [], "params": { "forceDirect": false, @@ -75801,7 +76161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3a2bc7617febb5fb6e2be8b50c71925", + "key": "480c7018148aa4378b52c067b9ecba63", "notes": [], "params": { "forceDirect": true, @@ -75834,7 +76194,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33a3bcdcf8e1e05dc812d1c1ab6b3347", + "key": "98b0cf7ee13f8644cbc904df8cafc8e5", "notes": [], "params": { "correctionVolume": 6.622222222222223, @@ -75853,7 +76213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25e77ecb8cebf45333428428e3044aaf", + "key": "c6d54551e5bc3892b69c4ad8e059f239", "notes": [], "params": { "seconds": 0.7 @@ -75867,7 +76227,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eeeab56e83098b120903b823aed00359", + "key": "48a6bd74928b66aab785bdccc09a65ee", "notes": [], "params": { "forceDirect": true, @@ -75900,7 +76260,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba452dce67e39b40f020652869b6f6e3", + "key": "b5c32e40127194334b779c8a3b6380c2", "notes": [], "params": { "forceDirect": false, @@ -75932,7 +76292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a43f99918ab779a60e9f2c2e4fb3fba1", + "key": "878ae0cd0dacea9d537970d746961ab8", "notes": [], "params": { "forceDirect": true, @@ -75965,7 +76325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8711f5ed45079adfb4dfff79fcefadd6", + "key": "f81c782acbb31e475d161d4bf4c99fd6", "notes": [], "params": { "correctionVolume": 0.0, @@ -75985,7 +76345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ecfbe948be51364d9772cb15649ec76", + "key": "9705124fa618b66c55ec107a844e0ebd", "notes": [], "params": { "seconds": 0.5 @@ -75999,7 +76359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd4e230531d951dbe7cdadad1e517751", + "key": "98cc62aa1b788977cbc7fbb1745ca3e0", "notes": [], "params": { "forceDirect": true, @@ -76032,7 +76392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b08c20e06e1c9200c6904757e261f44", + "key": "03afe3905fbca915d577dab210d55cc2", "notes": [], "params": { "pipetteId": "UUID" @@ -76046,7 +76406,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "045ed6f2934f645b0e80c99b80be278f", + "key": "f0bd02f5db42d488b00e21eca0cb4462", "notes": [], "params": { "forceDirect": false, @@ -76078,7 +76438,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "403afa3328311190fed7f06804a06b1f", + "key": "3a5136a8f95130819e5b1bcff593ba18", "notes": [], "params": { "pipetteId": "UUID", @@ -76094,7 +76454,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "174097e0e8e3535d517883d1a80a4556", + "key": "be96d38bdb6ac508bb59fd5f70e22c47", "notes": [], "params": { "pipetteId": "UUID" @@ -76108,7 +76468,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53f0b742aacea9b253d29c26e06cba5b", + "key": "50083aa5849f04252637ec67bdc57954", "notes": [], "params": { "forceDirect": false, @@ -76140,7 +76500,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "adedc7d1c88083e44fa3ac86f280fe48", + "key": "8cc2c2361dc6001c19159435cde7a0b2", "notes": [], "params": { "forceDirect": true, @@ -76173,7 +76533,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a357a3b1110a299e593bf3bc22f54baf", + "key": "d3b7ed03d9a4f9aa7c3b7c77bdea6c1e", "notes": [], "params": { "correctionVolume": 6.622222222222223, @@ -76192,7 +76552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "655531269c104f1d9ad32e81a96b9551", + "key": "8639eabde8685d5e9c475210b394606a", "notes": [], "params": { "seconds": 0.7 @@ -76206,7 +76566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d31076ad81d2eae53c5952f2c273f141", + "key": "7086c57272402687831b94d613ad1f61", "notes": [], "params": { "forceDirect": true, @@ -76239,7 +76599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf2a02209c64d637c366188161696859", + "key": "5702f4f8c7f0047a0cbf0337aade6b30", "notes": [], "params": { "forceDirect": false, @@ -76271,7 +76631,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2bb9595d39a7533b99f3a5e9bf55fcc", + "key": "b2803e8f3621635058580f09d7a3d70b", "notes": [], "params": { "forceDirect": true, @@ -76304,7 +76664,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "698e52a6cdcb2660624c9d9403a9c39c", + "key": "9833ee8273fe48bcfa143c6bcf592ad1", "notes": [], "params": { "correctionVolume": 0.0, @@ -76324,7 +76684,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad7dfc31d97a8fa36d6a91b0bf5e5407", + "key": "4f7274406e22e86932df156be564f9f1", "notes": [], "params": { "seconds": 0.5 @@ -76338,7 +76698,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81fad5824b2f872682dc6b7972b2dee5", + "key": "33a556e9a5ca9b25ec5a9c8e1b929333", "notes": [], "params": { "forceDirect": true, @@ -76371,7 +76731,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3482dfa02c9a360f7aedc248d9b47264", + "key": "2af1e6ea5cf4ec17d726e4e6ced3e604", "notes": [], "params": { "pipetteId": "UUID" @@ -76385,7 +76745,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9959a1fd3796923661a1630c061f4a7", + "key": "e62cde73302be76e3432a3c3f7d5a1f7", "notes": [], "params": { "forceDirect": false, @@ -76417,7 +76777,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "40468966d86d482d38d9cfb522a614cf", + "key": "ae1f1a27d1d3e51317e111e8cb9575b0", "notes": [], "params": { "pipetteId": "UUID", @@ -76433,7 +76793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e49a23f2e6f69f93bff846987c907635", + "key": "9f6e31ee7f781e10c62008547644bf9c", "notes": [], "params": { "pipetteId": "UUID" @@ -76447,7 +76807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b6881b98a0aeac05d12aac531040cf0", + "key": "7bfa644118c6057e2811afaac3f7931d", "notes": [], "params": { "forceDirect": false, @@ -76479,7 +76839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f67ffbfc81dd6a5617e07e0d58808315", + "key": "9d0482a4226efab441713e89c534366c", "notes": [], "params": { "forceDirect": true, @@ -76512,7 +76872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a6ce43e74e4bcd96a0445886fcd9e02", + "key": "e7cc6d0e9c65bc46428c5a074207df02", "notes": [], "params": { "correctionVolume": 6.622222222222223, @@ -76531,7 +76891,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0eef32076888b6cb65e4a2311d11ef6d", + "key": "1ee81baff86feec9f0c2cf07345d2c0b", "notes": [], "params": { "seconds": 0.7 @@ -76545,7 +76905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3df072e8576d243b0d6ee9f5f1c10de", + "key": "102d44954e66ef1093ece790d25a1d3b", "notes": [], "params": { "forceDirect": true, @@ -76578,7 +76938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49955e088073fd547b92860ee16f6551", + "key": "f745714665d7be8ffebed369c4ec640e", "notes": [], "params": { "forceDirect": false, @@ -76610,7 +76970,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3afd0e69f86fadd5d66b3aa5a9783def", + "key": "771e263afac5ec6771c18ef4e517bb0d", "notes": [], "params": { "forceDirect": true, @@ -76643,7 +77003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "023737612f6a7076bcba8b70b3ba6e69", + "key": "efc929875ed6261c4ca0d7d27ffe9151", "notes": [], "params": { "correctionVolume": 0.0, @@ -76663,7 +77023,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89bedf85c3cd47bf145c055d82296afa", + "key": "7d3866529262a65d0e516dbf92d5ac19", "notes": [], "params": { "seconds": 0.5 @@ -76677,7 +77037,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a84c8950ceb854739cacc62c1a2ae29a", + "key": "339d31983f75017852befcf3670e00d0", "notes": [], "params": { "forceDirect": true, @@ -76710,7 +77070,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "115ab096860926af60477602411e7793", + "key": "2abb677e1a37f68060cee795d877c7d7", "notes": [], "params": { "pipetteId": "UUID" @@ -76724,7 +77084,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c3d54fb95a191903203c10ce65c98727", + "key": "315da303db1e59509817a956e384caf8", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -76753,7 +77113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f775c30f7980cc7769b97b408982af5", + "key": "d276abefb87146f16eceaf2da36e727e", "notes": [], "params": { "homeAfter": false, @@ -76768,7 +77128,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a23ccb3bb4e7e2dfa0bfe3a6e9495a2", + "key": "38fb2f27c8a94365f1ecf771d1a6d80b", "notes": [], "params": { "liquidClassRecord": { @@ -77103,7 +77463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5439ea40e322a3a5db72372139e8f529", + "key": "ffa6860fa72267a3c90951d3b9fc4ee8", "notes": [], "params": { "labwareIds": [ @@ -77125,7 +77485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d857e77859db04b2b97f8044fc724b0a", + "key": "02b1d2839a2dcdc6915cf80571a7c391", "notes": [], "params": { "labwareId": "UUID", @@ -77158,7 +77518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fa45b77b15beec39b9bad05a1745112", + "key": "f2313ed214577ca641e0a752d86fb52f", "notes": [], "params": { "forceDirect": false, @@ -77190,7 +77550,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7d7c875a852ea33e37a7af6a617cde3", + "key": "7dd03c4157a07fb933fd5b8b607e7064", "notes": [], "params": { "pipetteId": "UUID", @@ -77206,7 +77566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a98ce0f57883be13592f49dc8fe03ce", + "key": "3cda1da20ebdb08edf936bbf86e9b159", "notes": [], "params": { "pipetteId": "UUID" @@ -77220,7 +77580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b3e7977a2e2bbd6b7a84f8ea106b56b", + "key": "8937ea6a8e8d0dd3b232d8effaf88fa8", "notes": [], "params": { "forceDirect": false, @@ -77252,7 +77612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ba943728df30f0a48161a38b9634146", + "key": "0a4d962752fdb7a8b48289c379414f38", "notes": [], "params": { "forceDirect": true, @@ -77285,7 +77645,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7fedb48d8c2da154e91956bb9f1ed656", + "key": "1d662bf8a2e24709c71fefc5cc95b49f", "notes": [], "params": { "correctionVolume": 0.0, @@ -77304,7 +77664,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b1f19ee0a43f75e5664f8067b1faf07", + "key": "015174a41b75076b8bda64d7d830cfb5", "notes": [], "params": { "seconds": 0.5 @@ -77318,7 +77678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e78fc499ba417e19060fde431385f898", + "key": "616e3ad2c298fc977ba62698d40c9a7a", "notes": [], "params": { "forceDirect": true, @@ -77351,7 +77711,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74fa1956ab6345120f0fa667c089b1d7", + "key": "9d6e282cdcd947521f5e2067af7a5154", "notes": [], "params": { "correctionVolume": 0.0, @@ -77370,7 +77730,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c6bff89d5d6d6ceeefadc1a732b579fc", + "key": "dcf592e1694ce1c51619becf908fb901", "notes": [], "params": { "seconds": 0.5 @@ -77384,7 +77744,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "218491327d4a2d8b01741c2e71839758", + "key": "b10e3ae9cf801863d1c5e2203839dec3", "notes": [], "params": { "forceDirect": false, @@ -77416,7 +77776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4818bd4f3a46b8de2ed817aa1da09d47", + "key": "0b0c8dacb416fbf2ef27e5a572a75e6b", "notes": [], "params": { "correctionVolume": 0.0, @@ -77436,7 +77796,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b88317adbfee7c1a446c7f8cb5be8eda", + "key": "5faa53d63c7ffff6b04bc9d120a91d92", "notes": [], "params": { "forceDirect": true, @@ -77469,7 +77829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa8bb020a8e8d8f789050852e04f266f", + "key": "8beb850653c34c3ec539a4cb0a98acc8", "notes": [], "params": { "correctionVolume": 0.0, @@ -77488,7 +77848,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84639d559306339d052409d2fe4c51e2", + "key": "7d15c6a8b2fe20615e0c1b984a5d0ff8", "notes": [], "params": { "seconds": 0.5 @@ -77502,7 +77862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9def40a3dfda85bdfad19b158b0c5b80", + "key": "968128ba62945a1eb03f652a038f0dfa", "notes": [], "params": { "forceDirect": true, @@ -77535,7 +77895,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "68fc6bb45e0eb0bf308c6eae9ec0f0c8", + "key": "c9868bb0b3c854093634835e8093ba52", "notes": [], "params": { "forceDirect": false, @@ -77567,7 +77927,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bf8d9cc7813df3fcb04aa1c5bcb9b48", + "key": "a4752d071def106296f8dc674aea71e3", "notes": [], "params": { "forceDirect": true, @@ -77600,7 +77960,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ca969e09e5eff11fe2949068736c7f2", + "key": "f47a5e71b38ac41fcc56470c22920329", "notes": [], "params": { "correctionVolume": 0.0, @@ -77620,7 +77980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f1dbfc5ac85ef975698d8a852b64d80", + "key": "1c6f2134a9e88dcebf5e74b3ad8c7f2e", "notes": [], "params": { "forceDirect": true, @@ -77653,7 +78013,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8e8ff35bdc720dbc2c481348c512ce01", + "key": "646c43991b369953ea6579ba1409eb97", "notes": [], "params": { "pipetteId": "UUID" @@ -77667,7 +78027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7a98a62b56ce73c481ca7701e433dca", + "key": "ee73940d29e10a665d27e0753f8481bd", "notes": [], "params": { "correctionVolume": 0.0, @@ -77686,7 +78046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5827ea04ab4262b8cc65074a9faa470b", + "key": "6384915e5b172714c6528c99cb66b427", "notes": [], "params": { "seconds": 0.5 @@ -77700,7 +78060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "afd728216b64a0fc64bdf1bd092181c8", + "key": "ea01580414556b437deed83db1a98f76", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -77729,7 +78089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3967e91505e260619c29b23a54355f62", + "key": "1742a0a6ccc4fd0936f03cab6cb04696", "notes": [], "params": { "homeAfter": false, @@ -77744,7 +78104,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d2cacdd73424f799cac6aa7f59b4065", + "key": "72f69bb8590d57196d11676ec33a7e2c", "notes": [], "params": { "liquidClassRecord": { @@ -78139,7 +78499,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cef88f80fbe287a333d5f6bc9e3dda8c", + "key": "37a0b7cf77a7974531e257747d3ef7ac", "notes": [], "params": { "labwareIds": [ @@ -78161,7 +78521,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "14ef261d7450e2c3e152a4b3c2295cc9", + "key": "f1071b91c71a79e4262f7d423b48cc83", "notes": [], "params": { "labwareId": "UUID", @@ -78194,7 +78554,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "626e11b183196be9fa4ae83c9d035edf", + "key": "1f77bd7363d1f728b89c2e2d961ef1b3", "notes": [], "params": { "forceDirect": false, @@ -78226,7 +78586,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d44428c5600b1ed05792620a7731ba08", + "key": "17b2b2593e6364fc0c57102ef35db253", "notes": [], "params": { "pipetteId": "UUID", @@ -78242,7 +78602,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0958bc0128254a096e13c6cf5bf1075", + "key": "af2945fc8f7ae6520e834cf7f57c9cca", "notes": [], "params": { "pipetteId": "UUID" @@ -78256,7 +78616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac73d858d4969f1d08795a7257a18982", + "key": "34242a16f6af26ddade86016348e27b6", "notes": [], "params": { "forceDirect": false, @@ -78288,7 +78648,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd71159c03c5e9eb4f31fbc8556f176b", + "key": "9bfe93802008a300a865409951c4eeff", "notes": [], "params": { "forceDirect": true, @@ -78321,7 +78681,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73d0ecc1420b30dc6cd6989a16c851ff", + "key": "f0665ba5042d58df5475cde1fe7d3e67", "notes": [], "params": { "correctionVolume": -15.755555555555556, @@ -78340,7 +78700,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e20ce1a78e4626552b14c31334ac17d", + "key": "8b8c03123fcafad7ce0036c44fcc03df", "notes": [], "params": { "seconds": 0.2 @@ -78354,7 +78714,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44dd1c3a9ca7e50fd8083b5689f2398b", + "key": "ceaee940f6e60524cf223f16ac9b89fd", "notes": [], "params": { "forceDirect": true, @@ -78387,7 +78747,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22aea1abd708ca1fa01ed06166790bd3", + "key": "f38d13d5f568e5ddd559900a40c5131c", "notes": [], "params": { "seconds": 0.5 @@ -78401,7 +78761,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce588fc8157467044bcb65b05a282954", + "key": "7e54f5c081e255f2f1c18451c9264191", "notes": [], "params": { "correctionVolume": -15.99857690202518, @@ -78420,7 +78780,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5dc8b2e283511f3fc4c1f383ffabd52", + "key": "73e1a98685f23520e2eb5eefd5cb3b39", "notes": [], "params": { "seconds": 0.2 @@ -78434,7 +78794,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "afbc0e69e1ca4c9d66d4d89e73d8fd94", + "key": "fe6d2dfe4477e113108215973b8cb060", "notes": [], "params": { "forceDirect": false, @@ -78466,7 +78826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a21122daca30c17bb87626429b6f75b0", + "key": "687ae9355214f61e230af0629a2cbe72", "notes": [], "params": { "correctionVolume": -15.755555555555556, @@ -78486,7 +78846,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2295107653b2438ee95b29a8e9399264", + "key": "4d10672d1831e9ba9d32f1eb2edb287f", "notes": [], "params": { "seconds": 1.0 @@ -78500,7 +78860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8232317c025bd3c3fd4ab5655c05add", + "key": "4f6524f835fa313f2399394f263d61a0", "notes": [], "params": { "forceDirect": true, @@ -78533,7 +78893,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86153ad0e05830ed89f9e678f462f7b0", + "key": "a8c2546489e70fa05cc1c49d7552f444", "notes": [], "params": { "correctionVolume": -32.2, @@ -78552,7 +78912,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d54cd1c4abb743f724e72f93f51548fb", + "key": "073324d0d4904d5fa7a3927fae6eb2bd", "notes": [], "params": { "seconds": 0.2 @@ -78566,7 +78926,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "daa5403ce8451c412de7c5b794ac7d10", + "key": "c564f9c1e236e693c56af62fe4d5b3af", "notes": [], "params": { "forceDirect": true, @@ -78599,7 +78959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91bd151a4798ce8fb6080103975f27bb", + "key": "e10877d0a6e1fa2d6accae6b25ba3a9c", "notes": [], "params": { "seconds": 0.5 @@ -78613,7 +78973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea0fb5b6d9e9232052cee1804dfd239d", + "key": "6108adc4851cd5fbe34f65009bcec1e4", "notes": [], "params": { "forceDirect": false, @@ -78645,7 +79005,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5174454aa7113549d913447b4a803b5", + "key": "6bc908bceddf24a06799f561464bb47a", "notes": [], "params": { "forceDirect": true, @@ -78678,7 +79038,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fd3da7b626183a8c00b975fbf0ed381", + "key": "7568b62bf4af1c038e51738af023a8da", "notes": [], "params": { "correctionVolume": 0.0, @@ -78698,7 +79058,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97e4165e381efd9f3eba15c65f075020", + "key": "c5b6b24cdd7206f4f15d1a3900f7ceb7", "notes": [], "params": { "seconds": 1.0 @@ -78712,7 +79072,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d22566dce22ae3503ccde127dab095d6", + "key": "58e4bc24839e391c5136a6b9806a4a47", "notes": [], "params": { "forceDirect": true, @@ -78745,7 +79105,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16d7364b4911e6a4637ac17e763862d4", + "key": "33215a850fa68662b42d6008c88b426d", "notes": [], "params": { "seconds": 0.5 @@ -78759,7 +79119,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e2cfbc4688c39634978e3036f19efa5", + "key": "5799befd0c06bc178cecdca22dd6ed25", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -78778,7 +79138,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1acb6a6021a59bc74e6e9b6115e30453", + "key": "93c32d61cbe9de5517414effcf12ece3", "notes": [], "params": { "seconds": 0.2 @@ -78792,7 +79152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "699fd0a8a8dfb6cbb2477704a54e9299", + "key": "1ed867e5d9a276d23b4353d5ec08abe5", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -78821,7 +79181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "67ccdd03350795bf00fac21229011ade", + "key": "08a26f15f56b77003394d8a9791cc78b", "notes": [], "params": { "homeAfter": false, @@ -78836,7 +79196,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e276b74f77689d00a12af25aead396b7", + "key": "cd126b24821cc7893e29e5f166dcb9aa", "notes": [], "params": { "liquidClassRecord": { @@ -79199,7 +79559,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d40d373c6825273090d2bbc9ad474c3e", + "key": "72699d8753a0cd72c9e4bfb0e1ee40a4", "notes": [], "params": { "labwareIds": [ @@ -79221,7 +79581,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd380cba11a0e9deb34b9a8e7cf5ff88", + "key": "49e494942d28443ec90f9b7e496fb3cc", "notes": [], "params": { "labwareId": "UUID", @@ -79254,7 +79614,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93f68754c8830ebefdd169acdd45d8f2", + "key": "973732714269b71aa8695431b2ff2668", "notes": [], "params": { "forceDirect": false, @@ -79286,7 +79646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5b1ccb19c4324565623199004565e27", + "key": "2935c78e0f4f16fffac8f6edfe6026f7", "notes": [], "params": { "pipetteId": "UUID", @@ -79302,7 +79662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d1d63694dba52370954be378cac18377", + "key": "d77a981f2c7db121bc2c91e6c958a501", "notes": [], "params": { "pipetteId": "UUID" @@ -79316,7 +79676,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb4ecbe4a38fed22236bb4729894aa69", + "key": "700010ec11975a6d067e17cf0f07aec5", "notes": [], "params": { "forceDirect": false, @@ -79348,7 +79708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d806beea929045396d4c98edb237f732", + "key": "ff466b255f11beaaa56e1cc364a1be09", "notes": [], "params": { "forceDirect": true, @@ -79381,7 +79741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77fa74c5bf385ad3e4a1edc0e540625f", + "key": "eb8a1c64150191e05d3d146e321e07ef", "notes": [], "params": { "correctionVolume": 5.277777777777779, @@ -79400,7 +79760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9dc148d82b7b0074ada2875ec134c3e", + "key": "3c1ddc06d54e7c43d8aed7e50048a901", "notes": [], "params": { "seconds": 0.7 @@ -79414,7 +79774,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ef4614030320ceb0dcc5c25c3186444", + "key": "ea25ed7fb50385941c827e05811ad94d", "notes": [], "params": { "forceDirect": true, @@ -79447,7 +79807,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a14a31ddafe11f09a765524ea8ded31b", + "key": "4c059eaccba1f044aee53710d0c71a21", "notes": [], "params": { "forceDirect": false, @@ -79479,7 +79839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f90e7491e32afedb78066ebe1eee14e7", + "key": "746f39271f698819dab01ee0066a8199", "notes": [], "params": { "forceDirect": true, @@ -79512,7 +79872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "feb8b22c2b3c6c33622b5dd00c45877c", + "key": "8fcb0389f196095230a488b794baedc8", "notes": [], "params": { "correctionVolume": 12.0, @@ -79531,7 +79891,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd5ef169cebe09afe4da839ab08f2e0f", + "key": "dec1fc5363ba7cdbfde39a0008d25a0e", "notes": [], "params": { "seconds": 0.7 @@ -79545,7 +79905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ddf63eff4784bc85aaa1184aac84e1b", + "key": "02e82cf7f6e33143c00f7389b9dcf1fd", "notes": [], "params": { "forceDirect": true, @@ -79578,7 +79938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2392083c5ae26752d618bbdc4a21b469", + "key": "86f9c8dc40b5e358263c2ba42ee65061", "notes": [], "params": { "forceDirect": false, @@ -79610,7 +79970,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f7a465d82326225cf62992eed2618fb", + "key": "95f48937d9d037cc38677b67a0e499b9", "notes": [], "params": { "forceDirect": true, @@ -79643,7 +80003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78e67e7aa8357885c7303cc63e1b8e53", + "key": "e3d86851834a4fcb5aa7a6619e301058", "notes": [], "params": { "correctionVolume": 0.0, @@ -79663,7 +80023,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3ece4772098095f7668fc512c6a035f", + "key": "f5e384fac31c41bf6772536954917633", "notes": [], "params": { "seconds": 0.5 @@ -79677,7 +80037,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44bf1428c0f0f3718278b55af75ceb5c", + "key": "4ea3a08c2e08d5cb50da5ec595771260", "notes": [], "params": { "forceDirect": true, @@ -79710,7 +80070,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65d01612af7642c9b9df4a417322c663", + "key": "c4e01075cb24727b55673090bae0b514", "notes": [], "params": { "pipetteId": "UUID" @@ -79724,7 +80084,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e278334b330a9b1e1fb71010da0bade4", + "key": "7e88a736cda18a7ae54cac7e42d41906", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -79753,7 +80113,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34ee5c8e353b0c6ff8f26e1b57479c70", + "key": "cba22f76b9d76e9acdcd1da915388603", "notes": [], "params": { "homeAfter": false, @@ -79768,7 +80128,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2de5b0372f8d0be52d9dc23f5b5b9d70", + "key": "36c346df51d322349bdbf38be5c00782", "notes": [], "params": { "liquidClassRecord": { @@ -80103,7 +80463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e266c6462181f686f05ba6903d97f80", + "key": "90ed826548a31465edb4b70d89646f6a", "notes": [], "params": { "labwareIds": [ @@ -80125,7 +80485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "476f6e38a9c73786cc0461d582237bde", + "key": "0b8271d281108fa65c78be312ef07d0d", "notes": [], "params": { "labwareId": "UUID", @@ -80158,7 +80518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dcde75526aaa38e30ecd361a74109eb", + "key": "8e02fd59f0e67b54030bb0c033e9e1a3", "notes": [], "params": { "forceDirect": false, @@ -80190,7 +80550,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c1f9e528e08e9863001704f7cfba866", + "key": "cd6a292db9f8b758b1ce634b1d52e625", "notes": [], "params": { "pipetteId": "UUID", @@ -80206,7 +80566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24159c1c34370acb72f305dbba246aac", + "key": "2cd16eff714ebac50790665183e3ce6f", "notes": [], "params": { "pipetteId": "UUID" @@ -80220,7 +80580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "82c807927cfa46c33bf7f31cb588277e", + "key": "53045933297a3754e9993f2134ec3381", "notes": [], "params": { "forceDirect": false, @@ -80252,7 +80612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e82bedfc9f299db89f6baa49da78bbe2", + "key": "539a653046c4994710f88b3280078055", "notes": [], "params": { "forceDirect": true, @@ -80285,7 +80645,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8f5cba663eb55432da259500246abfb", + "key": "77e9f151baa7c82d341792857e1b5306", "notes": [], "params": { "correctionVolume": 0.0, @@ -80304,7 +80664,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f5bab9ac9fc8b4ea232f0dcffe0b738", + "key": "47e5b208a5fe438f76dc3a3db548ff23", "notes": [], "params": { "seconds": 0.75 @@ -80318,7 +80678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb8d9e2995da5ef56c5a9fe33a3c3fa7", + "key": "070b5f053654072c7e78fc7f4eb63674", "notes": [], "params": { "forceDirect": true, @@ -80351,7 +80711,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "82192807d415823dc74498b9220fa5e5", + "key": "90335c625ec296c840f7808b5e2f9d6d", "notes": [], "params": { "correctionVolume": 0.0, @@ -80370,7 +80730,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10b62b2f19ce780af4208aab8d7ea4ed", + "key": "4bac2583e4430aa3c4d44071cb555c5e", "notes": [], "params": { "seconds": 0.75 @@ -80384,7 +80744,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f13a7bf154e32672197acf759b8412fe", + "key": "119c7b0860d61dc7654dded93a25f239", "notes": [], "params": { "forceDirect": false, @@ -80416,7 +80776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "837e2fce9c94296eefae376d99ab9053", + "key": "92deccc487bd9b41a1ccbc36d3c4e4c7", "notes": [], "params": { "correctionVolume": 0.0, @@ -80436,7 +80796,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01c3798660d97c05a633e414d0a87fb7", + "key": "739f82ecab3a19a346cdbd6b73c9b083", "notes": [], "params": { "forceDirect": true, @@ -80469,7 +80829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25d60e4189491f9be0af9c1f2632e6be", + "key": "ac872cc58f322bac53d27b8a2583bb9b", "notes": [], "params": { "correctionVolume": 0.0, @@ -80489,7 +80849,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94f7ce00b2a0edc861aa62aecc31e531", + "key": "5f5e3868e3e377afbc8be604082e93aa", "notes": [], "params": { "forceDirect": true, @@ -80522,7 +80882,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "855b9739de5e6e8cba3b0b63e72b25a8", + "key": "596cc9ab25a7de949bd9a6ddfd337a38", "notes": [], "params": { "pipetteId": "UUID" @@ -80536,7 +80896,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a71a66d4583bf37e924d595e5397d838", + "key": "ade81b8ba889fcec9df7fe465bd6b690", "notes": [], "params": { "correctionVolume": 0.0, @@ -80555,7 +80915,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2e922fd32b5df091cf53b4473c064d4", + "key": "f615627034d4856bae4950b89215729b", "notes": [], "params": { "seconds": 0.75 @@ -80569,7 +80929,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd6a3ee354e2ceb1b8681cfd7f558035", + "key": "8ff5582e529c41f42079a94a061ad21c", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -80598,7 +80958,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f76993cbfc4e1a225782f4d16656e2f8", + "key": "d93996a902b9aa210b36ff3e1534e9c4", "notes": [], "params": { "homeAfter": false, @@ -80613,7 +80973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e2984f41fb638962f837c30dce136c0", + "key": "0d7923a473e4871119c2b258b79bb706", "notes": [], "params": { "liquidClassRecord": { @@ -81008,7 +81368,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15e4400e0adac75e8ac74c0f6fc2b7fd", + "key": "91ba71142620030e0f80ce57aac3ea88", "notes": [], "params": { "labwareIds": [ @@ -81030,7 +81390,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "25bd5201aa1e74f2f5ea08e354129245", + "key": "648a7ddc6a3382c54204e7cf8dc741c8", "notes": [], "params": { "labwareId": "UUID", @@ -81063,7 +81423,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3212b9223d62533c371f039876560d61", + "key": "feb127d0b12a6286f9b884c1b93707ae", "notes": [], "params": { "forceDirect": false, @@ -81095,7 +81455,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a884f6526e2d5bcebdf239e05255ac5f", + "key": "ab2dcedcb95958ae6e2dad20e844ea58", "notes": [], "params": { "pipetteId": "UUID", @@ -81111,7 +81471,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a310c7b85de65edec116fec2acb44830", + "key": "9e0f1bd91448e4ff9d8aab4d197147b4", "notes": [], "params": { "pipetteId": "UUID" @@ -81125,7 +81485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c62b4183b65c2b920a76ad556a4580e", + "key": "4a764350bc0f1eafc66eaab7c60d4a5f", "notes": [], "params": { "forceDirect": false, @@ -81157,7 +81517,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63b5fbfeead0f460a3f60a8b8a753ccb", + "key": "d7fe01ea3f63b4a7730a4ed4d5153d58", "notes": [], "params": { "forceDirect": true, @@ -81190,7 +81550,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8a02dbbdb8665a8140709e634d7c026f", + "key": "8de1befe34ef74d12eea5b1958bfc4ce", "notes": [], "params": { "correctionVolume": -6.666666666666667, @@ -81209,7 +81569,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfddca6ddcc0c9cd05b808e73dd56829", + "key": "4804089a028da62fbaaa600b10953296", "notes": [], "params": { "seconds": 0.2 @@ -81223,7 +81583,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78d3b2c6fef751a04c7e18620d159be7", + "key": "e86e3e437e4d074bb582bb46f262204b", "notes": [], "params": { "forceDirect": true, @@ -81256,7 +81616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abaab3c69761bf8cc1bd57cad8c16f3d", + "key": "b58d34e36d34ca5d07905a45abcd39f4", "notes": [], "params": { "seconds": 0.5 @@ -81270,7 +81630,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28bb32de2e53c582fa28c11bbe8512eb", + "key": "1f5f21ef212e88716d03efa8e42c3e0b", "notes": [], "params": { "correctionVolume": -7.113333333333333, @@ -81289,7 +81649,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1be88c1a48f14c0ba77a137babc0d0aa", + "key": "3628eca5a1742b71da6f772f6dd73b7f", "notes": [], "params": { "seconds": 0.2 @@ -81303,7 +81663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "208761fd88a10185963b8aac7425398d", + "key": "ac066a75964bcb81af5338db94f0de88", "notes": [], "params": { "forceDirect": false, @@ -81335,7 +81695,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b031812cdc8377611c7a371cca4d4f78", + "key": "3458fdea982458ec0e654772a0140ca6", "notes": [], "params": { "correctionVolume": -6.666666666666667, @@ -81355,7 +81715,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d3a0d052f91042ec3a02a99ed689d319", + "key": "82a8c0a2386681b1a5c814b851618b0d", "notes": [], "params": { "seconds": 1.0 @@ -81369,7 +81729,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3772240f47ae009f7d17561dc4ca915", + "key": "4349681ff5a47e5d79c948cc4ac49484", "notes": [], "params": { "forceDirect": true, @@ -81402,7 +81762,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab1638e8791b3a6a8d9f122769298edf", + "key": "cb2595a45949eb4f672bd479a6262119", "notes": [], "params": { "correctionVolume": 0.0, @@ -81422,7 +81782,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "059e21a15ee784e316015e3999586bb0", + "key": "0441a5d22c8b776ab29ab96de65b33ca", "notes": [], "params": { "seconds": 1.0 @@ -81436,7 +81796,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95a1307f6d4b9db3bd6856a7a7c9f835", + "key": "abfe7fbd2aff0095ac41f427006f498a", "notes": [], "params": { "forceDirect": true, @@ -81469,7 +81829,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd71c2bb52efd627b55d18d34d2c523d", + "key": "c81cdf9323af45b8ee0ec72cabe89ae2", "notes": [], "params": { "seconds": 0.5 @@ -81483,7 +81843,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8aa2bbe20d53627cbb63ee40265b9c19", + "key": "4a812b344f87c99b36af0c00972e145a", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -81502,7 +81862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e654f5253bc29053b6685c710e3b28d", + "key": "24f7b2aea7adf384dcddef7497bdec9b", "notes": [], "params": { "seconds": 0.2 @@ -81516,7 +81876,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b853cc7baea16cc63f96064478fac20", + "key": "10aa5b9ad07eb359b171631615073a40", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -81545,7 +81905,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "125669c76437d33bd3929c9576d37631", + "key": "e8bfb948c8116dc86db8f00029065647", "notes": [], "params": { "homeAfter": false, @@ -81560,7 +81920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1b59506588e05d0b2d86ae3956f7d36", + "key": "8f76386a33119fbb8c844e4d458552ad", "notes": [], "params": { "liquidClassRecord": { @@ -81923,7 +82283,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6956465e0d9e6faf9583894175c25325", + "key": "f70948a13eb58834b9d1a14c1a6f680e", "notes": [], "params": { "labwareIds": [ @@ -81945,7 +82305,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "395ad489f035d25b6ed1c9bb2cf56a3f", + "key": "55cc0ae2fd18318bb86525d0574f54c3", "notes": [], "params": { "labwareId": "UUID", @@ -81978,7 +82338,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "572ba98665e38128bbf5507e91ff2ec4", + "key": "70a7dda207f4731a3b070a642af4697e", "notes": [], "params": { "forceDirect": false, @@ -82010,7 +82370,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21211e91c288a16e59dbd3ec5c87c0cc", + "key": "ae63602859972700f6d09bcf41bef72a", "notes": [], "params": { "pipetteId": "UUID", @@ -82026,7 +82386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4827db769e0e73ff0fe76ddafdfc44e2", + "key": "ade6884649144bf07abc975d7992fa16", "notes": [], "params": { "pipetteId": "UUID" @@ -82040,7 +82400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb3dbad1a3eb3025ac0b60e8e8d68549", + "key": "04f01fa5b2d427a4a85dab23c0df8099", "notes": [], "params": { "forceDirect": false, @@ -82072,7 +82432,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8fd9e9671e22244fc8c29c138f9512fd", + "key": "ec8e204e1b5ac68df361c538c1d9e859", "notes": [], "params": { "forceDirect": true, @@ -82105,7 +82465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "91b2bbcc88e5c7c224b3d758b4778119", + "key": "52ed9efbccddbabd0a7143294e36a069", "notes": [], "params": { "correctionVolume": -0.6333333333333333, @@ -82124,7 +82484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c65cd11c3c702717afb5f040b187f2fb", + "key": "8748a6786c7f5b46cdc5fd0e0efa3154", "notes": [], "params": { "seconds": 1.0 @@ -82138,7 +82498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61c9d3ab976cdad52f3ec230f8e36569", + "key": "c9c87aa7e1aef1355d9648356afc3420", "notes": [], "params": { "forceDirect": true, @@ -82171,7 +82531,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d48062b071ca056c5555ff577b63e0d9", + "key": "063a021a323c099def543854a9c0d2bb", "notes": [], "params": { "forceDirect": false, @@ -82203,7 +82563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a89216fa1b3ea5c97a27e11ae1224baa", + "key": "f72b583f71a52647733ecf46131249f5", "notes": [], "params": { "forceDirect": true, @@ -82236,7 +82596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "129670a1a40a3ac18d8e5d23797c9a07", + "key": "0110abf6bb0e81195144aa79bf95d31f", "notes": [], "params": { "correctionVolume": 0.0, @@ -82256,7 +82616,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec88dea5526f5332e614eb174ca0780f", + "key": "ab7063854df67d6a083d9c0b7e34fce8", "notes": [], "params": { "seconds": 0.5 @@ -82270,7 +82630,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "901ee5ce205dd15b5da7ecc0bf031376", + "key": "8482fc0d3d75bd234ec94992bab5312f", "notes": [], "params": { "forceDirect": true, @@ -82303,7 +82663,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac1b4ea99146dfa6d7fe248a557941c5", + "key": "dd3903badb50d363b619be216cda570c", "notes": [], "params": { "pipetteId": "UUID" @@ -82317,7 +82677,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad2048c7df7c9551955e6c83cfad20d6", + "key": "1b0e8de0e86ca25010f978d103dfea6e", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -82346,7 +82706,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "096e268df8ee1402add77645e4cc80c2", + "key": "87ccddaa5d64c6f27fdbddf796f4b684", "notes": [], "params": { "homeAfter": false, @@ -82361,7 +82721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d9d2711b010f86b2b97d58e6c247559", + "key": "6c4589b1670e59cd5cff1a3661d583ee", "notes": [], "params": { "liquidClassRecord": { @@ -82696,7 +83056,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1026ae0995a45ad3e1fb54b9239419c0", + "key": "6cbf27540ac131141d2657c9f269e332", "notes": [], "params": { "labwareIds": [ @@ -82718,7 +83078,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea9fabaa61d5e634377bbccab7d861fe", + "key": "fea2476e5b43bbebedabfc0c4875732f", "notes": [], "params": { "labwareId": "UUID", @@ -82751,7 +83111,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9113acf79ac28d17568acaba1c1bd14a", + "key": "e055fa609bfd855bec68c9c75e4d4545", "notes": [], "params": { "forceDirect": false, @@ -82783,7 +83143,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a9324b620958daf1cde7e378aedcd87f", + "key": "7c237dfa965c21f95cbaa3bc98d5a441", "notes": [], "params": { "pipetteId": "UUID", @@ -82799,7 +83159,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77859a0b0d95e41d22cca33ff9b893d5", + "key": "a13f81a257564fb7cae2f130e418e41c", "notes": [], "params": { "pipetteId": "UUID" @@ -82813,7 +83173,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7bb356149d7266211b6f815a73c441a9", + "key": "9e603ed51282a32133bab17ca79daf26", "notes": [], "params": { "forceDirect": false, @@ -82845,7 +83205,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d1fe0a631d9db3551a42f3baa3659b7", + "key": "4658510c7804c962f1d92169157dac0c", "notes": [], "params": { "forceDirect": true, @@ -82878,7 +83238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5499af969c4693ca04095fe990051a9d", + "key": "aebedf5726f2c6d5682cec1bd59ec84a", "notes": [], "params": { "correctionVolume": 0.0, @@ -82897,7 +83257,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f45542368dfb52975f98d9a59142f40", + "key": "a7e896fd0f2a223e1872f86c3862589d", "notes": [], "params": { "seconds": 0.75 @@ -82911,7 +83271,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae6a0e436cc801a4598694ad1d98bf7c", + "key": "c5598c20bc40a53b3eb245d041e1eb59", "notes": [], "params": { "forceDirect": true, @@ -82944,7 +83304,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11dd429af5a15d0c9feb0d194ac2611c", + "key": "4922e9df1f189b2ca3a901e0d8892c61", "notes": [], "params": { "correctionVolume": 0.0, @@ -82963,7 +83323,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "984982019bc4419ed111d6f63d292f01", + "key": "dff713300fbb027003b3449a9cc37cef", "notes": [], "params": { "seconds": 0.75 @@ -82977,7 +83337,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b9e93cd99b4fca4120165e0715332720", + "key": "d2576b67c88d165b60d66a7b70a5d2cc", "notes": [], "params": { "forceDirect": false, @@ -83009,7 +83369,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "043981c7f94e4eda37a24a3f74fd5a57", + "key": "080995915315cb56b37505272fba63a4", "notes": [], "params": { "correctionVolume": 0.0, @@ -83029,7 +83389,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e38b4a68cdd7089ceaf8f3aaa9252391", + "key": "2cb1317f54e7a7a41e12dd199f70557d", "notes": [], "params": { "forceDirect": true, @@ -83062,7 +83422,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0cbfc85ba5f613dbec1d71054f97c816", + "key": "7b151a9adbf97f367f3898abd0c8a31c", "notes": [], "params": { "correctionVolume": 0.0, @@ -83082,7 +83442,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62f78a4d57fa6fd01277b4f54cc0e9ac", + "key": "272d9e9c67647fc4b63517ceb38953a6", "notes": [], "params": { "forceDirect": true, @@ -83115,7 +83475,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce186ef3308dbd08def4e96bfcf8a222", + "key": "2a0a0acee65477fc167dab0a1203725c", "notes": [], "params": { "pipetteId": "UUID" @@ -83129,7 +83489,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2265672801fe4492f3d2fc749c84ce63", + "key": "21d40e6b5f2296f8a273411ae6c2ea1c", "notes": [], "params": { "correctionVolume": 0.0, @@ -83148,7 +83508,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d43e1bfb8dd3b3769ae92cc610238a9", + "key": "925f2e9c95570235802c6321a7312fb6", "notes": [], "params": { "seconds": 0.75 @@ -83162,7 +83522,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a14fd1f89a6690bb0bd5b4c211bca35", + "key": "9bd0776c62a1d02fa448b9c2c263f346", "notes": [], "params": { "forceDirect": false, @@ -83194,7 +83554,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfb015e4ed8f2410a6c242e65d7ab4fd", + "key": "6f20309ecee3a6265b31180f45db0005", "notes": [], "params": { "correctionVolume": 0.0, @@ -83214,7 +83574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c15a96e49917739930722c015c584084", + "key": "f0a62caa95c602b42eac15e1a3fd8b72", "notes": [], "params": { "pipetteId": "UUID", @@ -83230,7 +83590,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "40c1737bc573a540a26bc6cc04ee6091", + "key": "5a7e3a716360b7f30b88fc164ae93373", "notes": [], "params": { "pipetteId": "UUID" @@ -83244,7 +83604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2df8191dc86adb0ed2df5b291c731d11", + "key": "c6e1624548aa568fb91376a4120e3060", "notes": [], "params": { "forceDirect": false, @@ -83276,7 +83636,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "78e127df9faf4646f4335bad5bebcf1e", + "key": "909313004dcd29b18e76ae2251ac1eca", "notes": [], "params": { "forceDirect": true, @@ -83309,7 +83669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9699f8cca4c710d1c83e231384e6100f", + "key": "c567c6822141e01b47b705691c78590c", "notes": [], "params": { "correctionVolume": 0.0, @@ -83328,7 +83688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "feb9172485610b6056d0dc233d359b57", + "key": "572533b61ad16b21de36a196fb35d419", "notes": [], "params": { "seconds": 0.75 @@ -83342,7 +83702,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aedb60965e6d33e4a23d5637f4ba44ab", + "key": "b438704f70b5be463393a0076b32fc45", "notes": [], "params": { "forceDirect": true, @@ -83375,7 +83735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b49e342a3a565b022403102389dea812", + "key": "d3a5fa84ff3d68275d7b985cad90c332", "notes": [], "params": { "correctionVolume": 0.0, @@ -83394,7 +83754,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1a24110fc8fe982dde607b857a647fc", + "key": "f65d7f41d6f3bab06280ec9a90a379c2", "notes": [], "params": { "seconds": 0.75 @@ -83408,7 +83768,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4eff346ea10108c4ab71e66ac9c22597", + "key": "2b752170a9a2bdee455f3b8bf6296f94", "notes": [], "params": { "forceDirect": false, @@ -83440,7 +83800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d6892b41e63f47e55a4dbf3e89408eb3", + "key": "a68cc23a1c3ccbdf20d8f791bdb169a6", "notes": [], "params": { "correctionVolume": 0.0, @@ -83460,7 +83820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d90978d93fc782981aa5f218a06da8bc", + "key": "7d09b854acf90cf11cd17a9d6d028240", "notes": [], "params": { "forceDirect": true, @@ -83493,7 +83853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2005e08befc1ce8ad33cf9109ae12b3d", + "key": "13b9a9e6636f9f4a79095ddecf3185af", "notes": [], "params": { "correctionVolume": 0.0, @@ -83513,7 +83873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ebb9ef9419be2b29427e0feba167a9c3", + "key": "7ec65aee0900e22bef35763660f19330", "notes": [], "params": { "forceDirect": true, @@ -83546,7 +83906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "58cde2baf4a8d489f1bbdb74d41063a3", + "key": "69584039c2daa480ea84e27a85cf515f", "notes": [], "params": { "pipetteId": "UUID" @@ -83560,7 +83920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f0aebdb58ba96bd53dfd24832a4ea569", + "key": "142a71e56a25a9b65c9b9740562c8d6e", "notes": [], "params": { "correctionVolume": 0.0, @@ -83579,7 +83939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a26439ed63ee7fa6bb91bad8cd9d569e", + "key": "dab0413e6b24a04a21e2447f7fb84e27", "notes": [], "params": { "seconds": 0.75 @@ -83593,7 +83953,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9c7011ff7e6aea3113c2c24cfb99540", + "key": "9c44dff768ef4718aaa876349a9db553", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -83622,7 +83982,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5499ba47dad42631789b9d0d554e2933", + "key": "a3ccd5aaaecdc497be195ef727b856f5", "notes": [], "params": { "homeAfter": false, @@ -83637,7 +83997,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37e58608a4e7e86510292e0c7784301d", + "key": "0dbff57e2d36e25aca404790a56244b3", "notes": [], "params": { "liquidClassRecord": { @@ -84032,7 +84392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a653825876dc5fdbedd4c7bbec8b24e8", + "key": "c2959c9ba051fd14976ac14c45e57038", "notes": [], "params": { "labwareIds": [ @@ -84054,7 +84414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e587c11cedde2bbcc30775636630746", + "key": "035b6173da89fdd6bacefe193b983977", "notes": [], "params": { "labwareId": "UUID", @@ -84087,7 +84447,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96b32c6fb82c2fe64e23ad4a22536049", + "key": "a43152a160ce30f2b35ab1f29c2de497", "notes": [], "params": { "forceDirect": false, @@ -84119,7 +84479,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5cbf5dd91f28378452483ef10ec15cf", + "key": "e1a0a588b8212f972dcb389974474113", "notes": [], "params": { "pipetteId": "UUID", @@ -84135,7 +84495,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac2562e09909097c8ea50678f522240d", + "key": "cbf57987eaf198437e8b85287d28d92c", "notes": [], "params": { "pipetteId": "UUID" @@ -84149,7 +84509,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3206e8610c044ae0d0eb7dd348de3a65", + "key": "a36e2771b3e0cd6e2801736d40bf83b3", "notes": [], "params": { "forceDirect": false, @@ -84181,7 +84541,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc5958957fe9418a16de866ae0cfcb1c", + "key": "567821fba8152e070c41c9cd231c1ff9", "notes": [], "params": { "forceDirect": true, @@ -84214,7 +84574,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e6db82a7e33fd22cffaa5171e2f9035", + "key": "1c5b35c15a93038394bae1c4e02eff0a", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -84233,7 +84593,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a6ffb9995ed53646e4ae235894a14294", + "key": "6f3f935e661bf86194f19f4af000dbd3", "notes": [], "params": { "seconds": 0.2 @@ -84247,7 +84607,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d13cccfc2ba917aeac690a07b21d7b5", + "key": "d75e93de9a7996d32c14bbefc4abb3c4", "notes": [], "params": { "forceDirect": true, @@ -84280,7 +84640,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e17296fcb30414a7e78cb2cae36caf4e", + "key": "e0c29d6dc9cf4e44bb1ba7ebaea9bc64", "notes": [], "params": { "seconds": 0.5 @@ -84294,7 +84654,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dff913d095870d2b0e6018599a3006cc", + "key": "0e5e2582d1564a2f8afcd6a36e925eb6", "notes": [], "params": { "correctionVolume": -8.453333333333333, @@ -84313,7 +84673,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6798465367cfc1255d947d0ace32a89a", + "key": "8bb4a58ffd1d7914f554af3bc14bf8ba", "notes": [], "params": { "seconds": 0.2 @@ -84327,7 +84687,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cffb9900f750edbd377382892da8e248", + "key": "f0a597d819a3e9e27a02833e26b35af3", "notes": [], "params": { "forceDirect": false, @@ -84359,7 +84719,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b1b6a99e004fbb70ef96eb3e640450c", + "key": "7cf8403298821ab40dbc24f778b6cf47", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -84379,7 +84739,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d976809f5ef6f4753e40516def79fd8", + "key": "57a36920ec775e5bf6f3297a45f427df", "notes": [], "params": { "seconds": 1.0 @@ -84393,7 +84753,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b015575da763d4feadc13a5a3c4e9858", + "key": "6ae842de9a7874b027a59cc9433d57d6", "notes": [], "params": { "forceDirect": true, @@ -84426,7 +84786,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e899b17a83f55fd4a8c869b979f0527", + "key": "a351f880b1021c413966308b0b1ca9d9", "notes": [], "params": { "correctionVolume": 0.0, @@ -84446,7 +84806,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b6d76eb4b412843466f0df3aa4ecbc5", + "key": "5c2633de760ac647c4f0ce7298bc6f70", "notes": [], "params": { "seconds": 1.0 @@ -84460,7 +84820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9fa2ff89e16630101bd75d9e6dbdc149", + "key": "d371986716ed9bab46c8e4e16d340a79", "notes": [], "params": { "forceDirect": true, @@ -84493,7 +84853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "416a0a94252c148bb92b87c96f1bff91", + "key": "89624b6d56b7940c53f06ddad81f63fc", "notes": [], "params": { "seconds": 0.5 @@ -84507,7 +84867,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce2c376f2cef8ecfbaae08add0b5f592", + "key": "fd8a28ad577de3a2f4dbe91bf103a73b", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -84526,7 +84886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49e9795ff25ad8cddfaa157066672022", + "key": "a386be147b1f009c43327967cfeb8adf", "notes": [], "params": { "seconds": 0.2 @@ -84540,7 +84900,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a8fef8f37af2186a34ee4eb5d94c9aa", + "key": "ceae79197ea558dc1ae479eb646153e8", "notes": [], "params": { "forceDirect": false, @@ -84572,7 +84932,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7632955113725834611a03d9984f948f", + "key": "08ec3a5714889a250910638f84cd7fd1", "notes": [], "params": { "correctionVolume": 0.0, @@ -84592,7 +84952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8134a2c8e3dd9a4b4873909244f70747", + "key": "80f8117f9257da2df3fb725819b99402", "notes": [], "params": { "seconds": 1.0 @@ -84606,7 +84966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2acf4c02a56d91256b899ef9ded6fb4c", + "key": "37351ab1346aefa6bb80696aec93cec2", "notes": [], "params": { "pipetteId": "UUID", @@ -84622,7 +84982,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d36d940a8a5902fcdfc47bb4ee422807", + "key": "e64d30578c040dac6cfb99ea311813be", "notes": [], "params": { "pipetteId": "UUID" @@ -84636,7 +84996,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f1849faee43f1e4e5b3cf5d0290df2a", + "key": "e662c972d47969f2169cd84415207f2c", "notes": [], "params": { "forceDirect": false, @@ -84668,7 +85028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "932cd92e2b2c602f725d438f9caf2e7f", + "key": "b6dbe76a4152263471ee1ae67a8ff0e3", "notes": [], "params": { "forceDirect": true, @@ -84701,7 +85061,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da6e36b050490488d9c2eb697d41e3f8", + "key": "5da554ecbd587dbd91d169c977b425e2", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -84720,7 +85080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d09f35bafb287493da9a4acadad0919", + "key": "12ccf564a40494aeb8a90c83a22c353c", "notes": [], "params": { "seconds": 0.2 @@ -84734,7 +85094,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e29e5eb47366bd62113203f145b7d51", + "key": "60e9ab6868c2147f14353bbe43d89e45", "notes": [], "params": { "forceDirect": true, @@ -84767,7 +85127,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16f4f92bea98f02c6ebd84c62ffe9aeb", + "key": "4f761679d60621157101c482de191fa9", "notes": [], "params": { "seconds": 0.5 @@ -84781,7 +85141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d9124dd8c1200e277f3d1a7346e8a70", + "key": "045fc25e30e15b59e8ab9731c11eb2ea", "notes": [], "params": { "correctionVolume": -8.453333333333333, @@ -84800,7 +85160,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a85db83e4baa6c2e6ecca9ef5ebf53f", + "key": "e69fdded9e7180c18583ac3215eb5a70", "notes": [], "params": { "seconds": 0.2 @@ -84814,7 +85174,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aea1943f71c326fc03aaf2111f03ca6d", + "key": "8fe74e02b878e185928e49831b6f6c18", "notes": [], "params": { "forceDirect": false, @@ -84846,7 +85206,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9613f4ade7645cfb62f73c74e2b96ae0", + "key": "4bc254d1fb70201ec44ec4895e83b39e", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -84866,7 +85226,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0ece9b685a56e27686f9eb688f63bd8c", + "key": "d8b4afc9f3e5b4376c01bb20c7b7d376", "notes": [], "params": { "seconds": 1.0 @@ -84880,7 +85240,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "673f40f8e71d14bfd0bb4bf246602a61", + "key": "e2b78302767e9ee44cfd5130233cf1de", "notes": [], "params": { "forceDirect": true, @@ -84913,7 +85273,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "267728aeba2c2c03bbf6c246de9ca6b1", + "key": "5dec727b0943a06fc3b1d9516b598591", "notes": [], "params": { "correctionVolume": 0.0, @@ -84933,7 +85293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8dcd2b7b231c794b3f965fe5f1622d50", + "key": "52576b252bc96e6087ab2f23be456a8e", "notes": [], "params": { "seconds": 1.0 @@ -84947,7 +85307,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6003bf5111e8da890fa1e8ac6b5c4e0b", + "key": "de81b5c174fce13fc4a66ff2212cc92c", "notes": [], "params": { "forceDirect": true, @@ -84980,7 +85340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd4c3f813f886ae7b27a8967ee4b6be7", + "key": "ddc9583fa110db22ee8bd4d6e577505f", "notes": [], "params": { "seconds": 0.5 @@ -84994,7 +85354,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d90923823c3c81096c6848917ec7070a", + "key": "4a9334634a6971bea8bccdd863310118", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -85013,7 +85373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9700e24c0292fd29bb0a8d6c8928cdd9", + "key": "1ddccf5079cdd5a8af759645f8ef5e0b", "notes": [], "params": { "seconds": 0.2 @@ -85027,7 +85387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "053b1e60de9ab9325e145654cac30157", + "key": "562039f9a54afce1ad6760d65e4eb03f", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -85056,7 +85416,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b82f43c4c3c5904610bcaf69002d05bd", + "key": "48e8ae69c3083db88b429ff17f5572de", "notes": [], "params": { "homeAfter": false, @@ -85071,7 +85431,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8559236ead8a4ee4b215d220ddcec5d8", + "key": "d5778d8fbb6c55aa90ede72a6014d9d8", "notes": [], "params": { "liquidClassRecord": { @@ -85434,7 +85794,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7d9ed32cf8bec9a76b5123e2fa1de952", + "key": "5a4e02ee3292bfa85ec5b0713ea243a2", "notes": [], "params": { "labwareIds": [ @@ -85456,7 +85816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a779a5bc92f38bfb08e7898b6e26d725", + "key": "114140b100092b42a047e1e250e0b046", "notes": [], "params": { "labwareId": "UUID", @@ -85489,7 +85849,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d1bb4a1af1efcfb8f4bd18efea2d966", + "key": "b0ff33cafdbb2c44576011de98138227", "notes": [], "params": { "forceDirect": false, @@ -85521,7 +85881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21037d4f81c2bc45af995a7bbdd02ce9", + "key": "5402d53aa9db3b1b57a9d3645cf85d64", "notes": [], "params": { "pipetteId": "UUID", @@ -85537,7 +85897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe96d293f30cd122823d56da93a1b8b8", + "key": "7b72e89086ec8449643e8ff65c25b8d7", "notes": [], "params": { "pipetteId": "UUID" @@ -85551,7 +85911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8d7261809321158d78d920d5391eecd2", + "key": "84218ae6fb2328d54affee579d911866", "notes": [], "params": { "forceDirect": false, @@ -85583,7 +85943,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba8805c41e705807385aad51c5f66e42", + "key": "8a3998114f02cb96218b21a8a8528a3e", "notes": [], "params": { "forceDirect": true, @@ -85616,7 +85976,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5c854f27b718c41df8ef3de129fea57", + "key": "560e75425d3408fc90d0a10df2accbc4", "notes": [], "params": { "correctionVolume": -0.7333333333333334, @@ -85635,7 +85995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0db5a01315c6f2e0654e0a538c5481d3", + "key": "232784b6813e605622707e58bc15e573", "notes": [], "params": { "seconds": 1.0 @@ -85649,7 +86009,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3c8e1e37e26251ffbb5fce56fabcc21", + "key": "56b5c1b8f47585fdbdc939ae76f50aab", "notes": [], "params": { "forceDirect": true, @@ -85682,7 +86042,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7b5e5f444ae108a8cc6b853eb51e463", + "key": "ffe57c2ecc6fc3366be21e9629eca361", "notes": [], "params": { "forceDirect": false, @@ -85714,7 +86074,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d3604e4c1c09427d8271ea40049a474", + "key": "16aa9f9a4e266ea0ea9381d82ce7aef5", "notes": [], "params": { "forceDirect": true, @@ -85747,7 +86107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f46329762c9420891390dfdff548f8d1", + "key": "0c6dfd48acce14acd6154bdcbe7d683f", "notes": [], "params": { "correctionVolume": 0.0, @@ -85767,7 +86127,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3a5f4789530879f4812f2ebe3d7d1d7", + "key": "f339bb30fded59ae2f5056dc76e6d398", "notes": [], "params": { "seconds": 0.5 @@ -85781,7 +86141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3638e204241a9b88885b7431249626ff", + "key": "b724d2e7fe4e1dc6c523dcb84c917676", "notes": [], "params": { "forceDirect": true, @@ -85814,7 +86174,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d5fdfabf61326eafda4c617cbb30ab2", + "key": "df4c277bd6f2431d018e91efce2e1de5", "notes": [], "params": { "pipetteId": "UUID" @@ -85828,7 +86188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2b0ee6cf9e1640ebb46c8b9ec33f9cc", + "key": "0e2d020982a028b972ad9fb8c26163ef", "notes": [], "params": { "forceDirect": false, @@ -85860,7 +86220,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a93689859f2b27c7e057f2159645c2c", + "key": "ec3135585942e6adb3cf13cb48fae689", "notes": [], "params": { "pipetteId": "UUID", @@ -85876,7 +86236,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f51489545232acf40d37a6fa33bc7f0e", + "key": "d05c277343cdbcfba65153c849d8d435", "notes": [], "params": { "pipetteId": "UUID" @@ -85890,7 +86250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e4dce7f9aa9e8c4c11d8e8a6b56f7f1", + "key": "f7420d223f71818c39073ab8c5fa8766", "notes": [], "params": { "forceDirect": false, @@ -85922,7 +86282,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c17db236e2dca4b07fd90698c5221a8b", + "key": "e8e5b6c9d879fe58c239065f9d2264f0", "notes": [], "params": { "forceDirect": true, @@ -85955,7 +86315,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6439230e5ebd924e4a6e6b924b2347fa", + "key": "11ba204835cef69d33bdcc7fa1f5f061", "notes": [], "params": { "correctionVolume": -0.7333333333333334, @@ -85974,7 +86334,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ff32e822f7bf2bea316dba05500351d", + "key": "4953618298fb065a6b27f1736b0a5f67", "notes": [], "params": { "seconds": 1.0 @@ -85988,7 +86348,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5dad8262d7f22feb1496ab1def403856", + "key": "333a49fe9f18d916b7d84aeb2600989f", "notes": [], "params": { "forceDirect": true, @@ -86021,7 +86381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36f987da9cc81c427b3413ea4557bf69", + "key": "18d7204265099f9b883b8bcd59c49f7b", "notes": [], "params": { "forceDirect": false, @@ -86053,7 +86413,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d93abe9f2d1e195e95d6f3bc9fd9a97", + "key": "fe7e8289521fc1da379baf436fce3b38", "notes": [], "params": { "forceDirect": true, @@ -86086,7 +86446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7957e316bf70f99eca3848f23e86e127", + "key": "bc0054da05dbc5943fb4f2331f09e547", "notes": [], "params": { "correctionVolume": 0.0, @@ -86106,7 +86466,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "38430d508d7df6dc624fc54411b7c4fc", + "key": "5f0f6931f914f7a8b491567a9b803cad", "notes": [], "params": { "seconds": 0.5 @@ -86120,7 +86480,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9503ca0b910ea20500c40ce8fd3d8baf", + "key": "67980d5ea4ff1b243d979205fd39a33c", "notes": [], "params": { "forceDirect": true, @@ -86153,7 +86513,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbb4fa40050a23ae4c2fdc8f712280fd", + "key": "36897f4b680293613748eb593e3bbdc7", "notes": [], "params": { "pipetteId": "UUID" @@ -86167,7 +86527,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a6066459a70cb4e881090ffed5fc6a03", + "key": "da12fa90eced1d7f37fcda72938b5786", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -86196,7 +86556,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c2c4335f8e6c00dd60687f9f056938c", + "key": "4575bc5157cda9a92e06267461cac538", "notes": [], "params": { "homeAfter": false, @@ -86211,7 +86571,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69d4f333fc4e572ae7b3affb2680a5f6", + "key": "2753c75f389a0934343967ac020113e8", "notes": [], "params": { "liquidClassRecord": { @@ -86546,7 +86906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "810118190bcf7ec924e03ddc13e5b438", + "key": "7fae70aae70b1a373b2e0cab0202b773", "notes": [], "params": { "labwareIds": [ @@ -86568,7 +86928,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f83111a59c0ca142ebc113319a71edd4", + "key": "0ff7f4de024debacb4576764f6295cfd", "notes": [], "params": { "labwareId": "UUID", @@ -86601,7 +86961,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "588f1199137708cc64636210a87f7799", + "key": "63ebb9818d96f2a9fd5a6f78ff6fbe1e", "notes": [], "params": { "forceDirect": false, @@ -86633,7 +86993,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc97e775e68d338035799f8fe1922aad", + "key": "c5a3902398bafda6f0541b6472ff548a", "notes": [], "params": { "pipetteId": "UUID", @@ -86649,7 +87009,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2065533cd6753a8b093b7195679ead41", + "key": "a44baf3c44cfc0501ea90d18a53d3e09", "notes": [], "params": { "pipetteId": "UUID" @@ -86663,7 +87023,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c26ddb0e8daace8ef68c2932112c1f50", + "key": "23dae57459dcfa54c24a3c94785a1f12", "notes": [], "params": { "forceDirect": false, @@ -86695,7 +87055,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe2e66a7ce476b2cf87d41cce8662e32", + "key": "85814d284d98f2ad13020cff323d73a1", "notes": [], "params": { "forceDirect": true, @@ -86728,7 +87088,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48a43cf6f83626ddafafbd9f871086a0", + "key": "680c282deb75c90332af2df952e90e7e", "notes": [], "params": { "correctionVolume": 0.0, @@ -86747,7 +87107,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "beff656b7946f6ee1f3e015b1b1198b1", + "key": "abffc00192bcbbae574b032b5d15380b", "notes": [], "params": { "seconds": 0.75 @@ -86761,7 +87121,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d623d23f798180c7710f7cf376a1c249", + "key": "7aa3533757d1f832faf8a4a69b0d1afc", "notes": [], "params": { "forceDirect": true, @@ -86794,7 +87154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3a378ad93da594e9b4c028250e64db2", + "key": "471c96ad19c9301bb295d7fa9546f4a8", "notes": [], "params": { "correctionVolume": 0.0, @@ -86813,7 +87173,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ae3436dc526c80163ee20e6add7c4bf3", + "key": "c5e350d42fb76d3f9d4905a831a7ea9c", "notes": [], "params": { "seconds": 0.75 @@ -86827,7 +87187,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f713b9b1b043750823b068f1152e4a80", + "key": "4002e62fae23827e6f61e8248b8473bf", "notes": [], "params": { "forceDirect": false, @@ -86859,7 +87219,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc7d198a28dcbe6f34d1161480fad802", + "key": "827035ac7286954f87cb18b0e4f3ccea", "notes": [], "params": { "correctionVolume": 0.0, @@ -86879,7 +87239,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb7157fa33368d2522bf5bd88ba59abc", + "key": "bf869add22822c83c052f26cf3b70cbe", "notes": [], "params": { "forceDirect": true, @@ -86912,7 +87272,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0571155054254a34c68dcff7fa8113b0", + "key": "0a6969affe0e50275ccbe3b73a714c96", "notes": [], "params": { "correctionVolume": 0.0, @@ -86932,7 +87292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff94f66c6f916342e1bf479458b5f904", + "key": "a7276fa1f53f8ce49a74a5abc374b41c", "notes": [], "params": { "forceDirect": true, @@ -86965,7 +87325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "031231915c61d24244ff86fb26dc3a2b", + "key": "afbd5947bd6405f6c35cf99cfb5efb7c", "notes": [], "params": { "pipetteId": "UUID" @@ -86979,7 +87339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4927ffe11416d00df45c4188ac49f6d4", + "key": "51937dc51706e80817ad8caa229f6779", "notes": [], "params": { "correctionVolume": 0.0, @@ -86998,7 +87358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d7a32cca945ac77dbb623879befe8c7", + "key": "7b36029ebd51074e0367551a20104e00", "notes": [], "params": { "seconds": 0.75 @@ -87012,7 +87372,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb3bba92a049a9fe0680dec6d01ea2df", + "key": "0d2b53c167da59f3aa0e144d515f7704", "notes": [], "params": { "forceDirect": false, @@ -87044,7 +87404,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a7e91f3d20f04e0c0f199c3dc34a5b0", + "key": "b0f0e5c20205f1f9478812fc03f00337", "notes": [], "params": { "correctionVolume": 0.0, @@ -87064,7 +87424,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ee7b0e37a20f2999305affe9085985a", + "key": "ebd71ac3f7c59aec41eb0637d1c9f95e", "notes": [], "params": { "pipetteId": "UUID", @@ -87080,7 +87440,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c78b65af2a0956d403b7ec23abd504b9", + "key": "803ee8e889fe87caf16366ef72fb6830", "notes": [], "params": { "pipetteId": "UUID" @@ -87094,7 +87454,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7cf30679899b6b6c29d955ea285b078c", + "key": "4ffc2ec4f6adba1991dc99e087be1e06", "notes": [], "params": { "forceDirect": false, @@ -87126,7 +87486,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79485454dd0dbf19f382547ae20af4d8", + "key": "327448d4dbd13eab23029668fed6f1ba", "notes": [], "params": { "forceDirect": true, @@ -87159,7 +87519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d997bf0b6901ca39cd4b3c715ac4782d", + "key": "d0ceaa0a84ea29457418d5538221a49b", "notes": [], "params": { "correctionVolume": 0.0, @@ -87178,7 +87538,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "baf1ca6ec045a94a98ab94e5704b4389", + "key": "6a187e923122bf8fdc9c2f33d9e82a79", "notes": [], "params": { "seconds": 0.75 @@ -87192,7 +87552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "360e2eb187b489d1ac9241ecc9c60ec6", + "key": "3f1b7cc6a3b9b5352b4e5cda2510ed62", "notes": [], "params": { "forceDirect": true, @@ -87225,7 +87585,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d85f70ceef9e80ab1dacafbb8761585", + "key": "2fefa8a602129c5e7fcfc9363d8f0f37", "notes": [], "params": { "correctionVolume": 0.0, @@ -87244,7 +87604,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd30306692616825a2a8d14f986999e9", + "key": "38f23ab57afef85f2a03e9405573ea6c", "notes": [], "params": { "seconds": 0.75 @@ -87258,7 +87618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9950dbb8baae07fdbcc37b64540dcb2d", + "key": "0fd3a78c26ad801d5462d64f82025ac9", "notes": [], "params": { "forceDirect": false, @@ -87290,7 +87650,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e9939b58720f056ae504b9821bbbe15", + "key": "f7a3fd7119dc7aa821556f466ade0a8c", "notes": [], "params": { "correctionVolume": 0.0, @@ -87310,7 +87670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80e560d54bfa34339905a8483177b5d1", + "key": "77256c169f6074d4ea332a97e61fd75c", "notes": [], "params": { "forceDirect": true, @@ -87343,7 +87703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbd06b2bcc82fecf9e66dce22de612b2", + "key": "950b160491af39c11843291f04fd1a22", "notes": [], "params": { "correctionVolume": 0.0, @@ -87363,7 +87723,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "455d9c61aa26913fc44257e16fc039b8", + "key": "ed16afa37816277738cb0d5f15be54c4", "notes": [], "params": { "forceDirect": true, @@ -87396,7 +87756,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "159a7970c859a947b0265d601660b5e6", + "key": "7c13a6142d5fbb7bd94baed1a41b7cf2", "notes": [], "params": { "pipetteId": "UUID" @@ -87410,7 +87770,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bbcf688de6fa088e8a5f15117b1bb62", + "key": "b58d087206d90810d11deda67418327c", "notes": [], "params": { "correctionVolume": 0.0, @@ -87429,7 +87789,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29f299918f48954b3f9465c41f9ede18", + "key": "de2083e1fa9f4eaa937e72ed9d8c39bc", "notes": [], "params": { "seconds": 0.75 @@ -87443,7 +87803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b23fa581f8537889e521010b9300755", + "key": "b17f7e9ed9a657d72b78c57e208d5df1", "notes": [], "params": { "forceDirect": false, @@ -87475,7 +87835,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d54736159f1478110d7a3104e3cda34f", + "key": "412b3bf9e792b205f8b510b20ac22490", "notes": [], "params": { "correctionVolume": 0.0, @@ -87495,7 +87855,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07f4af9dccd05478c8b461aa782d726f", + "key": "c49e4fcea4c0bccbbb7c97119e8c05d7", "notes": [], "params": { "pipetteId": "UUID", @@ -87511,7 +87871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "851bc7d186ae847efdc6abf2a52d0bb4", + "key": "3626788ec35ec99eb8de5c532152a19c", "notes": [], "params": { "pipetteId": "UUID" @@ -87525,7 +87885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0b10b09b5efe974b740ac7a1658ef15", + "key": "493c45805146d6b6afca57a70aeb82c6", "notes": [], "params": { "forceDirect": false, @@ -87557,7 +87917,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98986ee0c20ac7fddb74060760920742", + "key": "28a587b6a79b5c38cac1cf76c4fd9b0f", "notes": [], "params": { "forceDirect": true, @@ -87590,7 +87950,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed023fda3bc79f35076d1c140dadb7a1", + "key": "75e9df8db01d1fc235b1a181b94607af", "notes": [], "params": { "correctionVolume": 0.0, @@ -87609,7 +87969,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1a332b07955626110376fbaea150136", + "key": "7a5e0b50867ab46b2ddd0ab6df486d36", "notes": [], "params": { "seconds": 0.75 @@ -87623,7 +87983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1da1f4ffb7bae09e03c3127a73477a30", + "key": "ea173ab441a10fcb40278157498f4f5b", "notes": [], "params": { "forceDirect": true, @@ -87656,7 +88016,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "acc43c32599d5d79a2474d093c9958cb", + "key": "cd4492e912bf55ba59fe2816eefe7732", "notes": [], "params": { "correctionVolume": 0.0, @@ -87675,7 +88035,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9cf177bf9934c166270278702d662e5a", + "key": "1a97c71f57fed1e3743a720baaaf1856", "notes": [], "params": { "seconds": 0.75 @@ -87689,7 +88049,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4a90a23465dcce8f3f4a90d2db4177e", + "key": "e6ad0349a41951335761df5a46b73e88", "notes": [], "params": { "forceDirect": false, @@ -87721,7 +88081,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab103e65e353ef2a579727cfd7013ee3", + "key": "a2554e124b24fcb686b5a14ed98c50d5", "notes": [], "params": { "correctionVolume": 0.0, @@ -87741,7 +88101,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c88be7d1aaea0ed37eb080b0449e31c", + "key": "bdfc28748bc466cc8d9e72a4d43739a4", "notes": [], "params": { "forceDirect": true, @@ -87774,7 +88134,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d12654e6e7adf727e6fab10473141b6", + "key": "ebffb31bd9abe9a25aec704baf14f61a", "notes": [], "params": { "correctionVolume": 0.0, @@ -87794,7 +88154,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33653d5c1b1b84fe4d28e1f5b4fbc86d", + "key": "9c19b3914e9b46af5e82b8331d87108d", "notes": [], "params": { "forceDirect": true, @@ -87827,7 +88187,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94a5bf471e2ce56458c5579185cc8583", + "key": "8313de4f737012d83c7b85a483b8bab1", "notes": [], "params": { "pipetteId": "UUID" @@ -87841,7 +88201,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c6c215b79236987d7dbc3543b2b92a9e", + "key": "2eea893140e6b4ac9de3dfa5b711ab5c", "notes": [], "params": { "correctionVolume": 0.0, @@ -87860,7 +88220,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d16f83ecec355b427d52fcefd4a2911e", + "key": "9deea286a8683aec0f2870d1ca974a0c", "notes": [], "params": { "seconds": 0.75 @@ -87874,7 +88234,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8cf17eecab5724fa6600801632d1b45", + "key": "69e1bc6dff931e0956e0f90ae16844b7", "notes": [], "params": { "forceDirect": false, @@ -87906,7 +88266,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e867dc8f81a483b3c2ebc0c670056f7", + "key": "d71121f3efbcdbf74e6b6e79146df674", "notes": [], "params": { "correctionVolume": 0.0, @@ -87926,7 +88286,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c31b039d89c4c5361136e7d2d1492cb1", + "key": "fab4df94b9c91be36a09f542312a0166", "notes": [], "params": { "pipetteId": "UUID", @@ -87942,7 +88302,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e139665858f2fbdc8561c8b1bfcde180", + "key": "81eda64405d3c11163ec3ba552c1ae83", "notes": [], "params": { "pipetteId": "UUID" @@ -87956,7 +88316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f676361f79b89871e4f9869b3260b9df", + "key": "58b2028c86dfdc0b4501a425d0cca28d", "notes": [], "params": { "forceDirect": false, @@ -87988,7 +88348,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e78efa397566e4ec37f977a23b5a47e6", + "key": "13d2f56b8193539faa3651fa3adc4c07", "notes": [], "params": { "forceDirect": true, @@ -88021,7 +88381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eded19bcc8180ba80d93b35a16208f19", + "key": "2d8c2914bcf3b836bc302be991bc7487", "notes": [], "params": { "correctionVolume": 0.0, @@ -88040,7 +88400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57451a7d6fa8130d8042e35588ac6c93", + "key": "50d4b25d2f54e4844ddd95c5ba0b3a00", "notes": [], "params": { "seconds": 0.75 @@ -88054,7 +88414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1598fc60278ef29ea2b74e1613b259ae", + "key": "b22d8ba9901f650ed1445a89fb6a2599", "notes": [], "params": { "forceDirect": true, @@ -88087,7 +88447,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "671a86499ed3f37e6bbf54c9a92cb4a7", + "key": "97bb634aafd2c265c77934fe3c98e1a6", "notes": [], "params": { "correctionVolume": 0.0, @@ -88106,7 +88466,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a83373caaddb9037d33f81553d9d859b", + "key": "5f69e81015253a11f67aeaff7574f738", "notes": [], "params": { "seconds": 0.75 @@ -88120,7 +88480,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2eb69a3adfc7bba3a72ce0824d59083b", + "key": "ce27bf2319063fe207c429511e3a0b08", "notes": [], "params": { "forceDirect": false, @@ -88152,7 +88512,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b343531a83d6e867b2da1c77fce75c2e", + "key": "0a398a05e98bd479eff66726246c64cb", "notes": [], "params": { "correctionVolume": 0.0, @@ -88172,7 +88532,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3711d73ab4461fe34e80c22a4d0cf0dc", + "key": "12f1289b864942f04b5fa0bd24d99450", "notes": [], "params": { "forceDirect": true, @@ -88205,7 +88565,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1bb10068d8c87f3431afbc22d8a901bb", + "key": "10fde02777cf7b75d4b8effb2d2e1b35", "notes": [], "params": { "correctionVolume": 0.0, @@ -88225,7 +88585,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f3acf27ea99d6425cae976a4efff7d8", + "key": "6ece88d2d2d99972890a5b7a1ae79670", "notes": [], "params": { "forceDirect": true, @@ -88258,7 +88618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2779d21187158bb246cce13d6982984", + "key": "a54169107c279b6eed75ef2d37b361ad", "notes": [], "params": { "pipetteId": "UUID" @@ -88272,7 +88632,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a5164b93eadb13349d023216598ec775", + "key": "4c7a60ca07138228ca0ffe23a205d896", "notes": [], "params": { "correctionVolume": 0.0, @@ -88291,7 +88651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7be77e9fba8a55f72776b8c4742e6e4f", + "key": "51b837baaab051cdd7fce92704794d10", "notes": [], "params": { "seconds": 0.75 @@ -88305,7 +88665,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a29a37c12fd61bdf56da3179aff613cc", + "key": "21d16a6a39cfded978728cf357cc7a52", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -88334,7 +88694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "204ef6e96dc96d3641b88fd23bef7dc1", + "key": "f0c7ba5fd8c45432ff091ceb072e1b65", "notes": [], "params": { "homeAfter": false, @@ -88349,7 +88709,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef433c65a6605337ad07e22a976c3de5", + "key": "201a892ec0ff94ef2c06807598c444b5", "notes": [], "params": { "liquidClassRecord": { @@ -88744,7 +89104,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd58a16fae5a151acebc1acfcd03d45f", + "key": "aa1bcb8c4afaf62c917c758fbe993a47", "notes": [], "params": { "labwareIds": [ @@ -88766,7 +89126,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5939a36a8b1c9a9aa600a90d1ad5b5c", + "key": "42303e8c11f0a9fe13487d1d0c6d81e4", "notes": [], "params": { "labwareId": "UUID", @@ -88799,7 +89159,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b263665106aa2285526b97f2e8b82377", + "key": "4571599e16335ccc1f3febff31e8bd40", "notes": [], "params": { "forceDirect": false, @@ -88831,7 +89191,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab19a647c7bebf828204cfc85a4e3b96", + "key": "1456902d6442d09ea9d3b24a29d4360b", "notes": [], "params": { "pipetteId": "UUID", @@ -88847,7 +89207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "660bc49b031abc6b36096370267658dd", + "key": "600e25693c8a6798bc9770de6fbd1bb7", "notes": [], "params": { "pipetteId": "UUID" @@ -88861,7 +89221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4364c1854a87794d4a39c053ed170695", + "key": "d7c39d23c510b15897cf851f9fa6e0fe", "notes": [], "params": { "forceDirect": false, @@ -88893,7 +89253,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "561136b4ab3a0cb1d04c6cd2decad367", + "key": "b7539efea0fe5ea4d44e8cf9ba56cb81", "notes": [], "params": { "forceDirect": true, @@ -88926,7 +89286,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93428a84e208c4bd4be8fa1d6ecfd4f8", + "key": "2d33916b2399024ebf690a6bdaaafb6f", "notes": [], "params": { "correctionVolume": -8.23, @@ -88945,7 +89305,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "511b7f2dff48a9320a5b4845b69a59f8", + "key": "c224fe1cad0b262b5fd72a8ef607fab0", "notes": [], "params": { "seconds": 0.2 @@ -88959,7 +89319,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abea1e5d614b7913fd1b3f20e61a9bb6", + "key": "cb3228243a6e001025a453ede560c8df", "notes": [], "params": { "forceDirect": true, @@ -88992,7 +89352,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e49130f0e2435769535d88d53dfca081", + "key": "c0c8aa8e7663a5b47be59e2b0a2e6bde", "notes": [], "params": { "seconds": 0.5 @@ -89006,7 +89366,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b114c341e933e1a1509fc282cafa3d2", + "key": "1e3e97593b7c175b8957b9ca3a0a726c", "notes": [], "params": { "correctionVolume": -8.676666666666666, @@ -89025,7 +89385,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a747fbe7e3218e89c6d6bfac30ba83e3", + "key": "b41203d3aba12c1245cc25618b09bc79", "notes": [], "params": { "seconds": 0.2 @@ -89039,7 +89399,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ce7a0f75c30b3f703c3e7e44be79b5b", + "key": "defc1437aba105e6fea8d8e0f047d7be", "notes": [], "params": { "forceDirect": false, @@ -89071,7 +89431,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f30dfac556f6790c2cb6039fcd11942", + "key": "ce7a298eaa937b1de018a768e6d4c98c", "notes": [], "params": { "correctionVolume": -8.23, @@ -89091,7 +89451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8153fff05218ecd7ebb980ca3859a231", + "key": "bfd6186a576f4192cad8b000d8e4d5a5", "notes": [], "params": { "seconds": 1.0 @@ -89105,7 +89465,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b89d38a4abb8f09746ebd9d1b6e61323", + "key": "0a3c91ca5c8da51c8841f99ce8f7d5f4", "notes": [], "params": { "forceDirect": true, @@ -89138,7 +89498,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26b9bce5618c4a8f664755eeffb26243", + "key": "089f5c6d2346890a9b3cf4aec517b55b", "notes": [], "params": { "correctionVolume": 0.0, @@ -89158,7 +89518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95eb10a97107d6ff2f68e9bb5e43c0a1", + "key": "00080409d7ac154840f25ba1bc090011", "notes": [], "params": { "seconds": 1.0 @@ -89172,7 +89532,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86163cc8fbba3f7d49f580e4f0cbb6ca", + "key": "58a6188a4a0b69c0be1071396374b935", "notes": [], "params": { "forceDirect": true, @@ -89205,7 +89565,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f180e95b55477fc4bfc8b2b8ec3d19f", + "key": "ed316b7d0050ce7f71a9bc245f9e7841", "notes": [], "params": { "seconds": 0.5 @@ -89219,7 +89579,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e03019802c92e80c358a86edb102b0e7", + "key": "5d27ddc9a1d59b4816f0b8ab6cda9d13", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -89238,7 +89598,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f074eefa624b03756495bc252eea2f5", + "key": "d98fad39094a3e0af8cfa98e9edfc260", "notes": [], "params": { "seconds": 0.2 @@ -89252,7 +89612,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e877c2f2f6a068ab3b814434e19c8ab", + "key": "fed0a915d2e8f56a21feb5c7ab04bce7", "notes": [], "params": { "forceDirect": false, @@ -89284,7 +89644,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "801ea1761ec6400fdad10a08f0b911e3", + "key": "dbdc0a8fa8e30ea3e0e939ddbd61f47e", "notes": [], "params": { "correctionVolume": 0.0, @@ -89304,7 +89664,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c02b114c78fea564b35573b952b71a6", + "key": "a74a5eb8cc6312cb59c1bf24b11ab86e", "notes": [], "params": { "seconds": 1.0 @@ -89318,7 +89678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64122a3756a75962d7b2aa694ca77607", + "key": "f407eeabb33d89d768873cdae63444e9", "notes": [], "params": { "pipetteId": "UUID", @@ -89334,7 +89694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffdfca7d49a4d1c521c340de1f83cafe", + "key": "550650e64f878252a75ed73366952018", "notes": [], "params": { "pipetteId": "UUID" @@ -89348,7 +89708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4be344ad7a1dd3cc103251333d73414d", + "key": "a550d63121c50bafb7677e5c8eeafe7c", "notes": [], "params": { "forceDirect": false, @@ -89380,7 +89740,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c263eaf4b3ddbd63ebf9dc79668a9663", + "key": "e6e4766e43d86b5177583b678e4bb2e2", "notes": [], "params": { "forceDirect": true, @@ -89413,7 +89773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64452801f4eab64a06294c7f614ab0c3", + "key": "70c828e36746ef2a121d142ab8835fa6", "notes": [], "params": { "correctionVolume": -8.23, @@ -89432,7 +89792,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f970ec910f72f70534381268cb3a45f", + "key": "527641c1943a9fb224c779879ec43ac1", "notes": [], "params": { "seconds": 0.2 @@ -89446,7 +89806,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6cdb5ead25282d51f76ee66e794d7bc", + "key": "26fdca201554a371483fd7b253561cae", "notes": [], "params": { "forceDirect": true, @@ -89479,7 +89839,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d86a1733bef324b196fa0434c8a7b17d", + "key": "573e19d587cd76e35899f54c3870e148", "notes": [], "params": { "seconds": 0.5 @@ -89493,7 +89853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aaea05fad91ad4babd8a5e3a0313f19a", + "key": "fc2240e671f99f61889f619ba1bffd07", "notes": [], "params": { "correctionVolume": -8.676666666666666, @@ -89512,7 +89872,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a331447b0be0be23c57ee6f38e3ad7ef", + "key": "543541d10a601cfff37bb19f623823b1", "notes": [], "params": { "seconds": 0.2 @@ -89526,7 +89886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48955ea75931710434d598c376c3529d", + "key": "83e5d5b5c1acdfcb1e3f961974e5f09a", "notes": [], "params": { "forceDirect": false, @@ -89558,7 +89918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0f47096f8e1ebaee6d4bf2f247603857", + "key": "51c06068b7fb0d7f5e0a053aa017a25a", "notes": [], "params": { "correctionVolume": -8.23, @@ -89578,7 +89938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6f2c1dcab71c5fed58a42725e1f10e3", + "key": "5c8e46df6449b3a13bc38935dcd869cd", "notes": [], "params": { "seconds": 1.0 @@ -89592,7 +89952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4ce51a4c7b689b930c87510a6a79491", + "key": "afa4e6dcdc2be3deed015dbfdba9fbd1", "notes": [], "params": { "forceDirect": true, @@ -89625,7 +89985,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36eb035a1cecdf50cd3e5de909640860", + "key": "e10a2511e895f670bfa7ecffeb393a73", "notes": [], "params": { "correctionVolume": 0.0, @@ -89645,7 +90005,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e285c307059ef6b9dd090293e662650e", + "key": "bd4588694303b5a21704b1bd947d16f8", "notes": [], "params": { "seconds": 1.0 @@ -89659,7 +90019,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "442b5c113701869b9c33e6e2b226c96e", + "key": "43bb6fbd90bf62b72c3b24c464144f9a", "notes": [], "params": { "forceDirect": true, @@ -89692,7 +90052,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18cbc4043f2410844725ad4c2fe0c42c", + "key": "a2147cbfc7cb572adf6669b79752232f", "notes": [], "params": { "seconds": 0.5 @@ -89706,7 +90066,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32e38f88f53120e17108eeb90f78aa38", + "key": "00c6d6d4b1bf7e0ffb023287fec124ee", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -89725,7 +90085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "360e1e7748a74cad5d631e6e309f3427", + "key": "7f99731167443acaf08f566c90025f9d", "notes": [], "params": { "seconds": 0.2 @@ -89739,7 +90099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5e886bb90d61801fd858a797dbde5f85", + "key": "20cc2756f7bc3077123c02252a7f4572", "notes": [], "params": { "forceDirect": false, @@ -89771,7 +90131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "027f04e4c690571c4877e1f11af186ab", + "key": "bf16be85f0427e3c2458c81669b05b2b", "notes": [], "params": { "correctionVolume": 0.0, @@ -89791,7 +90151,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "76e78ed09ab737da701769c0ddfeb693", + "key": "1f81ae469dc97b2f355ac7d4549c87e4", "notes": [], "params": { "seconds": 1.0 @@ -89805,7 +90165,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3c4b78eabe141da41d48b120cbf2ccb", + "key": "5c72163429d815b3841303efd4a37533", "notes": [], "params": { "pipetteId": "UUID", @@ -89821,7 +90181,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61c4b60dcc19f7b1d0b9775765f4d9af", + "key": "b523dfdbf6a78f30deed2284cc7355d0", "notes": [], "params": { "pipetteId": "UUID" @@ -89835,7 +90195,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7635ecdc8b4d4ce80793e2002f8ebdf4", + "key": "4a070c9489c0f91f8903ee871f383ccc", "notes": [], "params": { "forceDirect": false, @@ -89867,7 +90227,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aacc347dca45f527e7fbaf2b58fe5b02", + "key": "4000de65577c119480cee4d928b69f5f", "notes": [], "params": { "forceDirect": true, @@ -89900,7 +90260,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f01da1f6846c4617d79c3b51c98963f", + "key": "a5b11169f0ac0cadb7b0e7e4311d0cbf", "notes": [], "params": { "correctionVolume": -8.23, @@ -89919,7 +90279,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa38a09db71110ed766fae6c67e354a7", + "key": "0fea0d04cdf136096597ad5a81b44604", "notes": [], "params": { "seconds": 0.2 @@ -89933,7 +90293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24981f6dc99f30a45c0e2f0ab163e595", + "key": "736a783f474e90ce90f5193e9f48c279", "notes": [], "params": { "forceDirect": true, @@ -89966,7 +90326,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0049661fa549bac076b3111c96b6e488", + "key": "f6cbf31d2fba481f9729953357e346ae", "notes": [], "params": { "seconds": 0.5 @@ -89980,7 +90340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d8b4b3f12d77f3d144a9c9b2d93b105", + "key": "7278cc75fab4b08164b8fa26d568f0c8", "notes": [], "params": { "correctionVolume": -8.676666666666666, @@ -89999,7 +90359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3d75d21867478b280ca2354dcc36124", + "key": "af5de8e797121cd480c4e422f2d103a6", "notes": [], "params": { "seconds": 0.2 @@ -90013,7 +90373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbb4cacafd474209882e253d8e192e92", + "key": "8893ae224a73cb9de48ef24b3c301beb", "notes": [], "params": { "forceDirect": false, @@ -90045,7 +90405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81db052c277abea2c3df30d3456fa587", + "key": "c1a56afdf61cfb2b1b1bbc2c74e982fb", "notes": [], "params": { "correctionVolume": -8.23, @@ -90065,7 +90425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "38e2f13902339c2ad8108e8f26484846", + "key": "737a50c0ef500055c8cac217a715298c", "notes": [], "params": { "seconds": 1.0 @@ -90079,7 +90439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4d0605d32b546ccc9096fb2ac719acb9", + "key": "25e1fb8a88477f6f27ea90caf0197bb2", "notes": [], "params": { "forceDirect": true, @@ -90112,7 +90472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4d46af09967904d43bcdf10a44568cc", + "key": "db1fda7b801c72ed367f3604aca91e4b", "notes": [], "params": { "correctionVolume": 0.0, @@ -90132,7 +90492,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ca411f2f50710a6160b71dbfe835e2f5", + "key": "e748b868be197e2cbb2dfb22349d3079", "notes": [], "params": { "seconds": 1.0 @@ -90146,7 +90506,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f88078092ce1d83459aa502ec32d9b94", + "key": "b6ce9d2e5c1f34a23e45ffa646416210", "notes": [], "params": { "forceDirect": true, @@ -90179,7 +90539,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d149f685ceb84ccf664ff9df47690da3", + "key": "fd2cacd1069491b24ffb3a820d6d760b", "notes": [], "params": { "seconds": 0.5 @@ -90193,7 +90553,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbf8ec1c599d4a7b516a8537e07d06d1", + "key": "ba588d79d5677be027ff1cb53163e195", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -90212,7 +90572,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a25a5a807faa51725a640c61cbf8543", + "key": "70b67d04243b54fcecacb6f34bd25755", "notes": [], "params": { "seconds": 0.2 @@ -90226,7 +90586,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df06c5152554600ca0ee6c8d55506ca2", + "key": "cd5423195c7947e51bfeeb8689cba7e6", "notes": [], "params": { "forceDirect": false, @@ -90258,7 +90618,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f96ee00f358b827bd9713c4619cb2b59", + "key": "6c03a6c1a810484f5b3f270d39bfc9c4", "notes": [], "params": { "correctionVolume": 0.0, @@ -90278,7 +90638,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cafdbd71be5aed1a8312c7a0c4e48169", + "key": "5c6a9e59d4748302a477da14c1a4a7e1", "notes": [], "params": { "seconds": 1.0 @@ -90292,7 +90652,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9b7351d0fce5d059eaf6bb5c06f10a4", + "key": "a9bfa45c3f857393a5eb8d6ee6d37c5b", "notes": [], "params": { "pipetteId": "UUID", @@ -90308,7 +90668,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74fdfe8333a7b3e9492f3b2d08157515", + "key": "4a22a97fd232a4a8912d06f1903a02ba", "notes": [], "params": { "pipetteId": "UUID" @@ -90322,7 +90682,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c364cb1a65b90c2387efa72924979fc2", + "key": "5b37765b7308ccbe5ab91df80f172497", "notes": [], "params": { "forceDirect": false, @@ -90354,7 +90714,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52651988818e8031c540d249af91778f", + "key": "4b7f79fed571220e6d29382d8d0ce0b0", "notes": [], "params": { "forceDirect": true, @@ -90387,7 +90747,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6423aec8949fd68871c6fc8399874bc6", + "key": "b06ec323f2d88f2d09ef30fbc8d2f728", "notes": [], "params": { "correctionVolume": -8.23, @@ -90406,7 +90766,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0628c3046e9523ce0e0ebf14fba96ff6", + "key": "c0af920476f52cde8846d76c8276c7eb", "notes": [], "params": { "seconds": 0.2 @@ -90420,7 +90780,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a3336659c45e989468fae8f84513ca5", + "key": "e636d38d0360f0dcab67f386f42dd9c2", "notes": [], "params": { "forceDirect": true, @@ -90453,7 +90813,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1131a6e5cbfdfb9965edf04d770237bf", + "key": "5642f7c2cac22fffab228aaa28679257", "notes": [], "params": { "seconds": 0.5 @@ -90467,7 +90827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "35959e1d410b72154a5406d532c8f6c0", + "key": "6ee376d926e36ef69eb3b392541f78d3", "notes": [], "params": { "correctionVolume": -8.676666666666666, @@ -90486,7 +90846,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec41347b8dfdf5f7bc3a3b8f23f6f0f0", + "key": "8ebbc058cc2996c0d4c86bffbcc5675e", "notes": [], "params": { "seconds": 0.2 @@ -90500,7 +90860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7414054fda7f54bb1c41438d80b10657", + "key": "215947511b76cfb0b01bca06c8c1f8c8", "notes": [], "params": { "forceDirect": false, @@ -90532,7 +90892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "366ce57df51a197cb11d1d8497dd1840", + "key": "909aebcf5dd7e55314d92fc80b830d74", "notes": [], "params": { "correctionVolume": -8.23, @@ -90552,7 +90912,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81c9f2f7676365cefee0ce4579633bef", + "key": "0cf6c0494e001659b4d5c2f6d4d882a2", "notes": [], "params": { "seconds": 1.0 @@ -90566,7 +90926,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4079aad8a0e2f3ffd8f8757527061434", + "key": "6a4835ad45e3d8416292a260db006af4", "notes": [], "params": { "forceDirect": true, @@ -90599,7 +90959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a748f808fce40809ad32534e0b9c26d0", + "key": "3fabf209513f133f24e6ec7b4b34fb97", "notes": [], "params": { "correctionVolume": 0.0, @@ -90619,7 +90979,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "26158c50befcd6ea8efa22239a34086c", + "key": "f3cb5a4a395bbf09b891c41a2887f4d3", "notes": [], "params": { "seconds": 1.0 @@ -90633,7 +90993,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b5eb542370c53b5cf0e6aa99da6cd4c", + "key": "f396d7c2a7551186057fd406c6d8df85", "notes": [], "params": { "forceDirect": true, @@ -90666,7 +91026,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2d31136affd1bf3c072fe99ea8c8d6c", + "key": "7859aeb258dc429d7603221636671e4c", "notes": [], "params": { "seconds": 0.5 @@ -90680,7 +91040,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f056597d8a288bd7073f81eee34ae987", + "key": "3147356c85af411aff800aba1c757854", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -90699,7 +91059,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c3821d9d27d508f8ad8493c062092be", + "key": "87aae82b51b77d423213c18b369f1421", "notes": [], "params": { "seconds": 0.2 @@ -90713,7 +91073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f606b0e30d214d571b1baa78d534d8a", + "key": "0eea7269adb2c374824606cc279d6c6d", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -90742,7 +91102,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc4ce4fd811b2a77076b14f78b24501b", + "key": "5b02fbfb9b09bcb270e3008969e72b9d", "notes": [], "params": { "homeAfter": false, @@ -90757,7 +91117,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cff3c9d18fd744c01bee8db159c34a16", + "key": "7df2c444f8c8193c2616be89ede4bcac", "notes": [], "params": { "liquidClassRecord": { @@ -91120,7 +91480,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22c79680fe008e9499b6d33896452aa6", + "key": "d6ac19fb75a50928fdf623566b4e4a9b", "notes": [], "params": { "labwareIds": [ @@ -91142,7 +91502,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "12b94a77cf65bc3fe40c200c621493e1", + "key": "3709af3280eaecb03c296036bd1f3514", "notes": [], "params": { "labwareId": "UUID", @@ -91175,7 +91535,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36479d14c57b8793986ec70c80bbf2ba", + "key": "5865ba503bee5af9c6f4bab8356ff094", "notes": [], "params": { "forceDirect": false, @@ -91207,7 +91567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec47613f8a229d7554167933a66fe5e9", + "key": "5cb6897573006473a827be100489448e", "notes": [], "params": { "pipetteId": "UUID", @@ -91223,7 +91583,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "65764fa8a253239f0aa666b874c408d9", + "key": "45ac7387d0199136a75b3534b4a9313b", "notes": [], "params": { "pipetteId": "UUID" @@ -91237,7 +91597,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7ce91556a58d2a845ed14737f5c1247", + "key": "d87207a818ddd132ec41cabad910998a", "notes": [], "params": { "forceDirect": false, @@ -91269,7 +91629,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11f156ac6a4b1e4661f11b3e531df10e", + "key": "24ecfa0e3b8ea349ae508437bb65871a", "notes": [], "params": { "forceDirect": true, @@ -91302,7 +91662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "43c84bf987a3bb8b5c314393aa9c8005", + "key": "d7d29bb9d92e8099efe947a534f69ce0", "notes": [], "params": { "correctionVolume": -0.75, @@ -91321,7 +91681,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c3e217cce28bbf9028a4443b1a830bd", + "key": "141bd013bb81244338e645110599b2b2", "notes": [], "params": { "seconds": 1.0 @@ -91335,7 +91695,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "88aeba6949b3e3b2e532647523ab17a4", + "key": "82a7811a23809913205cea23541dd1ec", "notes": [], "params": { "forceDirect": true, @@ -91368,7 +91728,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a28540be4d0145e72ed7ec272fa3d2c7", + "key": "34ba17308aa1bdc7ece21ea1d71ef1b0", "notes": [], "params": { "forceDirect": false, @@ -91400,7 +91760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95f054d2f6720c876951e7e926e5bbc3", + "key": "736bc780605bf28a762bad5a26f0e46b", "notes": [], "params": { "forceDirect": true, @@ -91433,7 +91793,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cca4cfd4635aff27ab3183bb57a0c377", + "key": "c76b4f12144f1a375e0f81c5fe77d14a", "notes": [], "params": { "correctionVolume": 0.0, @@ -91453,7 +91813,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13d178d63392c79731425276858e712e", + "key": "5e8d01b8bedbe6bfc87cd8610166315c", "notes": [], "params": { "seconds": 0.5 @@ -91467,7 +91827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "55a365c88478c2491a2457b24d519cef", + "key": "a91d382dc47e6a3d3155882ab5073f8b", "notes": [], "params": { "forceDirect": true, @@ -91500,7 +91860,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75db6a865711cce6dc160149abe7a7c5", + "key": "7069df880bc4c55da33d85c077b16325", "notes": [], "params": { "pipetteId": "UUID" @@ -91514,7 +91874,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be0974563189a294edc6779226e08975", + "key": "88fd932aaa0fa45465315bdec2b86152", "notes": [], "params": { "forceDirect": false, @@ -91546,7 +91906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd2c7dc154b323a27513ae274a10adce", + "key": "59be25c41bb25dc2254bcbf95b441d62", "notes": [], "params": { "pipetteId": "UUID", @@ -91562,7 +91922,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0e018bd09c2573daad35f0ab7b7fe35", + "key": "4b16747f07c5e1d92e5b344f3490cd1d", "notes": [], "params": { "pipetteId": "UUID" @@ -91576,7 +91936,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10c893bbc5bf1593e36a8d2ccc96b0b1", + "key": "2fb819d80acd27e00c52880548288dbb", "notes": [], "params": { "forceDirect": false, @@ -91608,7 +91968,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "76226fa677c911a8b8b23acebb173353", + "key": "c38850114e5ac7766b430305f0a84419", "notes": [], "params": { "forceDirect": true, @@ -91641,7 +92001,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a74ff5039981fdaa67a62a147ad6c06f", + "key": "5d7c1be77247bde34389ae7483761e3b", "notes": [], "params": { "correctionVolume": -0.75, @@ -91660,7 +92020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd1d33c42c55e6d80b708b22b2cf8675", + "key": "3e919d17e295317d924ef2cc4c097b49", "notes": [], "params": { "seconds": 1.0 @@ -91674,7 +92034,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a73dd9eea1b7258e4a240c9d6beeb264", + "key": "533e4e0f52a3e3f4ca59c7647fea52ec", "notes": [], "params": { "forceDirect": true, @@ -91707,7 +92067,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c32671b861535527c1e22312509b9641", + "key": "a329d8b06d20a061ed48d90fe1471e83", "notes": [], "params": { "forceDirect": false, @@ -91739,7 +92099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0fb9f9bbd4f0a551e3c4655ddb2bf784", + "key": "13113591d8a9d36a39a04ecc59012f90", "notes": [], "params": { "forceDirect": true, @@ -91772,7 +92132,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cda2937434e534bc48c35e6632790d8f", + "key": "23f9e954de5af931863182f4c2273f3f", "notes": [], "params": { "correctionVolume": 0.0, @@ -91792,7 +92152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7ec6cfb7a76dd814ee17cb469e33b7a", + "key": "e3c48279ebf2c10e7db950c5c900e9fa", "notes": [], "params": { "seconds": 0.5 @@ -91806,7 +92166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d82f7c9b42346e88d618f196c5326b7", + "key": "e774708c7fe19bd5dae81d9da7e211da", "notes": [], "params": { "forceDirect": true, @@ -91839,7 +92199,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5f989a5f7655665fad398a168124699", + "key": "c4212be44535f7a4b5902c884d4abe01", "notes": [], "params": { "pipetteId": "UUID" @@ -91853,7 +92213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e8bbc4c4d11c0e2820048240a2a0540", + "key": "3a8b4b91b6f7e381deacb4abc40d8455", "notes": [], "params": { "forceDirect": false, @@ -91885,7 +92245,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99e20d855f046d8abc1c7a91a06d44ec", + "key": "1a968633b4bfa3935d947bde18230fb5", "notes": [], "params": { "pipetteId": "UUID", @@ -91901,7 +92261,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5661cdefa68ecb8f6a6cb14ed410306", + "key": "c2605bc04b80731c06bc8e12624f51e6", "notes": [], "params": { "pipetteId": "UUID" @@ -91915,7 +92275,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8163656d78d7ca501ed3259cbfab557c", + "key": "78459f83d16f7be5837bfa17e4c23195", "notes": [], "params": { "forceDirect": false, @@ -91947,7 +92307,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a367e875c1a4fbf0e3d6252b00c6a1d7", + "key": "1dd038ae300db511fcecce63d2bd5225", "notes": [], "params": { "forceDirect": true, @@ -91980,7 +92340,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34666c3065789051a7a4298f68a65567", + "key": "631cf768b50b61a5f5e2d6c1e3333a72", "notes": [], "params": { "correctionVolume": -0.75, @@ -91999,7 +92359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7abfb17121b03d51a8e00d5971448913", + "key": "1a6d1ce3092947c575d09ab140af4b97", "notes": [], "params": { "seconds": 1.0 @@ -92013,7 +92373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6de1032ebb58ea40db9599df3d10c465", + "key": "49309cc2f56ed931ec2f9eda8fff1d37", "notes": [], "params": { "forceDirect": true, @@ -92046,7 +92406,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7444edcfffaa0a3daa3af9cd3d2a0d5", + "key": "dce61231ab89bdf5d16bd53654244a31", "notes": [], "params": { "forceDirect": false, @@ -92078,7 +92438,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4b8a66b83b5cad4ae70c63df666cc572", + "key": "a1bf402ac4389c0930f0b44b3eeeee13", "notes": [], "params": { "forceDirect": true, @@ -92111,7 +92471,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0e34157626c8c49e38551294778b12f", + "key": "c5dd25e08639ab428ccba44d39b7643f", "notes": [], "params": { "correctionVolume": 0.0, @@ -92131,7 +92491,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "326bc3bbb02cf9f93610600f66b24301", + "key": "39a5521effc611df83e238ddb6b7da9d", "notes": [], "params": { "seconds": 0.5 @@ -92145,7 +92505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95dd7e8619a4058ba5d14d7fca7a826c", + "key": "7a48f4eec55d8666b652782eb931ecd5", "notes": [], "params": { "forceDirect": true, @@ -92178,7 +92538,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7dfef46b5bb4204245a32f940f21c1fb", + "key": "59fd0c26daf48b8305a395f7561e3844", "notes": [], "params": { "pipetteId": "UUID" @@ -92192,7 +92552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73dc7cbe0335a27094d50f42848a841d", + "key": "474b9d6beee6aad0c9d270aafea59c1e", "notes": [], "params": { "forceDirect": false, @@ -92224,7 +92584,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92fdb1886fad7da35fef663e202be315", + "key": "3f0915a733cbbba2e4908074861354ef", "notes": [], "params": { "pipetteId": "UUID", @@ -92240,7 +92600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f374d1ee9b4afe88cfa7b0cf4255b2e4", + "key": "5515dfd60e6de746d1948c7b046ad842", "notes": [], "params": { "pipetteId": "UUID" @@ -92254,7 +92614,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ea6901dc987dbad8e0cc9052056cb96", + "key": "e8d032adbb13bccbacfd7704eedee427", "notes": [], "params": { "forceDirect": false, @@ -92286,7 +92646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "406843ebdbf3876d9ab216ab83ea9829", + "key": "54ad3ddea6effb92ea7c2c9bec01804d", "notes": [], "params": { "forceDirect": true, @@ -92319,7 +92679,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0d8bf3c661a1b504a07a36ebcfd3d1c0", + "key": "c8853996fdb460a312cc04ed023dc7ff", "notes": [], "params": { "correctionVolume": -0.75, @@ -92338,7 +92698,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3cd7837090c55006652792be12251b7a", + "key": "0619df0a3563dbb39227fedd435e64c1", "notes": [], "params": { "seconds": 1.0 @@ -92352,7 +92712,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b8939dfbe34119727e1bb1fd2fe304f7", + "key": "e6df788a02093f1a54645d9803a06ad8", "notes": [], "params": { "forceDirect": true, @@ -92385,7 +92745,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "93b19ee51f23b83b470221b5e8597739", + "key": "f0931983c9dde4b161815dc4cf9bbcb1", "notes": [], "params": { "forceDirect": false, @@ -92417,7 +92777,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "774b0dce5241d5e521476df175506372", + "key": "c04fea0fa3964a3797167f1930c38285", "notes": [], "params": { "forceDirect": true, @@ -92450,7 +92810,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7bc6f92855528b3e1d5f930033ab1cc5", + "key": "e404dc6dd68f02d1dc1f86e55002c7b6", "notes": [], "params": { "correctionVolume": 0.0, @@ -92470,7 +92830,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11e33e056e3ca089ae31bd58543ad848", + "key": "fa71828507e7c7044478b34ccac91275", "notes": [], "params": { "seconds": 0.5 @@ -92484,7 +92844,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8806276470a9ca5a71e5ea563b43e1a4", + "key": "d6bce19eb05b68a558bc127858191236", "notes": [], "params": { "forceDirect": true, @@ -92517,7 +92877,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea5f11e5e309061c109ddb3e973fe7d5", + "key": "870f45d101cfbb5656fb071bb3316760", "notes": [], "params": { "pipetteId": "UUID" @@ -92531,7 +92891,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f39dd37eacf5c87c411e6696c998afc9", + "key": "aed7de5fc61240c499695a4624407cf1", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -92560,7 +92920,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d120eeef33779c035df8b6078a3c629", + "key": "6c55608125a2bd8e77bb5c2b417a37a5", "notes": [], "params": { "homeAfter": false, @@ -92575,7 +92935,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a7924eaeb1179acc295696183f94ed59", + "key": "079d06c956ba101e75183a86b3e57ccb", "notes": [], "params": { "liquidClassRecord": { @@ -92910,7 +93270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02e66bb7aa1fe14986801596905f4935", + "key": "6a3f6f77f021867e584705a9dd8f97db", "notes": [], "params": { "labwareIds": [ @@ -92932,7 +93292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5fbd7376aaee88da614060fa1b43fbe7", + "key": "c6d9d52d1d9358da1dd790d4b1f47d39", "notes": [], "params": { "labwareId": "UUID", @@ -92965,7 +93325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b01a65f032c148a3887c717e2099426f", + "key": "29bcba7817fd0e31e530aa181fbe996a", "notes": [], "params": { "forceDirect": false, @@ -92997,7 +93357,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bad23098cde0db10c4a6b1ef04417aaf", + "key": "045170f1b4da4c8ad48ae4514a739200", "notes": [], "params": { "pipetteId": "UUID", @@ -93013,7 +93373,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ea4904ddee78182d7079a75f066c2cd", + "key": "457990a460604e53322e0504fb03fb26", "notes": [], "params": { "pipetteId": "UUID" @@ -93027,7 +93387,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bfbee6d6a78406f33613612d61ad514c", + "key": "7de837b36f6c932b7c641b4cf33e403a", "notes": [], "params": { "forceDirect": false, @@ -93059,7 +93419,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3498dae52042f902e4cb550075e9e9b9", + "key": "e9c75612a278424f81a61dc3303275ba", "notes": [], "params": { "forceDirect": true, @@ -93092,7 +93452,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "271a8e8a91fd132cc995df70eb78f824", + "key": "94cabdb1f8480853fd22e545104fb06e", "notes": [], "params": { "correctionVolume": 0.0, @@ -93111,7 +93471,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ee969d2a77a2831daf795bcddebc7ce", + "key": "cbc7bfe421a0c2e4f79a83a38b4d53d1", "notes": [], "params": { "seconds": 0.5 @@ -93125,7 +93485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f8d02fe33f359b9f2634deab52b0f0d", + "key": "d5ec92528cebb080fa9c65262210fa93", "notes": [], "params": { "forceDirect": true, @@ -93158,7 +93518,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d3d61c2dbf86b73597255da80da0785", + "key": "750507c37537211bea1fae2e36256415", "notes": [], "params": { "correctionVolume": 0.0, @@ -93177,7 +93537,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53a32a006f5ab308bdd698898e3e554b", + "key": "20911ea4b1aeb1c03ed5c556ef413fce", "notes": [], "params": { "seconds": 0.5 @@ -93191,7 +93551,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c6a6ab5d8abacc6b2ffda8c1ca717c3", + "key": "47ce9cb93ea4c6d37a46acc9c8193d15", "notes": [], "params": { "forceDirect": false, @@ -93223,7 +93583,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3aebb2c258fd6049b6c8c00ae4a3c9fc", + "key": "40fa60e578ca2748945679361e0b43f9", "notes": [], "params": { "correctionVolume": 0.0, @@ -93243,7 +93603,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5583124c1428ab4081a71ccd7fe97fe4", + "key": "fa48ec7ceb27948667196da77fde4849", "notes": [], "params": { "forceDirect": true, @@ -93276,7 +93636,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4c29d505ee182bd60fc347bbe49f7e2", + "key": "4d9a65a986aa900b93caddc5296d8225", "notes": [], "params": { "correctionVolume": 0.0, @@ -93296,7 +93656,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "828c3a7f71020f32b5ef18a73048b2ba", + "key": "b0048e0c4460ebd5eadcaf1f2c09c557", "notes": [], "params": { "forceDirect": true, @@ -93329,7 +93689,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f00e1dbcfcaeac010fb3ba5ce642b1d", + "key": "8f478921b001f0fc184367623f545e16", "notes": [], "params": { "pipetteId": "UUID" @@ -93343,7 +93703,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0df23a290abefa215b8850d7d742325c", + "key": "98b930517fb0ccc698ece9e9de7c635d", "notes": [], "params": { "correctionVolume": 0.0, @@ -93362,7 +93722,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "71f45a60d0ca85c5f05ee213ac984996", + "key": "83ca7083f3fec36d9ebf27a0e8b79551", "notes": [], "params": { "seconds": 0.5 @@ -93376,7 +93736,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "46e28c191f151cb844b2813d4dc6573f", + "key": "518ac7b392906a0a046db3d304da6376", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -93405,7 +93765,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86c4567829adf236298fc327624e7299", + "key": "4d2c8866bf152527c7f777d96c1ed4d4", "notes": [], "params": { "homeAfter": false, @@ -93420,7 +93780,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd96432b825b5958e7f40dcd6af19412", + "key": "a66a6cd7fe946cdfd465e8c0d46f9867", "notes": [], "params": { "liquidClassRecord": { @@ -93815,7 +94175,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9107a6be4ab6a72836d9fff6df1722ad", + "key": "9b7b0cfa57f2e4550b1bb7103cc416be", "notes": [], "params": { "labwareIds": [ @@ -93837,7 +94197,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "896dfcd8a674381df61ebc7dcd8a0ed7", + "key": "36c3c8ef26c8d65956535ad42127b953", "notes": [], "params": { "labwareId": "UUID", @@ -93870,7 +94230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1a0ff3a379319c92fc6bc07be19791e", + "key": "c7190a24d2f47dda9cb810109107456d", "notes": [], "params": { "forceDirect": false, @@ -93902,7 +94262,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a71264a716f282267865a28f85e53dd", + "key": "66d516353a04c3cbfe9af1736f622e10", "notes": [], "params": { "pipetteId": "UUID", @@ -93918,7 +94278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6df266a0555c4e2dd29f054c3fa4e4e5", + "key": "3ba71d846921728008a844285da7a67b", "notes": [], "params": { "pipetteId": "UUID" @@ -93932,7 +94292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e563e0b78b332fa730ea36b94140b96a", + "key": "573ccf7dbb2e15224050f3813b2e5b0f", "notes": [], "params": { "forceDirect": false, @@ -93964,7 +94324,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6308357eccc55f211fa0ec43c17784c6", + "key": "d5d9aef456fcff87e3929b4c3a2004f5", "notes": [], "params": { "forceDirect": true, @@ -93997,7 +94357,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d872c34f1068188e15613d52ce7af7a", + "key": "de9d6b2b52dfc4b40ee5a8abfecaab44", "notes": [], "params": { "correctionVolume": -28.911111111111115, @@ -94016,7 +94376,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e6d6a9a0a354f4870b64839b015ce0a5", + "key": "8e067a1b911568e16058a5f90362f5dd", "notes": [], "params": { "seconds": 0.2 @@ -94030,7 +94390,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "67b311d1da535e57dc77de1f2d841422", + "key": "443cff9a97bbf8ab21a80f722e2f2a93", "notes": [], "params": { "forceDirect": true, @@ -94063,7 +94423,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "98d7a47340529d5a5d043d63eef05538", + "key": "b1dedcbe8142ea9a51ae785739d30bc1", "notes": [], "params": { "seconds": 0.5 @@ -94077,7 +94437,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1244f4ffd12456e93c46c74078c954c1", + "key": "d2584f2e934efb7de7bda63c1cda96e5", "notes": [], "params": { "correctionVolume": -28.959715380405036, @@ -94096,7 +94456,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed367a0ecc11c0a96e128e92f99dda37", + "key": "b5fec6bb716e1537ce741c83445bc424", "notes": [], "params": { "seconds": 0.2 @@ -94110,7 +94470,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cb82c0283f65e5a670f93337200c8a53", + "key": "b0073af96b6613282cf08ef6e2c688d8", "notes": [], "params": { "forceDirect": false, @@ -94142,7 +94502,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "13f281c55b743af78a0b8daa906a74c4", + "key": "7847930da60200c3b2421f13d27fd1bb", "notes": [], "params": { "correctionVolume": -28.911111111111115, @@ -94162,7 +94522,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02ebced4a014183813cfbb1acace4b38", + "key": "465e505835b084935b18631391c3468d", "notes": [], "params": { "seconds": 1.0 @@ -94176,7 +94536,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b88d768c5b2c4c18c4b2431edb06c6f1", + "key": "4d495af4b965fbbc0ead7b3380e15e2a", "notes": [], "params": { "forceDirect": true, @@ -94209,7 +94569,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7cd0bac2e78b2f16eccb54252eee114a", + "key": "88f82b2fc371d4a1e60c7dda3fdac9e5", "notes": [], "params": { "correctionVolume": 0.0, @@ -94229,7 +94589,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a36ee6857378c4683b8ae1c7263cc797", + "key": "c825c9dc3eb8ecfac17eaef060105547", "notes": [], "params": { "seconds": 1.0 @@ -94243,7 +94603,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "df1d82a343cc1667cada99f8613c948c", + "key": "affbf4fae2155fcd5f23704a2915e0ab", "notes": [], "params": { "forceDirect": true, @@ -94276,7 +94636,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ff6428617fa7b9580e30aa50908bcbe", + "key": "65b28027476d76e6a810b14821dc03f4", "notes": [], "params": { "seconds": 0.5 @@ -94290,7 +94650,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7ee9015fdab9566a5ef2172074a360b8", + "key": "bbdc613504560da64cd561396fff1bd4", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -94309,7 +94669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8eeca0981de40ac4a06719f51be8a76", + "key": "e6460ab61b86bec496735a09b880c978", "notes": [], "params": { "seconds": 0.2 @@ -94323,7 +94683,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cdd86de663de7fdcf812a241b4cd4796", + "key": "9012bcfbcfd76de51eaf7979862c7c6a", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -94352,7 +94712,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1eee468d4e03700493f52cf430ccb717", + "key": "528e45cac110a1fa89df8891c556737f", "notes": [], "params": { "homeAfter": false, @@ -94367,7 +94727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b2ad76c832ff80cb833c6faaa9ff2cc", + "key": "3e78cc595b864975e0a340a196342d88", "notes": [], "params": { "liquidClassRecord": { @@ -94730,7 +95090,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e812bcb7f3fdedc417f9941c6432150", + "key": "2b2984cf1d459a60c46d2102e60c53e2", "notes": [], "params": { "labwareIds": [ @@ -94752,7 +95112,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a352e26029906ea4ca2d7f5b06c592cb", + "key": "b29a289b23db0d4722f1807f432743ce", "notes": [], "params": { "labwareId": "UUID", @@ -94785,7 +95145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f1c7d9f9c5f73215dddbbc8ac26c773", + "key": "8d7f25e439d156f6010558c62c5559cc", "notes": [], "params": { "forceDirect": false, @@ -94817,7 +95177,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "320f1c0cc3d471eed760c6e77906be30", + "key": "9bd624a0cabaf879b5ad67aa00612964", "notes": [], "params": { "pipetteId": "UUID", @@ -94833,7 +95193,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "971e2f533d74e5b8deb01793b94ac550", + "key": "574630ee141277b773e44b2cb4a2dab5", "notes": [], "params": { "pipetteId": "UUID" @@ -94847,7 +95207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9125a5cf790452154edb6c7eb79219cb", + "key": "7b23f76c7b5fb1d1f8cd1ba8023841d4", "notes": [], "params": { "forceDirect": false, @@ -94879,7 +95239,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "729e5e2f4fa77abc6d22447f6ca211b1", + "key": "d04b758082c0568f51391a424f26a10c", "notes": [], "params": { "forceDirect": true, @@ -94912,7 +95272,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3584eee40b50f684dfb9bf4da931eef0", + "key": "1ad9f7b86fa4b580bf3e3cfd2fdf626a", "notes": [], "params": { "correctionVolume": 10.655555555555557, @@ -94931,7 +95291,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "757d8e0c218f6d3ba4d8cb8492381e00", + "key": "2b70cbe34b550df55265d76d08db4cfe", "notes": [], "params": { "seconds": 0.7 @@ -94945,7 +95305,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2884e0579f5f0d21c26466e9bf9231be", + "key": "beb3aace97d18f5dcb4410067850d6e5", "notes": [], "params": { "forceDirect": true, @@ -94978,7 +95338,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1187dd560207a5aeb37917b0c8e0bf98", + "key": "15fc912a99dd8377ac522791e914a531", "notes": [], "params": { "forceDirect": false, @@ -95010,7 +95370,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c3c692ef2e635bd8eee61d7659b52f8a", + "key": "4d97e3652cae27afaf9caf3bb6ee9f49", "notes": [], "params": { "forceDirect": true, @@ -95043,7 +95403,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9eb1d0562d93a9233920004d70b56624", + "key": "936164716af8c1cf5c4db2c2d01e5e49", "notes": [], "params": { "correctionVolume": 0.0, @@ -95063,7 +95423,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6bfb98674a3265f8f717902349b0e3e3", + "key": "447a7d83fe6b2047fc215f14d00630da", "notes": [], "params": { "seconds": 0.5 @@ -95077,7 +95437,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c40c0d8b169e8bc2ba50799f10bc82ba", + "key": "619a2b5b22721ad973e503d49755baf1", "notes": [], "params": { "forceDirect": true, @@ -95110,7 +95470,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2f1a8febe0312daf20c41ad5e41a0fc", + "key": "6500e2d1f6e89eb30f56951db0dc9be8", "notes": [], "params": { "pipetteId": "UUID" @@ -95124,7 +95484,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "865486afae7ccea109dc336c2a0e079e", + "key": "f36b4e66bc0e9eb4e5d48c7c66d6a017", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -95153,7 +95513,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b68ba82431ae4901d79c8b9104f63616", + "key": "f9a9d914811ba9b842bd1b3699be2744", "notes": [], "params": { "homeAfter": false, @@ -95168,7 +95528,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "261c6637b1ee9f9803a4801f8768f2f2", + "key": "f7cdc652cf0dec66f7fa86345cc6c213", "notes": [], "params": { "liquidClassRecord": { @@ -95503,7 +95863,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "789eaad3d06cde21e32d7ee74f4915a7", + "key": "85266a8b356d112e5c901214c4cbfdb0", "notes": [], "params": { "labwareIds": [ @@ -95525,7 +95885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "022aeab20994aee6e16f2b65252a2d71", + "key": "e0cd48831186e5d126164ae0dfb121bf", "notes": [], "params": { "labwareId": "UUID", @@ -95558,7 +95918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a4be93fd571cc453feb3217d7f47cf9", + "key": "ac175da105bea211cb1e596ad726af56", "notes": [], "params": { "forceDirect": false, @@ -95590,7 +95950,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c71df14932f722f074829ca104f7bc5c", + "key": "6bd39a33ff0f8a801b898ef59b027d09", "notes": [], "params": { "pipetteId": "UUID", @@ -95606,7 +95966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8fa3b0a96b584225242ee084e8e14088", + "key": "a2c54dfd273050d90bca92d866d4039d", "notes": [], "params": { "pipetteId": "UUID" @@ -95620,7 +95980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "535a79493124e9f69bc5a93a2631df2b", + "key": "b75b34364a39240e46d0fc57f0508db4", "notes": [], "params": { "forceDirect": false, @@ -95652,7 +96012,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e00d0ff0206d6422810e79a715e0a5ba", + "key": "22a6619ec17ac71d67af3e6b737abfa1", "notes": [], "params": { "forceDirect": true, @@ -95685,7 +96045,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fffbcf35dd89aca87fb146811d970c00", + "key": "a59b2fc7fc3359aa5321b82932997af3", "notes": [], "params": { "correctionVolume": 0.0, @@ -95704,7 +96064,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a57f7d4432ede58cf577039a8c061df8", + "key": "d12b9ab632c5050ce60224bd065d64f9", "notes": [], "params": { "seconds": 0.5 @@ -95718,7 +96078,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d94ab56e0b657162c7cdc7de8bc084de", + "key": "c63b80c721f57b4766fd3c973f41cc89", "notes": [], "params": { "forceDirect": true, @@ -95751,7 +96111,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "035537e0db23b9a49401c4d57662bc4e", + "key": "1c6b66d4e97a880a79d017281d88b274", "notes": [], "params": { "correctionVolume": 0.0, @@ -95770,7 +96130,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "614db3b5b04875097a3a6339709e498b", + "key": "4a28e0b6e2e3357a46e7604e7d63c932", "notes": [], "params": { "seconds": 0.5 @@ -95784,7 +96144,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "188715ca6e5bf072dd3b85936735ab1f", + "key": "24524839376fbeefd196bcb5f20bc6b7", "notes": [], "params": { "forceDirect": false, @@ -95816,7 +96176,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "165cf9d6c510e15da0ae2aa46ecd9812", + "key": "a20fa8dafc3119ac43561cc60c753809", "notes": [], "params": { "correctionVolume": 0.0, @@ -95836,7 +96196,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfbfa7b94088e3f170baa69ecf7e83fc", + "key": "d8a5a40e817848648570f16646e2dcc9", "notes": [], "params": { "forceDirect": true, @@ -95869,7 +96229,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb4e31e90e70df7bf358ea470214ca12", + "key": "7a648663df04453c93ef8ccfbe4f63ff", "notes": [], "params": { "correctionVolume": 0.0, @@ -95889,7 +96249,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac93205cf559bdafdfb852ba9ede0d52", + "key": "571163f470fd5f758c0b5d93e074f947", "notes": [], "params": { "forceDirect": true, @@ -95922,7 +96282,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b0813f0f861bb50816d4e939db7e622", + "key": "5a7381bd6ab313a7af9dcb4f405405e4", "notes": [], "params": { "pipetteId": "UUID" @@ -95936,7 +96296,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b49b839daa37ecaf84cb2cf1dcdb9d18", + "key": "e63b2d4d5091d5b3266e089412c63a4a", "notes": [], "params": { "correctionVolume": 0.0, @@ -95955,7 +96315,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "286a904ef44d2abfe0c962ed0289b846", + "key": "9634333d8aa17f8a28f011a230a430b0", "notes": [], "params": { "seconds": 0.5 @@ -95969,7 +96329,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94d75ae1f4155cb0e662bdd91add1877", + "key": "986cc663448074590d769680ed082020", "notes": [], "params": { "forceDirect": false, @@ -96001,7 +96361,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f8243fef5bc9c6aeb19fedc734e1b3b", + "key": "7040c43e91739abd2c31c35aba24ea29", "notes": [], "params": { "correctionVolume": 0.0, @@ -96021,7 +96381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "18b71d1b8da9e661e1e52c14de2ad41e", + "key": "c1bd38d5aab7d5bb45e1dc84f5845c4c", "notes": [], "params": { "pipetteId": "UUID", @@ -96037,7 +96397,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "97065e69b08c902610cfbd01946ff454", + "key": "9f7e8411966a4c1f8b2a62aa78c6dcc2", "notes": [], "params": { "pipetteId": "UUID" @@ -96051,7 +96411,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "92275cc27578ad4e81b2305ca06d5456", + "key": "6c6b4043fbf9f0b75c03340d0c21a5f3", "notes": [], "params": { "forceDirect": false, @@ -96083,7 +96443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c980c1da03b22221031d9db8de417c13", + "key": "822a2f2f32312a275d2b8d62614791ae", "notes": [], "params": { "forceDirect": true, @@ -96116,7 +96476,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6196e2a75eba0b46fd535f49c8b993fc", + "key": "3cd795d9b9e27ff5e061b3438fc0b359", "notes": [], "params": { "correctionVolume": 0.0, @@ -96135,7 +96495,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f33a661722f40952ee692b86a167d456", + "key": "4e861db387790943343b73c3e8450b3a", "notes": [], "params": { "seconds": 0.5 @@ -96149,7 +96509,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f20a3229383c7f08a4ab514ae1b3bfbd", + "key": "7102db99abea2e06186bc89e73c2e190", "notes": [], "params": { "forceDirect": true, @@ -96182,7 +96542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60aa28be84cbf650a5780ac54ecd2ece", + "key": "ee1a6122d079050d864369ce3823f848", "notes": [], "params": { "correctionVolume": 0.0, @@ -96201,7 +96561,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bd707cbc6e0cf454ceca823fcd7f123", + "key": "2c1863d5e9ab5d439d57c4ab8eb220df", "notes": [], "params": { "seconds": 0.5 @@ -96215,7 +96575,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6c54368692f2f870b63bb9f97e62e28", + "key": "20cb1efbac7470b01ffda4d426570bba", "notes": [], "params": { "forceDirect": false, @@ -96247,7 +96607,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0995b33e88ef36757f78e176acc85a5f", + "key": "7ffbb3bc8e9676bb0552e07ec39050e8", "notes": [], "params": { "correctionVolume": 0.0, @@ -96267,7 +96627,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5fa723eaf14f574cc08228bc9f940a1d", + "key": "60c9b9274ffb9319b64d51b7e55399fd", "notes": [], "params": { "forceDirect": true, @@ -96300,7 +96660,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96c0970f3a2a012b7ef6d8c79d5557e9", + "key": "8baa4e43c17c18e2b36d3de256353ee8", "notes": [], "params": { "correctionVolume": 0.0, @@ -96320,7 +96680,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0930a9032b4a3c6c9b90444ca0a91ea", + "key": "6f0508fa5a47d8d136d9e3ee443fd347", "notes": [], "params": { "forceDirect": true, @@ -96353,7 +96713,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "970f86a78ee991287b0161c379ad3c29", + "key": "07fb4f478f0cd116ef367963cfddb67a", "notes": [], "params": { "pipetteId": "UUID" @@ -96367,7 +96727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5c5061884eb4b576523221f6bbc3850", + "key": "7da9514fe44ab2337589d098014bc61f", "notes": [], "params": { "correctionVolume": 0.0, @@ -96386,7 +96746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6c69ca20ccb63ff7a8f7bd47e41a23a7", + "key": "a0af64dc69bb2c7e9022fce9c1871461", "notes": [], "params": { "seconds": 0.5 @@ -96400,7 +96760,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8007710921ab3bc72a05bd1df4634cf6", + "key": "e8d7fd08c1856c1867d6d6fb30daa961", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -96429,7 +96789,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d1fa062ded04b7e119cc9487bb19e83", + "key": "a315bdc85672732f36576b4e3bc9c7eb", "notes": [], "params": { "homeAfter": false, @@ -96444,7 +96804,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57f45918ac58b7e3677d8ead087961b8", + "key": "1c7863b790d6a5cd0a89939530d1c78f", "notes": [], "params": { "liquidClassRecord": { @@ -96839,7 +97199,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf167ccabe7fa3f67cbf37a5a884e3cb", + "key": "57b3e4d3ea02aaf00734d0d008499f5d", "notes": [], "params": { "labwareIds": [ @@ -96861,7 +97221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aaa452cce9372fdab39202a5cdc9e83f", + "key": "35c8f18db7081bf27ec94892db28be62", "notes": [], "params": { "labwareId": "UUID", @@ -96894,7 +97254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a362ed1e537eb04c70d71bb80e778bd", + "key": "7e05d6143c9314318183736c54363847", "notes": [], "params": { "forceDirect": false, @@ -96926,7 +97286,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f173946143b2cd8791d9c5bca958e9c", + "key": "b89198d4d91ed6da24dd23def7c03385", "notes": [], "params": { "pipetteId": "UUID", @@ -96942,7 +97302,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0f071901d5f141419b2f216605e32b2", + "key": "e421351a3543f9e4f207971a52ad5c6c", "notes": [], "params": { "pipetteId": "UUID" @@ -96956,7 +97316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a13ac791258931c01bf393896f2befc", + "key": "f30f2478b8b95d6f12f2359c1c2b46c4", "notes": [], "params": { "forceDirect": false, @@ -96988,7 +97348,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49e4888f709d27925e6c51c39e96b8ba", + "key": "284d1f55f6ab6eb8e9e9d5c55941d86d", "notes": [], "params": { "forceDirect": true, @@ -97021,7 +97381,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2f5d2fa623a54d7aa1730b4e67d7c19", + "key": "06332d2a0b3b8d8a783d7df510ed48a8", "notes": [], "params": { "correctionVolume": -25.622222222222224, @@ -97040,7 +97400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "12739cc256059c50b7a9d304f1e51be9", + "key": "c559dbf806125f80cd556b60cf464b02", "notes": [], "params": { "seconds": 0.2 @@ -97054,7 +97414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2489546c6c58bcc4499ccd2f3aecce7c", + "key": "71cf9a960aee7d11ebfd919dd011b69a", "notes": [], "params": { "forceDirect": true, @@ -97087,7 +97447,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d914ab4dfa36cc22791af96733c7c42", + "key": "3aa1359bb3549f07d45f9f58ab685d26", "notes": [], "params": { "seconds": 0.5 @@ -97101,7 +97461,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa924ad1c589ea618c864c65e3e3d153", + "key": "1d25783cee5a1a6831c765f2ac464d4a", "notes": [], "params": { "correctionVolume": -25.719430760810074, @@ -97120,7 +97480,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5e940d799f45aca1739d392d635610a", + "key": "67c0a6696acdf7ee8846040641cc650e", "notes": [], "params": { "seconds": 0.2 @@ -97134,7 +97494,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4284e04ce40dda69c41916452b34c544", + "key": "3b5e697f3514ac8512a7b7b759b973bc", "notes": [], "params": { "forceDirect": false, @@ -97166,7 +97526,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f98b03f2daa089bc21e7ee455fd14ce6", + "key": "d05d08c717fba23d941cfb3237199abf", "notes": [], "params": { "correctionVolume": -25.622222222222224, @@ -97186,7 +97546,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f7091ae6b72fab9b8795c47217f085f4", + "key": "050c9b89ce0aa7bc32a21beeaba0491f", "notes": [], "params": { "seconds": 1.0 @@ -97200,7 +97560,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4f7cc7d97a1f98161228420e2855ce59", + "key": "5c02b9b146e83012eb582edd24f4a22d", "notes": [], "params": { "forceDirect": true, @@ -97233,7 +97593,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d99415e94f065456c882b491192e742f", + "key": "bc7f2ebc19b0ac0842e4f5dc58f89dab", "notes": [], "params": { "correctionVolume": 0.0, @@ -97253,7 +97613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "283ec993225f44861dede16a7736766d", + "key": "d9868d3b621f3db9a215b40ac4dddb2b", "notes": [], "params": { "seconds": 1.0 @@ -97267,7 +97627,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "343832ee38b5e54f4ac644dee3324f18", + "key": "f5e016d1fe458ed49a61c0b7583516fa", "notes": [], "params": { "forceDirect": true, @@ -97300,7 +97660,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "618adc58d6d7c6708ffad6264f450b29", + "key": "c5c082a238231924f20d6d074d94dabe", "notes": [], "params": { "seconds": 0.5 @@ -97314,7 +97674,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0db33e245473eaed9093deb96992fd02", + "key": "6aab377f70ebe8ba499490d9fc1cdd07", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -97333,7 +97693,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bcf8c05ee6af9dd727578d9dbd9a02d", + "key": "ba4867e34c1660417d1f747c7beb3c6b", "notes": [], "params": { "seconds": 0.2 @@ -97347,7 +97707,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7e6772ed0c3fffe9b893466795f0ffb", + "key": "4f7bb078fbfdf9897175b196a958dfa6", "notes": [], "params": { "forceDirect": false, @@ -97379,7 +97739,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89a07c7e9f873840a00a5daefb5b19d8", + "key": "86fcd4478af2a7961d0b7766ac6eaac3", "notes": [], "params": { "correctionVolume": 0.0, @@ -97399,7 +97759,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf9f80d2df62c698882e5fa3a229fd9c", + "key": "363e8e656a11716331b55da17a8e0a7d", "notes": [], "params": { "seconds": 1.0 @@ -97413,7 +97773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c802e1055c6e0436ff77d03102fab095", + "key": "831fec1ceb1357f738b6759559d20f45", "notes": [], "params": { "pipetteId": "UUID", @@ -97429,7 +97789,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7e7aa845f5d8962444674c41a7bfa952", + "key": "d66c8326c1903910b134ccd6988b2eb7", "notes": [], "params": { "pipetteId": "UUID" @@ -97443,7 +97803,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c88880d7233aec820668615cbf1f32b", + "key": "0ce9511f7a174b2cd18790bb168c6021", "notes": [], "params": { "forceDirect": false, @@ -97475,7 +97835,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94741385470c54f752105dae9b17f13f", + "key": "8b5423e97cd4eb8c722b38930b372c72", "notes": [], "params": { "forceDirect": true, @@ -97508,7 +97868,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7ad461bcd1a771eb30c58761b5fb485", + "key": "60d1212b1989747c2eb18a8cfd7114e7", "notes": [], "params": { "correctionVolume": -25.622222222222224, @@ -97527,7 +97887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a3667b89185ec1b541327e7ec392b76", + "key": "ced9e8ce025b35bb7df18cc3e8bbf1f6", "notes": [], "params": { "seconds": 0.2 @@ -97541,7 +97901,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72013fd6fe75ee17fc39467509949329", + "key": "f02e9b4755f8356db487e938aeea5bd4", "notes": [], "params": { "forceDirect": true, @@ -97574,7 +97934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e04f24f7d402a5cc9b099751b64f8a72", + "key": "d3070961c30d8e3c2a27a80ad4a617d5", "notes": [], "params": { "seconds": 0.5 @@ -97588,7 +97948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1c9af43686a5bd0ead0436363f308b8", + "key": "9a6d344c9bf7f7c95441788a1ebb2810", "notes": [], "params": { "correctionVolume": -25.719430760810074, @@ -97607,7 +97967,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b62f2ea9c9255d3c63ff5b78442a53f2", + "key": "62fc3b609ce671e0997349f79dc2694e", "notes": [], "params": { "seconds": 0.2 @@ -97621,7 +97981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff9221593058eb2ae5d206b69d7e3f7d", + "key": "6d7ad4d155cf96d1ad9edd3c16e4c4f8", "notes": [], "params": { "forceDirect": false, @@ -97653,7 +98013,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a3604b3e6be7eb9cbb5a9f48c756284", + "key": "a87864ffa72b33a3b37d4b80ce91f29e", "notes": [], "params": { "correctionVolume": -25.622222222222224, @@ -97673,7 +98033,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd8a5f2534bc4b7b1a4d053fad6e9b32", + "key": "c0ba7bc0d8ecba04250717953a2de0cc", "notes": [], "params": { "seconds": 1.0 @@ -97687,7 +98047,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f4bd8cb8848f503404e853cd8398579", + "key": "f2508baf6ddaeba0d07d9288998b2926", "notes": [], "params": { "forceDirect": true, @@ -97720,7 +98080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc64e46a68e7f89ecf7a6a4bcc2b787b", + "key": "022cb4f51c3ea3507b4bc5ddb7491ffc", "notes": [], "params": { "correctionVolume": 0.0, @@ -97740,7 +98100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b29fbc7df8671f16ed63cfab61ead9e7", + "key": "0d2d0b471141f2ececaf97bc803f9cc6", "notes": [], "params": { "seconds": 1.0 @@ -97754,7 +98114,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a7a48d4e67ee62349b25470e348b9ce", + "key": "c93332790f9d9accce53862c708105e7", "notes": [], "params": { "forceDirect": true, @@ -97787,7 +98147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d0cb4ad90c948b97ffb8d93af2e7308", + "key": "9c0ffc1afe1106307284a253d9d856e8", "notes": [], "params": { "seconds": 0.5 @@ -97801,7 +98161,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8af128c88693dfa9e7f5c1653da0d9ed", + "key": "7a6b277e9f2703266e213ce300bbb7a7", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -97820,7 +98180,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bce33729f7cbb8f4e495901740398e88", + "key": "efb2605eef910b3de48231bd883c0a29", "notes": [], "params": { "seconds": 0.2 @@ -97834,7 +98194,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a65b40c99ff80a66a0f1bb9c1b5a794", + "key": "706880fa79c615cce1f667a89287a756", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -97863,7 +98223,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "00a152415d42f2f8d6a3a2feb5cb939d", + "key": "7e0f52be5e3482659067a1951ae992a4", "notes": [], "params": { "homeAfter": false, @@ -97878,7 +98238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6a54099f89aaa8d65a9866615cf580d", + "key": "ac3d6e121e4d3a6f41b29cb4a2b51046", "notes": [], "params": { "liquidClassRecord": { @@ -98241,7 +98601,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "984e0b2543ffb47c559a9a590f3f270e", + "key": "d6096608f49290fa4124ff69137516c3", "notes": [], "params": { "labwareIds": [ @@ -98263,7 +98623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "be53ba0f6e63172a11960540d1afd83f", + "key": "c7e5959e2ced34f8665edfc392a96f2a", "notes": [], "params": { "labwareId": "UUID", @@ -98296,7 +98656,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95d35817d2238b0f513e98edcc74188b", + "key": "af24d153d7c14a39c69dfb72d9f6ec60", "notes": [], "params": { "forceDirect": false, @@ -98328,7 +98688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f51a8243b0c1fa5974a38f7e786509cd", + "key": "07b5c168701f36e3016d1f3679aab873", "notes": [], "params": { "pipetteId": "UUID", @@ -98344,7 +98704,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd73f8c0681595d5bbf84e8ca1711c3e", + "key": "21d911fee083c1d9abf31c2ea365531c", "notes": [], "params": { "pipetteId": "UUID" @@ -98358,7 +98718,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22b00ee2aa348727f91e1996b9148361", + "key": "1de5cca07d56096fd7059c867733a989", "notes": [], "params": { "forceDirect": false, @@ -98390,7 +98750,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dd85cdbd9d61fc7bf4d2c8f9a4fede7", + "key": "4008f9778fbfb397df7ef837a255f157", "notes": [], "params": { "forceDirect": true, @@ -98423,7 +98783,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62254380c374fe3fc01bacddc8db076c", + "key": "3fd730eff43eae26b81c3b26787cfa46", "notes": [], "params": { "correctionVolume": 9.311111111111112, @@ -98442,7 +98802,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f529e7c33276ae3687d4bc1aed75a775", + "key": "b52b3191ad57406dd40129d497b94e86", "notes": [], "params": { "seconds": 0.7 @@ -98456,7 +98816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb2a51da5c87a5cdb248b2b8d497d9cb", + "key": "b527834d2e3e08f23af82e7747a9cb73", "notes": [], "params": { "forceDirect": true, @@ -98489,7 +98849,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7574dbbb9d517df7123034fa5fec555c", + "key": "5106f44b53f9b8b3941cd1b583101d3a", "notes": [], "params": { "forceDirect": false, @@ -98521,7 +98881,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89992c47a6cd0eb410aabfd2f58c5d60", + "key": "e0be03027f6bb648f00820df6d057614", "notes": [], "params": { "forceDirect": true, @@ -98554,7 +98914,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10ef2508d510c12ec17676e75657c491", + "key": "eb6d66dec852bdb726f0dd0a6d6c793a", "notes": [], "params": { "correctionVolume": 0.0, @@ -98574,7 +98934,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bca0ada56ae249d62da3d534aa3c3957", + "key": "b2b25ba6464669c48c613330fb9ebc26", "notes": [], "params": { "seconds": 0.5 @@ -98588,7 +98948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1e8494db9277fa9d45e5dc44fe155145", + "key": "8a3bdcf0acc43ad03701e9191d901b4a", "notes": [], "params": { "forceDirect": true, @@ -98621,7 +98981,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "931e37cd1e445a727dd600faa7786170", + "key": "660cc41bf6cfb24c5c096eb93639af2c", "notes": [], "params": { "pipetteId": "UUID" @@ -98635,7 +98995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d19c424bc0d1fe977a25bc185677c34", + "key": "ecca8037531ab3e310fb77853f53b81b", "notes": [], "params": { "forceDirect": false, @@ -98667,7 +99027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84dcb435eccd02a247d0e03d91c1acf7", + "key": "326a82f662b4a96f76c416ac3a11becb", "notes": [], "params": { "pipetteId": "UUID", @@ -98683,7 +99043,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba0a50aa4168b600b7a16c4869ba0ec2", + "key": "ca0832616252ba08263f06ec7cd1ee65", "notes": [], "params": { "pipetteId": "UUID" @@ -98697,7 +99057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfcdc78ae21c840553171c6b9418d8d6", + "key": "0f4215b8de75e2ab7419025606886fd8", "notes": [], "params": { "forceDirect": false, @@ -98729,7 +99089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d8cef45c535ada2f9aea7d7d7f7965d0", + "key": "0bb759b0ad8ee9c2028a2b4bc490a471", "notes": [], "params": { "forceDirect": true, @@ -98762,7 +99122,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "654d23b0a0394afbf8d572ef2072a88f", + "key": "eb0f01fa4897dde015973c49fcc647cc", "notes": [], "params": { "correctionVolume": 9.311111111111112, @@ -98781,7 +99141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6deaeefc94d1adbd934285b4cac068dd", + "key": "e7d7302d09e881d4c7d84dddbf06e529", "notes": [], "params": { "seconds": 0.7 @@ -98795,7 +99155,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "feb80168c22bde7474556f04a052abf0", + "key": "a0ddc5c9e55511f94cb3f2114ff2e386", "notes": [], "params": { "forceDirect": true, @@ -98828,7 +99188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "01d559312a331c3d4bb6ba0452e4efa6", + "key": "294e841428f019d9a9991ab13f21dae3", "notes": [], "params": { "forceDirect": false, @@ -98860,7 +99220,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1a98200b230a87a2cc88311527195fde", + "key": "46916d696eb247bf7bda10f4b86bc7db", "notes": [], "params": { "forceDirect": true, @@ -98893,7 +99253,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89e74bac3e97b028e30c1170e371ec79", + "key": "f7b3a15f9a0ee4cba93179832fa6ee22", "notes": [], "params": { "correctionVolume": 0.0, @@ -98913,7 +99273,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d7146c3011cbd5f70131cc3640f56e2", + "key": "4d80a055ca1e0d6dd5386bf7c678e684", "notes": [], "params": { "seconds": 0.5 @@ -98927,7 +99287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "111d3e4f94cf5cabebab021a8745e9d4", + "key": "f226bab4e5f7a3185c358f8056018443", "notes": [], "params": { "forceDirect": true, @@ -98960,7 +99320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba167ed49b673e505bce5ebc62be9684", + "key": "81e584692f9d62fc6ed9afd18c71ad44", "notes": [], "params": { "pipetteId": "UUID" @@ -98974,7 +99334,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6b733b541d08e9447a460f27227ec78", + "key": "5e26da7959d6a60d0c43ab8ccd53b94a", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -99003,7 +99363,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f793056b0ced1d8c5894142f627be4e", + "key": "9a60fe73d2e4ce86aa792c86acf8760b", "notes": [], "params": { "homeAfter": false, @@ -99018,7 +99378,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e168c44c673731886743da8ee4d22f6c", + "key": "1d4faf18f23b4822b78e5bc47788cdca", "notes": [], "params": { "liquidClassRecord": { @@ -99353,7 +99713,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b5e37bda4eab300271e0e80baaf5d30", + "key": "9cc95ead6673394b7f24615aabe2fca5", "notes": [], "params": { "labwareIds": [ @@ -99375,7 +99735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5108bf90e7389033f6adcb3c39e48a56", + "key": "e5a95abe57ebe2326938c84bbefd56fa", "notes": [], "params": { "labwareId": "UUID", @@ -99408,7 +99768,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "945fe46e85c098515e212f3170792fa3", + "key": "56875341794335be2fbbae264df4b9c7", "notes": [], "params": { "forceDirect": false, @@ -99440,7 +99800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dbb61caafa948792ae76e729303110d", + "key": "fe04679ecf50a2fa5661f2f9e8fd884c", "notes": [], "params": { "pipetteId": "UUID", @@ -99456,7 +99816,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "959b10be17e3f1334e49756e1e247215", + "key": "fe1561f5db512528f364b31a0faf1b3b", "notes": [], "params": { "pipetteId": "UUID" @@ -99470,7 +99830,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6a077ba2039b200c5a60e4446b98a3d3", + "key": "91b86d245d5a1c256a097bdfe57a833d", "notes": [], "params": { "forceDirect": false, @@ -99502,7 +99862,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0cc1931cc9b6e8b95e89e81603bddf2c", + "key": "f8f076caf0bd530f5e2024fde2872fe4", "notes": [], "params": { "forceDirect": true, @@ -99535,7 +99895,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c643377a7fd6c4be1bf4c859dfabc3ef", + "key": "78ee608e81382a2067d03f9f6b10cee7", "notes": [], "params": { "correctionVolume": 0.0, @@ -99554,7 +99914,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d14763672097bb8ede083926ee2bfc26", + "key": "dffdcba338abf0ee7b252465d896c225", "notes": [], "params": { "seconds": 0.5 @@ -99568,7 +99928,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2c9623261c5b504253b678fabdf35f8", + "key": "d0bf2d7d7d886df6d662aac3639f69d9", "notes": [], "params": { "forceDirect": true, @@ -99601,7 +99961,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd7c8e64e267a0a8bf2b7a2b04eaed9b", + "key": "ff5031c2af9eff09b9481b8822315ac8", "notes": [], "params": { "correctionVolume": 0.0, @@ -99620,7 +99980,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2696f271f0f66db7467eec68bfa23bfc", + "key": "711ad3d867bbd91192061e7fb11c174d", "notes": [], "params": { "seconds": 0.5 @@ -99634,7 +99994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "548f4d339d8fa86708f7bcfaebad5cd6", + "key": "2ac171449d0549d194432f15c969eb8e", "notes": [], "params": { "forceDirect": false, @@ -99666,7 +100026,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cbca8d27dee3f8069ccba98312156d51", + "key": "65d3b91be6c1103e3832166204a1343f", "notes": [], "params": { "correctionVolume": 0.0, @@ -99686,7 +100046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c8a0861d4d675f88209518156b60ccb", + "key": "239772bb1cad23f00c2f34bcf73ef281", "notes": [], "params": { "forceDirect": true, @@ -99719,7 +100079,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "779af04cf52c1d3f25a19081295ad828", + "key": "c27fd18254498ca2b5639263d31d63d5", "notes": [], "params": { "correctionVolume": 0.0, @@ -99739,7 +100099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe83e9100bcae3e9204ac021fe1b801c", + "key": "142a614da328e3f2b145376501069aae", "notes": [], "params": { "forceDirect": true, @@ -99772,7 +100132,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79eb29bc76c463112784493e1fb3c3a0", + "key": "b49faba9a51d36c910dc3dfee0fbc787", "notes": [], "params": { "pipetteId": "UUID" @@ -99786,7 +100146,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3ca262eb8bbc9ec6a0085b56136ba81", + "key": "7de4e96192948d183730817bfda52cd3", "notes": [], "params": { "correctionVolume": 0.0, @@ -99805,7 +100165,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e829baa60d1167998bbe4cf50207858", + "key": "5c9b319aef0983f692a645e31999722b", "notes": [], "params": { "seconds": 0.5 @@ -99819,7 +100179,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2aa73342de6151f810919fd63133f96", + "key": "c8788837bc85b54f6a45b09ca181a0dc", "notes": [], "params": { "forceDirect": false, @@ -99851,7 +100211,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "de33acbc993c3643f65e9f931af88449", + "key": "b6675710331d23c339df66114d017b64", "notes": [], "params": { "correctionVolume": 0.0, @@ -99871,7 +100231,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4c9553b7610745b6728cba09e6d49d7", + "key": "54336bababdc68d37e63466d67332345", "notes": [], "params": { "pipetteId": "UUID", @@ -99887,7 +100247,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f2ab871d94867befb1dd99fd202cd56", + "key": "e1f93645ddd71c7de833fe96c56e85d2", "notes": [], "params": { "pipetteId": "UUID" @@ -99901,7 +100261,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bbd2054f1bec46bd1e23253dee2cb7bc", + "key": "aada1cab735b063b11265e4f412093a2", "notes": [], "params": { "forceDirect": false, @@ -99933,7 +100293,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5fbea11b88c7761eb03aa8ea67fae103", + "key": "18c59dae37a3ba4aa041355c83ef00f7", "notes": [], "params": { "forceDirect": true, @@ -99966,7 +100326,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cc27aa0a8be834938380bcf763b9ad5b", + "key": "8652aef938819fa140b84a31a3bc73e4", "notes": [], "params": { "correctionVolume": 0.0, @@ -99985,7 +100345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d26c3b7e0672dd26eda2bfc1b96c46e5", + "key": "4d181734b5b8f16a2ca9d32e7aaabb9e", "notes": [], "params": { "seconds": 0.5 @@ -99999,7 +100359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dacff41bab2dbcf4026728e73a9adf77", + "key": "982e3c84444d7f15be3bd4d1cd551e33", "notes": [], "params": { "forceDirect": true, @@ -100032,7 +100392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf4a8ffaa8708d405a1f1c19162bd958", + "key": "f0faf2979388f338b616e111aa9a1350", "notes": [], "params": { "correctionVolume": 0.0, @@ -100051,7 +100411,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc580fae6821f64b231acf20c4ec55f4", + "key": "436bba4ae8653a073e08697cd5fc28b0", "notes": [], "params": { "seconds": 0.5 @@ -100065,7 +100425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6baa4501e8aec72f4a81059dc41782e1", + "key": "3bc383205d2d2edf06cd912c5fadaad9", "notes": [], "params": { "forceDirect": false, @@ -100097,7 +100457,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3c0eba54818cbac410f3af51728be93c", + "key": "01bc255dc4ee4833de5adfccbb789fa1", "notes": [], "params": { "correctionVolume": 0.0, @@ -100117,7 +100477,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad53d7b9cd85e0726914063e89a8ce59", + "key": "07d8f186e42427fdaffbcf4dcb66a07e", "notes": [], "params": { "forceDirect": true, @@ -100150,7 +100510,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba51e0508618ad8fd763c067028c7e5a", + "key": "829dfdc7c40ab5eda0b7ce7cfc405502", "notes": [], "params": { "correctionVolume": 0.0, @@ -100170,7 +100530,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7095f999ceb3693e296e45f97da3cced", + "key": "eb9f580e58fb88b682aa776b2755c1e0", "notes": [], "params": { "forceDirect": true, @@ -100203,7 +100563,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ee32ce8d528610267713f8a6640e9c43", + "key": "b9cabfc352ac0649dd4ba60da0a80203", "notes": [], "params": { "pipetteId": "UUID" @@ -100217,7 +100577,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "866c0f48c78145181aebc519930866ab", + "key": "0dfbe259894e9560d484dd75d703edbb", "notes": [], "params": { "correctionVolume": 0.0, @@ -100236,7 +100596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9b4d007f12608a5ed6903e148bc6792b", + "key": "ab4c02ce12118a263c411eca5524715c", "notes": [], "params": { "seconds": 0.5 @@ -100250,7 +100610,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2e9ea17b4e1abb18fa5a7c839049f69e", + "key": "3eb30a92ae039c727e17952a5d8b06e0", "notes": [], "params": { "forceDirect": false, @@ -100282,7 +100642,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07f2dcff33cf5cdaea1c7a40c5b8d669", + "key": "1646dd5d0da186a33f675ffefe8e56ec", "notes": [], "params": { "correctionVolume": 0.0, @@ -100302,7 +100662,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fbc96b6dae05c32448ac692c72cefb11", + "key": "314b3cb4cec1ca9bcda64d054bdd0ea3", "notes": [], "params": { "pipetteId": "UUID", @@ -100318,7 +100678,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba7a18351c0af570a9ca0f5c2dd9945b", + "key": "a88e00e6ca8186dd281ee5bae364be4e", "notes": [], "params": { "pipetteId": "UUID" @@ -100332,7 +100692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89fc5185dbd55a9d0c82cb1585e3090b", + "key": "0863174480397eaa19fbec43fb51ede3", "notes": [], "params": { "forceDirect": false, @@ -100364,7 +100724,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "effd86f6f92d708b21f74cb0ab9d3139", + "key": "392a88a9f5ffad40a5380f74728f635a", "notes": [], "params": { "forceDirect": true, @@ -100397,7 +100757,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "11d5ea2851e2f38dbcc89da38fd5f64e", + "key": "951dfc1f611405223d169ba0dafb86b9", "notes": [], "params": { "correctionVolume": 0.0, @@ -100416,7 +100776,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "06f0956eb7300fd8884713f1e49e2ced", + "key": "006e6930af508f31350a5ce9edb5689e", "notes": [], "params": { "seconds": 0.5 @@ -100430,7 +100790,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94a24ae7a049ec10dd050f99431e4e17", + "key": "ff063adb8840ba9e21bb072f056eac22", "notes": [], "params": { "forceDirect": true, @@ -100463,7 +100823,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30963edd623664ecc991c6108418cfcc", + "key": "fa58246e47838ef0b465f9c30183495e", "notes": [], "params": { "correctionVolume": 0.0, @@ -100482,7 +100842,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f2ed59332c1bf863f0f97e77170a120", + "key": "181c23fc65734e87475478a244a70087", "notes": [], "params": { "seconds": 0.5 @@ -100496,7 +100856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7401378178ce0ac04c6379ccaaa9312e", + "key": "44fefdca369be2d461ae0e2b41d579a7", "notes": [], "params": { "forceDirect": false, @@ -100528,7 +100888,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e73d7258e38b9a2b541dae5c2ee390a0", + "key": "026af13116aebcdc242b2cbb2f16edfb", "notes": [], "params": { "correctionVolume": 0.0, @@ -100548,7 +100908,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "062fbd78105287ea136cce2eb84eeba3", + "key": "ed4e7259e9c91e95751573e2654e7bf7", "notes": [], "params": { "forceDirect": true, @@ -100581,7 +100941,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d767085120978e36e8acb6a5b56c0098", + "key": "f59dc5d257e9525a4821b6e6b696ddd9", "notes": [], "params": { "correctionVolume": 0.0, @@ -100601,7 +100961,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f330e7ea3f8371b09455c4d1f4cf92cd", + "key": "6e34d6dc21cd6b9f9b8a927187114a61", "notes": [], "params": { "forceDirect": true, @@ -100634,7 +100994,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "349efd5a3b2713693dbd45e71541d403", + "key": "6098c7f75a620b1fb11c8a46784bb83b", "notes": [], "params": { "pipetteId": "UUID" @@ -100648,7 +101008,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "183bd895c04bf9f9d947ebeef6c1d974", + "key": "242efe0bc6f77b02c2e329d70da78a9b", "notes": [], "params": { "correctionVolume": 0.0, @@ -100667,7 +101027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2ffc00d4c1182b3c7d55821c954a2f90", + "key": "7e4a7eea274128f93e49100dd2030d2c", "notes": [], "params": { "seconds": 0.5 @@ -100681,7 +101041,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d0ddf6fe2f3c1ac02539a1c730a91190", + "key": "6d671b539a7aea2ff640401127865d70", "notes": [], "params": { "forceDirect": false, @@ -100713,7 +101073,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69e6fc32cdf77c9e4218e985c78c9143", + "key": "93cd868dddbc9eecbbcf97680c3c4a02", "notes": [], "params": { "correctionVolume": 0.0, @@ -100733,7 +101093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "03fdf7b70547ef59d9e7a97ea0f7a79b", + "key": "c05f442782cc462bdce5f5e79374a80e", "notes": [], "params": { "pipetteId": "UUID", @@ -100749,7 +101109,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "47d9a0b2bd316528b3efa7067aeb2a3a", + "key": "2a87a8076ed299679dd8c43871be392f", "notes": [], "params": { "pipetteId": "UUID" @@ -100763,7 +101123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c02fc02a8048683c89e3fd4314c9278b", + "key": "8d1a3207a887ce5aea7d96fea60cd805", "notes": [], "params": { "forceDirect": false, @@ -100795,7 +101155,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a790e979d9de727593ee7ff6242ea982", + "key": "abdb77dfc3739d1b86e0848d06b2d325", "notes": [], "params": { "forceDirect": true, @@ -100828,7 +101188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "290d449d4a929b948e9ccb293ada0d8d", + "key": "cde917f2c5d697f386dedbf5240f2c44", "notes": [], "params": { "correctionVolume": 0.0, @@ -100847,7 +101207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c710307162fe9ca9d72e973a45c31f87", + "key": "9ea7774e39077a33956b226d03207c7b", "notes": [], "params": { "seconds": 0.5 @@ -100861,7 +101221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "39b4d980bc604b0d948d1c4ce710cc85", + "key": "cfb82152633ff37c4f29fdbbc08fcc7d", "notes": [], "params": { "forceDirect": true, @@ -100894,7 +101254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "effbf716ef7ae303f0e5d31d82ba483d", + "key": "34e7f56e040a27466db46100024aa087", "notes": [], "params": { "correctionVolume": 0.0, @@ -100913,7 +101273,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c95095df79db2d286e04bf3a1c449f35", + "key": "d057dac324646bdaa25903dfa750e671", "notes": [], "params": { "seconds": 0.5 @@ -100927,7 +101287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "897d998de580c6c211e9d4d5e7854067", + "key": "f912bcfe67cd7308bf0faa3485f9f3ad", "notes": [], "params": { "forceDirect": false, @@ -100959,7 +101319,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e29fad049a5a0398af5c42690f7977ef", + "key": "79dd6401822fda1f6b94b958573bd1fb", "notes": [], "params": { "correctionVolume": 0.0, @@ -100979,7 +101339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "587f5d0cd820bd04333b52409fab99bf", + "key": "32e8286c1ad51be52443ddda01537b75", "notes": [], "params": { "forceDirect": true, @@ -101012,7 +101372,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af94a5141ca95d3ec8397edee423b63a", + "key": "7eb5b4a7758c8182b29f5b73ecaa936f", "notes": [], "params": { "correctionVolume": 0.0, @@ -101032,7 +101392,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9a8725aa704a59a74385da4825ed391f", + "key": "cfafeb6e7ddc4653aeb5e0c3807b7816", "notes": [], "params": { "forceDirect": true, @@ -101065,7 +101425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8237d9ea5e0329124782ecf7e933de11", + "key": "ba113682e5131abb3c614ba31236c978", "notes": [], "params": { "pipetteId": "UUID" @@ -101079,7 +101439,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ef5ba663394450f6824c18a6f8dede79", + "key": "a7936f8696e8db2a579ecb9424a8625e", "notes": [], "params": { "correctionVolume": 0.0, @@ -101098,7 +101458,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f5f3c45f28ea1cdd22b53e08b85f5eb", + "key": "0615e0043819c4ee8f00d2b944f93102", "notes": [], "params": { "seconds": 0.5 @@ -101112,7 +101472,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "429e5a3613552c0108eb2ac60991d7fd", + "key": "f730f8d0984b97959c1313ff25ee67d4", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -101141,7 +101501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e3fcbb84be8c4e9763066e0d6c5caf01", + "key": "25bce95c1024530d895c74b154aec7b1", "notes": [], "params": { "homeAfter": false, @@ -101156,7 +101516,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ea84a3b4141a6d7145a1ca6d0e9041aa", + "key": "da8fb1546fea35050a05446efc0d6cb8", "notes": [], "params": { "liquidClassRecord": { @@ -101551,7 +101911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0340878a0005dab777f701cd9cfb246", + "key": "6978d0fc1530045a1f678b85161892f1", "notes": [], "params": { "labwareIds": [ @@ -101573,7 +101933,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c49fcd157707d58cf8c042a4d95e7915", + "key": "4da6bd3355caa77015a3482864502d22", "notes": [], "params": { "labwareId": "UUID", @@ -101606,7 +101966,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "00891779aa496abd28538e8780cd4365", + "key": "4ab9c5f5b4f33315e05bace87a050bd0", "notes": [], "params": { "forceDirect": false, @@ -101638,7 +101998,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9fe9d102df0a88b76877b2cf0918ad9", + "key": "5556c5958a7cd879ed99a45f1bbb8da9", "notes": [], "params": { "pipetteId": "UUID", @@ -101654,7 +102014,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4fad6e2233f5023aca4d70ed7330fad", + "key": "dbd935055bd108d56a1ab74e05926e43", "notes": [], "params": { "pipetteId": "UUID" @@ -101668,7 +102028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e618ceff6e1e97df3dfdf68f010a6515", + "key": "6ffe3c780aad7241b34215aac7247e4a", "notes": [], "params": { "forceDirect": false, @@ -101700,7 +102060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8646c6e45b78e177a6c86c8d3ffba929", + "key": "ebeff53c9b6b78844213af03d3349084", "notes": [], "params": { "forceDirect": true, @@ -101733,7 +102093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c63b53588dedfd0a41ce47999fa8d60", + "key": "afc36eecdcdf23fbc31e318ee76de994", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -101752,7 +102112,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9ab2f737e250c63730d6ef017fc7c142", + "key": "e89e9a7dbb13929aa2c753c661c6fdf8", "notes": [], "params": { "seconds": 0.2 @@ -101766,7 +102126,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8616527a8aa30bcba49d7e68f4b6ceb", + "key": "caf87c177a49bd72465d0b931fe4a237", "notes": [], "params": { "forceDirect": true, @@ -101799,7 +102159,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d334b9431dd15241b011062c32fff2d", + "key": "49da4669451d1f55b8c94d2efc25077e", "notes": [], "params": { "seconds": 0.5 @@ -101813,7 +102173,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af3c31682cd85fb722d00909283841e6", + "key": "f15365ccb3bd7352844da9f389f7bc2b", "notes": [], "params": { "correctionVolume": -20.859003831417628, @@ -101832,7 +102192,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44278818c195a0c318b278db8303a10a", + "key": "5644dff2bbce735c771375315a2ee69c", "notes": [], "params": { "seconds": 0.2 @@ -101846,7 +102206,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6fb4f9d1ad28da9bf5c0ffb6a398eb6a", + "key": "5c485b481db7d9fb02cc1c5a8072b334", "notes": [], "params": { "forceDirect": false, @@ -101878,7 +102238,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "50969bd761bda1286f11009798e8d634", + "key": "1c34b761936a9a183a80351f5873bae2", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -101898,7 +102258,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2c224abc2e88b4080e24900b4c4ef9f", + "key": "30be47f118a38078e4e1e0496db85bc0", "notes": [], "params": { "seconds": 1.0 @@ -101912,7 +102272,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e9b13968ad9431199da39d0bf7f2985f", + "key": "b83045ae1fb790de303d6815fed51a34", "notes": [], "params": { "forceDirect": true, @@ -101945,7 +102305,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "53b2eda4b0f6238bf057d0cbeeba1fc5", + "key": "65f5ffc82133d8e6e327d25ef1c9f895", "notes": [], "params": { "correctionVolume": 0.0, @@ -101965,7 +102325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "747b9d5069078999d6813b7e092a0273", + "key": "c749bf27d896d67a4d70006561a40ad3", "notes": [], "params": { "seconds": 1.0 @@ -101979,7 +102339,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2baa293401c1872b9d75341338724a67", + "key": "1d0d8621bc2066f4b12c99ecbf6e823c", "notes": [], "params": { "forceDirect": true, @@ -102012,7 +102372,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "28fac6022706893179e8e7ab7a6c6a23", + "key": "f8f8be84c62798e53ea874d4156887be", "notes": [], "params": { "seconds": 0.5 @@ -102026,7 +102386,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f2585a1fb318ae717baa6381f7dd34d", + "key": "921bcd26167cc61abb9b6a04dd31c659", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -102045,7 +102405,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "af7185441bf5e1c2ed266a548d11fffc", + "key": "21331d3d7814e94582a0f21b88b5635e", "notes": [], "params": { "seconds": 0.2 @@ -102059,7 +102419,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c270da59d4de66d2364fbcf608c7f5c2", + "key": "f3ed992ac34e7762dedb9a85ed031d94", "notes": [], "params": { "forceDirect": false, @@ -102091,7 +102451,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "12b99a6caf47dd2e9557d6431cedaf84", + "key": "ea0e55395c911f58a470833c29ba38db", "notes": [], "params": { "correctionVolume": 0.0, @@ -102111,7 +102471,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d355ce84b2c6e5044bd8709ce7df00c", + "key": "90ee944e66376aebf19ad0765bca61ca", "notes": [], "params": { "seconds": 1.0 @@ -102125,7 +102485,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "541214e4cdcc4228395dc7729a502bac", + "key": "714583589e176f7efa8408085d699186", "notes": [], "params": { "pipetteId": "UUID", @@ -102141,7 +102501,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96d21ca000daf2578c0f9e49582eff92", + "key": "77476c4a79e998ca5ce454387f14663b", "notes": [], "params": { "pipetteId": "UUID" @@ -102155,7 +102515,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c2041666946c9094d4cc0e28fee8956", + "key": "19229af33154311e8f9e6b9719dd9641", "notes": [], "params": { "forceDirect": false, @@ -102187,7 +102547,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "788dce63c5cb70208af38d3c2db23041", + "key": "1a28be8556db70357997fa4744555fbd", "notes": [], "params": { "forceDirect": true, @@ -102220,7 +102580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70577e499ba8fd2c2cafc33f46fcdceb", + "key": "7504b4932c23f112d5dd70aa1ee18455", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -102239,7 +102599,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc1e2e98c85140ba9055ddfe4a9972c2", + "key": "412abb06d69fdc16b5e44950c89615f7", "notes": [], "params": { "seconds": 0.2 @@ -102253,7 +102613,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5bb52a19458ad3acc001fa4c383214e", + "key": "29d6d9753909bb656514d91bac5bfc58", "notes": [], "params": { "forceDirect": true, @@ -102286,7 +102646,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86305cf27890ac49c4be364f65af9d10", + "key": "5cf244c4cd88beb2f4f6041512a9f26f", "notes": [], "params": { "seconds": 0.5 @@ -102300,7 +102660,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b6d14c2276806eaf4aec43a8638caf9f", + "key": "7ea1b1380eac7d7196ebc9c28ff7d029", "notes": [], "params": { "correctionVolume": -20.859003831417628, @@ -102319,7 +102679,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5c7bec5debeda2bc2c80ecdf63931e5a", + "key": "8995de66f4207743e9dd4166a97074ba", "notes": [], "params": { "seconds": 0.2 @@ -102333,7 +102693,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "69ce8a55963af78da43eefef33c9910e", + "key": "1fe333457dea7b4f0a0f94519d27721a", "notes": [], "params": { "forceDirect": false, @@ -102365,7 +102725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8f05ef74e2acecceefdac33dd6f79de8", + "key": "0a249b2ca90491713174542b84b122c1", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -102385,7 +102745,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a85ce42b420ab0eabd85e30e9df23697", + "key": "d244cec07550c8eb18bf6a2c236b5869", "notes": [], "params": { "seconds": 1.0 @@ -102399,7 +102759,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3fa9116e40c4226f8d47d82ac4030daf", + "key": "4ab2f48a5a763dab0ccae91dfd011c37", "notes": [], "params": { "forceDirect": true, @@ -102432,7 +102792,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79470453806fee8900dfaf86974815ab", + "key": "222350bae60695ce6ef6f52a450e2109", "notes": [], "params": { "correctionVolume": 0.0, @@ -102452,7 +102812,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8a3230a2404f08fff7805e7518b0d44", + "key": "b109115a4f1aae3101fe1a9069c9ed1f", "notes": [], "params": { "seconds": 1.0 @@ -102466,7 +102826,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "972d03550b9ac08c3d0b53cf2649530b", + "key": "d6d25b356f8060da4cc082916a0b53dd", "notes": [], "params": { "forceDirect": true, @@ -102499,7 +102859,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc26283722ce7d418d357d61a133b61d", + "key": "69a5033c4194635cf7c552af665680c7", "notes": [], "params": { "seconds": 0.5 @@ -102513,7 +102873,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d9d150a9eccaf87adaa71348750dc44", + "key": "b94468b0b83d81164508745eeaaca017", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -102532,7 +102892,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "62e9abb931206e9f10bdea3cd50b3780", + "key": "7a3a15b824a6dc1f7aad8ca41ba7e4e0", "notes": [], "params": { "seconds": 0.2 @@ -102546,7 +102906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2beee58fed4206a7230356bbebbf51a", + "key": "b5ef76a25737c6e0c7082616c46f1d40", "notes": [], "params": { "forceDirect": false, @@ -102578,7 +102938,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57336a535c69e95caee41215c7c9cf3c", + "key": "88e7dbb54e8835f4870a0c26621b2f89", "notes": [], "params": { "correctionVolume": 0.0, @@ -102598,7 +102958,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "460965109e78b45a84fe16926fae49f1", + "key": "8336da33682045604e155ff65ba26e36", "notes": [], "params": { "seconds": 1.0 @@ -102612,7 +102972,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aac2c2aca10b2569039187cb26eb6acb", + "key": "e48324cc260f8ea49953a49dd5455db7", "notes": [], "params": { "pipetteId": "UUID", @@ -102628,7 +102988,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cececcc46831bbe387b25db9ab2b6bd4", + "key": "c5afce8b04af85c860edc2f904bbaca8", "notes": [], "params": { "pipetteId": "UUID" @@ -102642,7 +103002,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fad7c978e1123578ba0f426371d07472", + "key": "a1d66a9260aad903f9db39a54013025d", "notes": [], "params": { "forceDirect": false, @@ -102674,7 +103034,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "851f3c4ab9f5dfc5e268c089c842b924", + "key": "30946fd9d52fc1db4bc6a05de6aee458", "notes": [], "params": { "forceDirect": true, @@ -102707,7 +103067,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4bb91b43d4c9f342ca22d15c37ff5d0", + "key": "99f492c8160c1e724588adc854996274", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -102726,7 +103086,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "96276ac2f91fb9e476b4b524dd03c35c", + "key": "8588aaafdef1cdc3d23578a51f594a35", "notes": [], "params": { "seconds": 0.2 @@ -102740,7 +103100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02cf488bf1a8dec8645ff3e1363851ec", + "key": "e8bdd45ba0ef8b3a563715a534e3c69a", "notes": [], "params": { "forceDirect": true, @@ -102773,7 +103133,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a7d769c7346926ee0bb0192fa80d210", + "key": "e85f2653fc967cf3cbe0da11dca9ddc1", "notes": [], "params": { "seconds": 0.5 @@ -102787,7 +103147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9474108246660e56b504bee508faffee", + "key": "679479fc1c37f3a20f4a451733a8c966", "notes": [], "params": { "correctionVolume": -20.859003831417628, @@ -102806,7 +103166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cff5d2d2172de2d3268eca8f4842fb70", + "key": "52213a89337b25d2692410f23a159d7a", "notes": [], "params": { "seconds": 0.2 @@ -102820,7 +103180,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6f47ff0e897825deb4c1c4831a394199", + "key": "bdc32d37c4a61ba7969355930a870172", "notes": [], "params": { "forceDirect": false, @@ -102852,7 +103212,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2e389954dab914ef213f38d6b38a4af", + "key": "4e54c3bdc67a841e151fd666768d023b", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -102872,7 +103232,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0c2dcd31e3ace638da5f8ceba4a6601", + "key": "584ac55aa922a8332d30b015759f8c74", "notes": [], "params": { "seconds": 1.0 @@ -102886,7 +103246,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9f6fd08bae766f5a7d2ac84590f9a6c5", + "key": "c6746d0461cc13437f9ba1de449715db", "notes": [], "params": { "forceDirect": true, @@ -102919,7 +103279,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10f2c9e71eff642b93aa03b14ecc30bb", + "key": "55e629545bd025d58c29a6cf424a7825", "notes": [], "params": { "correctionVolume": 0.0, @@ -102939,7 +103299,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e12ac75d4d9231154d108019a2fc9d0f", + "key": "4848f7f61f71747b16ae9404eef0a8b5", "notes": [], "params": { "seconds": 1.0 @@ -102953,7 +103313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fd5c6dc409613d79831453db690f342f", + "key": "5152d83aae45196a6317633887da18c7", "notes": [], "params": { "forceDirect": true, @@ -102986,7 +103346,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "09793325888a623c9333608d0dfdc8d7", + "key": "6d63180e7f107296f508fb0d30c76661", "notes": [], "params": { "seconds": 0.5 @@ -103000,7 +103360,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "49dab69436395b9d759c240a546d63c0", + "key": "5102a696616ec555e34f5a91f42aa574", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -103019,7 +103379,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "81320e4343ee9cdd0ac75da5bc49d3d1", + "key": "024310ec1bdc3aa5962a506de42d60d7", "notes": [], "params": { "seconds": 0.2 @@ -103033,7 +103393,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dbe97fc19a98cc79b34361a385d1299b", + "key": "e30dbd414eb898d1220e673d299d4716", "notes": [], "params": { "forceDirect": false, @@ -103065,7 +103425,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c52762224ab2dc2a73b1190ece74400", + "key": "e3881573962d6f01043452cdfd8b2304", "notes": [], "params": { "correctionVolume": 0.0, @@ -103085,7 +103445,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "550c973646da7cbc32eed5a3e432c683", + "key": "f8960d2c8da07918bdcf48fee87f85e5", "notes": [], "params": { "seconds": 1.0 @@ -103099,7 +103459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9148d9ccb7e0d4f07058d65d142c48cb", + "key": "5b016fe89acec707b8523e2fe5f300c6", "notes": [], "params": { "pipetteId": "UUID", @@ -103115,7 +103475,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb48b7ad3e6c118897e83f0bfe6c9451", + "key": "9f411c497a66453745f721c4d4b5982c", "notes": [], "params": { "pipetteId": "UUID" @@ -103129,7 +103489,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a73f2e2fee48282dc3d616ad2714105", + "key": "fe9ab2b7f266aea1375ad7e0209bfe17", "notes": [], "params": { "forceDirect": false, @@ -103161,7 +103521,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6d613ce2a67948f86b7c14e7a3d1d98c", + "key": "6b1966dcbc10deaa3bfef389d66a96d0", "notes": [], "params": { "forceDirect": true, @@ -103194,7 +103554,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5dc2ef57ed60219483559e6231a9ccb2", + "key": "503d2b86e5a352fa1ffe99101618a9b1", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -103213,7 +103573,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f380c900bae85c0d6c7b5dd5e2a206e0", + "key": "a616048252287c0221b56d40cd58b197", "notes": [], "params": { "seconds": 0.2 @@ -103227,7 +103587,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32a492c873736a26984fb4469555388c", + "key": "33682d46b7028ace9028d946d95c22ef", "notes": [], "params": { "forceDirect": true, @@ -103260,7 +103620,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16b2c9577d80178b0ea12fc4d4d8ba10", + "key": "eb7305e8a657b98e1924e3f4ca72ae12", "notes": [], "params": { "seconds": 0.5 @@ -103274,7 +103634,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3d5825469fd5c4cb8f44c49ecf66e900", + "key": "ff4700e96613fe8685ca4ae54f0cde4f", "notes": [], "params": { "correctionVolume": -20.859003831417628, @@ -103293,7 +103653,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eee5484bf8d1f930865f8c5ceab4decf", + "key": "356a5d45fdb9866d5714aa29a85b5d65", "notes": [], "params": { "seconds": 0.2 @@ -103307,7 +103667,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b4247429b24171f408217c617ca2e85", + "key": "0190a03ab76c857aaac39fec16ec08e3", "notes": [], "params": { "forceDirect": false, @@ -103339,7 +103699,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fc5b51641bb68d1a75f9fafaf181c14f", + "key": "8d011ff489b0bd1d23ea83a1e85f2a60", "notes": [], "params": { "correctionVolume": -20.68888888888889, @@ -103359,7 +103719,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3a089a188fc42e9479e3152f2508783", + "key": "fd743dbb4134ab5507e9839c45f08865", "notes": [], "params": { "seconds": 1.0 @@ -103373,7 +103733,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9dddf0c7f0f027657b4120763ded114f", + "key": "a5eca75431a9cb1f9813935b13cc3ceb", "notes": [], "params": { "forceDirect": true, @@ -103406,7 +103766,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e58fa88cd1104d99efe4ce16a09e3c8d", + "key": "90a498493b1bb1f698f6ebe2bab50f01", "notes": [], "params": { "correctionVolume": 0.0, @@ -103426,7 +103786,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a772570b7eefedd7f0490db202440857", + "key": "c2a69706d54497abea46c0e83648785e", "notes": [], "params": { "seconds": 1.0 @@ -103440,7 +103800,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa9dbabd57482e543a40230b0e708cb4", + "key": "0cf9622ec651d2c06b155694ffc31fa5", "notes": [], "params": { "forceDirect": true, @@ -103473,7 +103833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7bf156791543f26f3b0f68455b37ad7a", + "key": "4632a6e72bb6901704e3affbc562ef10", "notes": [], "params": { "seconds": 0.5 @@ -103487,7 +103847,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "622ac0b1561548410f88ab7cb8da93b8", + "key": "9502ec211256d6922c715ac38e0bc748", "notes": [], "params": { "correctionVolume": -0.9377777777777778, @@ -103506,7 +103866,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84fc2ea2fb6068be04855776cbc00f80", + "key": "e33a2ac8cad1af139d7e027234f51cc5", "notes": [], "params": { "seconds": 0.2 @@ -103520,7 +103880,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e926272cca17ff8841d7e99d0d8bc5c", + "key": "ef39ae4b6ee05f66d811569dfaa1ee9e", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -103549,7 +103909,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c798e9f466746e49054be24ec5d2f981", + "key": "3237bd26dbfe44e589820e1b3399d0bc", "notes": [], "params": { "homeAfter": false, @@ -103564,7 +103924,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "914c754c02ea05190ccaa6a33acaf198", + "key": "81e677da200006c7df1f4dd654984b42", "notes": [], "params": { "liquidClassRecord": { @@ -103927,7 +104287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bf8cce32a9d77c7ab299ddbfa77a1640", + "key": "a8318ee15d9f0f6029d3e4ddb3fc446a", "notes": [], "params": { "labwareIds": [ @@ -103949,7 +104309,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "35493465b22bedb7c85b4a52088658b3", + "key": "12b2e5c2e384d016e69e9092df24393e", "notes": [], "params": { "labwareId": "UUID", @@ -103982,7 +104342,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8c621de03b80d83052c355adc300507b", + "key": "607acd29bd6d33759dc7c1f3357dc54e", "notes": [], "params": { "forceDirect": false, @@ -104014,7 +104374,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "456124a6f7c81c0f21728b249fcb8acd", + "key": "679da3c55dc670ecda8d1f01e237fc27", "notes": [], "params": { "pipetteId": "UUID", @@ -104030,7 +104390,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c0f28acf46031cfee2ba5d6ad476954", + "key": "8bd5492c1f36a8a670cf1b0d4b9ff0af", "notes": [], "params": { "pipetteId": "UUID" @@ -104044,7 +104404,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a7b0efc4f0096c057c008911d0199f9", + "key": "95861fa608092cb20a2bce930ad5ad30", "notes": [], "params": { "forceDirect": false, @@ -104076,7 +104436,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b0cd413693db2583c38ac1fbfad753a7", + "key": "16d3b21d31689aa1c109e13b93a80a00", "notes": [], "params": { "forceDirect": true, @@ -104109,7 +104469,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "29c2866731a3168109f219ced2ef183f", + "key": "955b4abe8a853883aecbd8897eb86d30", "notes": [], "params": { "correctionVolume": 7.294444444444445, @@ -104128,7 +104488,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8c79526c689646ab0bf9563e0fd3ad0", + "key": "07925e54fe00e56510bda55cd657e520", "notes": [], "params": { "seconds": 0.7 @@ -104142,7 +104502,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "da2cb39f1b555079fed26c6a5686773e", + "key": "aa964e1611cc964f48f09eff4299fa79", "notes": [], "params": { "forceDirect": true, @@ -104175,7 +104535,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4dcf42c25f4d6260e75f85679e18f328", + "key": "bbf6e83b732ab302435efd12ebe4af40", "notes": [], "params": { "forceDirect": false, @@ -104207,7 +104567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "60f4d3514d95a48df428a4588e366bb6", + "key": "0340a18f5dce47e3e1e772c89f107bc2", "notes": [], "params": { "forceDirect": true, @@ -104240,7 +104600,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7540db231522a38b0517ff35e8a86fe3", + "key": "d39d5ad4af19f91513dd1f5db04e6c00", "notes": [], "params": { "correctionVolume": 0.0, @@ -104260,7 +104620,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "790c059d7a95d4f51a25ae0ddaca0834", + "key": "327b58ff822f402f505e148fe0f90321", "notes": [], "params": { "seconds": 0.5 @@ -104274,7 +104634,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6caa86d6d44d4f3a798501a86c0b3195", + "key": "fb244367df7a7225622682fc4b410348", "notes": [], "params": { "forceDirect": true, @@ -104307,7 +104667,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8df0a575bab47f20791ef8093c19dc14", + "key": "4f66699f3eba91c16a2696c80a62e945", "notes": [], "params": { "pipetteId": "UUID" @@ -104321,7 +104681,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "081503e3f9f6705a1ad1ece72a6cc2bb", + "key": "7b76a728b4c46b3d03ab7fea8055f827", "notes": [], "params": { "forceDirect": false, @@ -104353,7 +104713,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a0eb54a59e6e16ecd97a581d4f44a82a", + "key": "0cb62883806112b8e4f30abfebe9d630", "notes": [], "params": { "pipetteId": "UUID", @@ -104369,7 +104729,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e08555cee2f4ebbdc9b177a2a1c58b78", + "key": "02a729c502112fc3148c2e49c5ca540d", "notes": [], "params": { "pipetteId": "UUID" @@ -104383,7 +104743,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "08e774d34e1bb602d696f504fba91750", + "key": "2d704fdf797bd97231c857c066cac17e", "notes": [], "params": { "forceDirect": false, @@ -104415,7 +104775,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0b19296c35ac0cb5d29c3af976252d1e", + "key": "858755276e23ac74ded5b35f680e4b70", "notes": [], "params": { "forceDirect": true, @@ -104448,7 +104808,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d411ad4ee9824578f19c65b649423e97", + "key": "1d9a94618169230299d1f0948aaf01d7", "notes": [], "params": { "correctionVolume": 7.294444444444445, @@ -104467,7 +104827,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2de0118e4d9ecb5e624b33ae119c6a9e", + "key": "6d71c7e01f924037fd10631bb05a5bb4", "notes": [], "params": { "seconds": 0.7 @@ -104481,7 +104841,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d54d0854db6235728066f29ffa772c40", + "key": "b9963e1ac15805ee48f7369031675ac2", "notes": [], "params": { "forceDirect": true, @@ -104514,7 +104874,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f973a63835912008c5ed1ba3e424f29", + "key": "b0ea1de2bdad417a550a380c5735ad2b", "notes": [], "params": { "forceDirect": false, @@ -104546,7 +104906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2def80516b732095b8efbb4ae0ac9a96", + "key": "f62a67ccd2132a1707f479c9259e7397", "notes": [], "params": { "forceDirect": true, @@ -104579,7 +104939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b8663f7acc7d0ad7aa8aad70084e1a1", + "key": "388c1d8e52d85897480a9b61a1f5389b", "notes": [], "params": { "correctionVolume": 0.0, @@ -104599,7 +104959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e72a7ea7231266b845820649f8eeb99f", + "key": "13d55d0e0f00bba232959972000e8cb9", "notes": [], "params": { "seconds": 0.5 @@ -104613,7 +104973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ad86b946bc663758f1044d28a386a0b1", + "key": "dd997ce59cd0b60b3841b00c166ed548", "notes": [], "params": { "forceDirect": true, @@ -104646,7 +105006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9bd5abb48c0cf69ca9c88cea653bd3ad", + "key": "244047c55c02d8debc43221f72088ae7", "notes": [], "params": { "pipetteId": "UUID" @@ -104660,7 +105020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3bcd68a67dff235a3cfbd699d063fafe", + "key": "1eca2398eeca2f3158f6e91a30a1c6b2", "notes": [], "params": { "forceDirect": false, @@ -104692,7 +105052,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b0644ef866a102940ee8e13aa406529", + "key": "c0e4a668c1508be2ac6980306262563d", "notes": [], "params": { "pipetteId": "UUID", @@ -104708,7 +105068,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "33c6e9aa3862c88cc5bd111afe7360db", + "key": "0d690f52120f5efc84a4fc268933c5cd", "notes": [], "params": { "pipetteId": "UUID" @@ -104722,7 +105082,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d41a7d8dcc2e8b6a797122a03deee470", + "key": "17c50cc0558d9252873053e25e3d1335", "notes": [], "params": { "forceDirect": false, @@ -104754,7 +105114,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e392c5e7f63371f904728d6b893d2707", + "key": "d80fde007fe0642f8feccc8313b4ce3c", "notes": [], "params": { "forceDirect": true, @@ -104787,7 +105147,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffbf6a15b2f8bef494891287eda2b14a", + "key": "f83c7fa148c7ab73ba1264e9b3d51d8a", "notes": [], "params": { "correctionVolume": 7.294444444444445, @@ -104806,7 +105166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c32c5baa62996f5783815460d21e65f6", + "key": "aba5cc18b1481206be9ece2ae1bea662", "notes": [], "params": { "seconds": 0.7 @@ -104820,7 +105180,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff684b84ff5991984349e7893845891d", + "key": "7942ae2c6abd66baef9c4ed4ef7da396", "notes": [], "params": { "forceDirect": true, @@ -104853,7 +105213,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27551564c14fe679285fcbbbb2a207f1", + "key": "8d77b8e111923b1b7f605f321f17dfdf", "notes": [], "params": { "forceDirect": false, @@ -104885,7 +105245,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1b331334b4d8f2e22c28570b67b346a", + "key": "a59e24204316729c5c78f70b927c86c4", "notes": [], "params": { "forceDirect": true, @@ -104918,7 +105278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "018623459e8c381c3e25c11bf4d452c6", + "key": "aacb69673f6798f8c35cc724f621c050", "notes": [], "params": { "correctionVolume": 0.0, @@ -104938,7 +105298,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4cb5462138ba188d204143c9ae4b7ec7", + "key": "58cff8f25ae8c0e0e22c56871896e636", "notes": [], "params": { "seconds": 0.5 @@ -104952,7 +105312,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5799bcb4b8997569289319ba8cf0bcb1", + "key": "fe58a1d9012923b8eefbcc61e1f87b26", "notes": [], "params": { "forceDirect": true, @@ -104985,7 +105345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "42dcc606fa3fc5fd0537a2c0fd812d0b", + "key": "8455c356b6dc2da4937330c4ce70610e", "notes": [], "params": { "pipetteId": "UUID" @@ -104999,7 +105359,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "233f87b0289ab87a9fed8df697f2ed18", + "key": "7c3773f9cfb4b460e399766dee8af30b", "notes": [], "params": { "forceDirect": false, @@ -105031,7 +105391,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "631c6c0ea96e447cb231b83387d4569a", + "key": "217c27c8b9848808b71698f0f907037a", "notes": [], "params": { "pipetteId": "UUID", @@ -105047,7 +105407,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "88f13b6c2256e2249b72b5fded641a6f", + "key": "49b0a24ac6e862f29bd72d75b285bb3b", "notes": [], "params": { "pipetteId": "UUID" @@ -105061,7 +105421,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "47c0646e9c55f1b458757b33d8030387", + "key": "5e6920df9204640cf19ced6debb2b76e", "notes": [], "params": { "forceDirect": false, @@ -105093,7 +105453,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1c34188c74b662af7fc496f39f01d83", + "key": "23bc8097041e870820492a7faf80e5e1", "notes": [], "params": { "forceDirect": true, @@ -105126,7 +105486,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e8c2d084d2805adf0678e960a105571", + "key": "fb0b469c018f8b5a7111e66996092459", "notes": [], "params": { "correctionVolume": 7.294444444444445, @@ -105145,7 +105505,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "673ce88aa4175684878482d5e885d6f4", + "key": "f9b253b38271bdb25bb98cbe956de7c5", "notes": [], "params": { "seconds": 0.7 @@ -105159,7 +105519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2995c7cff83f34fe557ce70a6bba32c", + "key": "6d66f2239605b0fe0e97a9f1f98b4d69", "notes": [], "params": { "forceDirect": true, @@ -105192,7 +105552,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f971d4b58d91bf82973acc3cbbf915ea", + "key": "2972d59c7b392bc80ada28b97ac46260", "notes": [], "params": { "forceDirect": false, @@ -105224,7 +105584,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f7f9a0d1f62392a0876912c3d2d6e30", + "key": "987780deb2733b1ee2a0efca21192f7e", "notes": [], "params": { "forceDirect": true, @@ -105257,7 +105617,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bacb8d4932080a2b74422cef247a0ff3", + "key": "63cffcf19edf2f04835f4bf37faa1b5e", "notes": [], "params": { "correctionVolume": 0.0, @@ -105277,7 +105637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "db4f751013d1b96f10615f8c65f133f7", + "key": "5a0233b04588664ed1528d2150decb04", "notes": [], "params": { "seconds": 0.5 @@ -105291,7 +105651,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b53e30f3a7c901e4aca9b05e3019a6ce", + "key": "b1e3a7fe5175957e005664fdc53843ba", "notes": [], "params": { "forceDirect": true, @@ -105324,7 +105684,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "15df81f045940076430355b3e1bf5ada", + "key": "80dbf6eba8edc04ac48dcec3ba6177ef", "notes": [], "params": { "pipetteId": "UUID" @@ -105338,7 +105698,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "305a1c65a5cd5d281f8423aff28b6643", + "key": "cc8661a10cf21a25c88c8b881d54a206", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -105367,7 +105727,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "039b53e89bd5ae21abbc7a1b68e1e630", + "key": "498efd7ea8f9f74fdd6047b0e64ee003", "notes": [], "params": { "homeAfter": false, @@ -105382,7 +105742,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6881fc44ac60d0e427af22a5ff4156b0", + "key": "14551f9502afb435231f04607feb1893", "notes": [], "params": { "liquidClassRecord": { @@ -105717,7 +106077,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b897ffa1c82d958b0d1a713047b55f90", + "key": "c2d008d684803dfbaac0d2299afac437", "notes": [], "params": { "labwareIds": [ @@ -105739,7 +106099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a28aab7ceb0853d4495f5f35b1c466c9", + "key": "ab9aad0e1aac5f4d748066d2fe05b000", "notes": [], "params": { "labwareId": "UUID", @@ -105772,7 +106132,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f6f9473667656455b1eae9358e9588b8", + "key": "ec6cdfc23e3ef6838fa4b141cd97b57c", "notes": [], "params": { "forceDirect": false, @@ -105804,7 +106164,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cfcd4dc708de1ca472f22e91c8fe90b6", + "key": "c2f9af994395075a78a82562288d5eea", "notes": [], "params": { "pipetteId": "UUID", @@ -105820,7 +106180,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a797408eec83ceec63fe6dc5ba62afe", + "key": "dcf4917cd1264fc34f27cd8c516fe884", "notes": [], "params": { "pipetteId": "UUID" @@ -105834,7 +106194,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "00679fec60b4e02e12e9921f78a21e14", + "key": "fb8cbf06d543c61c2a20e999c26c7c83", "notes": [], "params": { "forceDirect": false, @@ -105866,7 +106226,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a6368d977c42aed9bbe1397e0c405aa4", + "key": "ee8d1256c73730de4dedacab9bf817b8", "notes": [], "params": { "forceDirect": true, @@ -105899,7 +106259,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d41eccb4b110b6719beb7ee9311ece5", + "key": "a1ca68a5d645f383cebeb3ae22d9b469", "notes": [], "params": { "correctionVolume": 0.0, @@ -105918,7 +106278,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5d71825b9fb563ef960ef97ef2e145a8", + "key": "8b75d9d6e09bf79139fdc8371f82f659", "notes": [], "params": { "seconds": 0.75 @@ -105932,7 +106292,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba880ac63c66ba549d7c36a92d42a907", + "key": "2a1a60fad61f5726bce11cc37c679aa8", "notes": [], "params": { "forceDirect": true, @@ -105965,7 +106325,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7ad9ae1c3f8925c4d8e7c325f57f33e", + "key": "3630402b8a267c743443cd005cf3cb8c", "notes": [], "params": { "correctionVolume": 0.0, @@ -105984,7 +106344,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fcf3d21675fb1848db6e396bc762a29c", + "key": "0c95882fc4ba1b17abdc10092845c390", "notes": [], "params": { "seconds": 0.75 @@ -105998,7 +106358,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9d2691dfb1cc27ce0b0f06d8b8f09373", + "key": "6814eacd6f9123c6eb85e6b1becb2b52", "notes": [], "params": { "forceDirect": false, @@ -106030,7 +106390,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9491d0dd253b57112055590700cf23f5", + "key": "4f4b0c89310308487bc5e9e91dd555ca", "notes": [], "params": { "correctionVolume": 0.0, @@ -106050,7 +106410,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f891a81fa2828a675f45403200a4424", + "key": "b26e510a35ef75004a0d9205753d5e24", "notes": [], "params": { "forceDirect": true, @@ -106083,7 +106443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "203ad599787a0af2d3ccb724697f7449", + "key": "04d233947350833d901d96b6d5a4300e", "notes": [], "params": { "correctionVolume": 0.0, @@ -106103,7 +106463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b64c7f96bbc9e85d2a6f0acf3baccb90", + "key": "a9b51745a578ed0d62748e7e1f3516fd", "notes": [], "params": { "forceDirect": true, @@ -106136,7 +106496,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e5698e8ab38a81a53a6ca41179ecddb7", + "key": "ddb7a6bdc23b3c4152b1b96c51197172", "notes": [], "params": { "pipetteId": "UUID" @@ -106150,7 +106510,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5730b8b817404facf75a90496eecec0a", + "key": "eb7ae0d8dd69bda8a1851cb4c29aed85", "notes": [], "params": { "correctionVolume": 0.0, @@ -106169,7 +106529,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c5cfa913991af1122af4546817449db6", + "key": "7ed1ed55bf1bb476e64bb01138091366", "notes": [], "params": { "seconds": 0.75 @@ -106183,7 +106543,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e06308147d5fe02f03cc6809c44954fd", + "key": "866812ef00fdb93b8f948f9afd0d39d9", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -106212,7 +106572,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d63dc94b77bbb4a246939c8a693f25e5", + "key": "6b5ee9edbed2052dfdab16e2f56cb0e2", "notes": [], "params": { "homeAfter": false, @@ -106227,7 +106587,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6852f96f8707abab6a577e3e8b04b94a", + "key": "8a8783bb176ba11f68c205cb91c80d5c", "notes": [], "params": { "liquidClassRecord": { @@ -106622,7 +106982,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a725f3add7d02443225271d2dee8dd99", + "key": "8438f2fb79832d4188c11f5b6dd92a23", "notes": [], "params": { "labwareIds": [ @@ -106644,7 +107004,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "753999211e9ec975bb79c8e989b4c4b1", + "key": "5838f629fbf85653058bc61645b56a1c", "notes": [], "params": { "labwareId": "UUID", @@ -106677,7 +107037,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8a1ce0eff736d07bdc2b18393592067", + "key": "eaeaea30384cd95288f7756343d1caea", "notes": [], "params": { "forceDirect": false, @@ -106709,7 +107069,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c4305911fb98b43083e0344880f7dc0", + "key": "c1e1898ded92dc1d921a66bc1e3cca20", "notes": [], "params": { "pipetteId": "UUID", @@ -106725,7 +107085,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "63a991cec2b20cb573b1a7d2194326c1", + "key": "92e5dc3ba4109abdc9148533522d3fef", "notes": [], "params": { "pipetteId": "UUID" @@ -106739,7 +107099,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9e992ab01f11d50a247ed2b9e8c8eaff", + "key": "b7bfa65bc75664b073bbe14a344ef61f", "notes": [], "params": { "forceDirect": false, @@ -106771,7 +107131,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c1feeab1353c7a6384e13b49c7e1d992", + "key": "d52ce8eb806601cbc0ee2e8e1afebe0d", "notes": [], "params": { "forceDirect": true, @@ -106804,7 +107164,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5b303ec3f6cb826ab5dc658e92b9bc4f", + "key": "3e320dda23f33865fe13de4417c4472e", "notes": [], "params": { "correctionVolume": -6.666666666666667, @@ -106823,7 +107183,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e2b231b84642b062928077f81a5e7fab", + "key": "cec71d8c85a7f8c3190cff9ec1e3afa6", "notes": [], "params": { "seconds": 0.2 @@ -106837,7 +107197,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b5b2aa936b5c7a9c1e2ae49c5bc44f81", + "key": "8ded1d51e94b8ac70731b28a34f1a977", "notes": [], "params": { "forceDirect": true, @@ -106870,7 +107230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb72d901da0ffeb8e85d71080d566237", + "key": "b0e7e72d94d82a1b3bd219219ad7b08b", "notes": [], "params": { "seconds": 0.5 @@ -106884,7 +107244,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77452cc641093531a6a944dad6d3b571", + "key": "cb5a6843254dc0713c2a9ce28879a476", "notes": [], "params": { "correctionVolume": -7.113333333333333, @@ -106903,7 +107263,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "922faa23a04c492acb227eea789970a8", + "key": "fed768cdd4ed94e676ccac5ab95bf3a6", "notes": [], "params": { "seconds": 0.2 @@ -106917,7 +107277,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b82bf7cf79c865029c28d64e1734a89b", + "key": "9ba18fc29da9941934347aca69fc010c", "notes": [], "params": { "forceDirect": false, @@ -106949,7 +107309,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f4dc884c387f08822fca89f4da224085", + "key": "ba00a63606c23bb2e85152bd3860fd50", "notes": [], "params": { "correctionVolume": -6.666666666666667, @@ -106969,7 +107329,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edd1071f6ac3d4bfd402ad642c9fba07", + "key": "eed75a22e9da062165561c815c4bc043", "notes": [], "params": { "seconds": 1.0 @@ -106983,7 +107343,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "70ef5c41ddf42f090bd285de58ab0f5f", + "key": "8151000ed242b274526a9484f90c9a4a", "notes": [], "params": { "forceDirect": true, @@ -107016,7 +107376,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "66a415da1cd031bde61c542d14e57255", + "key": "d56ce0e8f9594895f0f3ac0195478d8e", "notes": [], "params": { "correctionVolume": 0.0, @@ -107036,7 +107396,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "728cdbe5652783966604d93505a415a3", + "key": "5a9d8da892cc1b803de203ea2820fa5f", "notes": [], "params": { "seconds": 1.0 @@ -107050,7 +107410,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "94d68274015f26881c74ebd45f693589", + "key": "c7a72ca01dcf946a09eaee05a538b628", "notes": [], "params": { "forceDirect": true, @@ -107083,7 +107443,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fe776c943b7280882aa2506f2a7d6a46", + "key": "1e7425af09141d030b6e4f20062f4179", "notes": [], "params": { "seconds": 0.5 @@ -107097,7 +107457,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90c29c31eada39d93ccf7333a802a406", + "key": "f8e94fea1b38ec2aa96a5fcc2719aab3", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -107116,7 +107476,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d9b3cd97332d103a06bcb9b44a0c8706", + "key": "393a47448165ff1175bee79ab3af51e9", "notes": [], "params": { "seconds": 0.2 @@ -107130,7 +107490,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1ea585074a0bb05c9191e4006fb0ca21", + "key": "f2d61cfff13914ead4842cdee6592bfc", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -107159,7 +107519,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7d4826807298cfe70f91ecc532678ce8", + "key": "9c1e01aec6b6db653a127da3b61eb132", "notes": [], "params": { "homeAfter": false, @@ -107174,7 +107534,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6caea0f39666f8fc44cec5708123826f", + "key": "6b26a8bba4f6e85b6b2fa3e9bf6e0e8b", "notes": [], "params": { "liquidClassRecord": { @@ -107537,7 +107897,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6349621d169ddccff4c1d4e3faec1bdf", + "key": "fc81a3d1f37b9f98e59de43149007e2d", "notes": [], "params": { "labwareIds": [ @@ -107559,7 +107919,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "567f57ff1067fcbce0246df9a44e0dbd", + "key": "ac378148d0a6433470e5bd46425d71f1", "notes": [], "params": { "labwareId": "UUID", @@ -107592,7 +107952,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd64037cdeeedfb4f8e8b7dacb408596", + "key": "8cdda5b604d9bfd333a5bfd80004661e", "notes": [], "params": { "forceDirect": false, @@ -107624,7 +107984,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e385bcf0a271620b554c75008bb34cca", + "key": "14375c548651ced27b398b0453ee2dc1", "notes": [], "params": { "pipetteId": "UUID", @@ -107640,7 +108000,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ed4c444144f78d66a97d5ee0eadb76e3", + "key": "8bdf5f524d2bf6701998f949a5ec01dc", "notes": [], "params": { "pipetteId": "UUID" @@ -107654,7 +108014,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3acecfec1487f1863fe776d134b5dbc1", + "key": "a4b1f10be1dff5bdb8c9d4d9f7520a8b", "notes": [], "params": { "forceDirect": false, @@ -107686,7 +108046,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ff2449b1f6a9f1339dd401184b2e9ef8", + "key": "d8875c3d746e6d618df1ceef68386d85", "notes": [], "params": { "forceDirect": true, @@ -107719,7 +108079,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3afcc964a724cb739327fb7667f59a53", + "key": "b97d2a88c688fc1ebaa2839467352eec", "notes": [], "params": { "correctionVolume": -0.6333333333333333, @@ -107738,7 +108098,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec40ef1c4f642b2122856a6d17ff6ca8", + "key": "c6e63ac844ded7e7c52cb6b72ebdb22c", "notes": [], "params": { "seconds": 1.0 @@ -107752,7 +108112,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dcd1a1a14119c7bdae4e9610fbdf0d4c", + "key": "0264c212a31b5696db7024781d0b8618", "notes": [], "params": { "forceDirect": true, @@ -107785,7 +108145,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d971da96f7178ebaf3fa7c0a0611f62f", + "key": "75065622177fb6a52e4703cff63558c1", "notes": [], "params": { "forceDirect": false, @@ -107817,7 +108177,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a8d8384b1a056954b1d2297bc17a40ba", + "key": "2e5e6908f2cde15309d9e159dc965230", "notes": [], "params": { "forceDirect": true, @@ -107850,7 +108210,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e7a5cebda2a4dca618268a950e44cff0", + "key": "32a1cd93d707aa23721db0bd2b01441c", "notes": [], "params": { "correctionVolume": 0.0, @@ -107870,7 +108230,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5fb1b103e57e8761a58754356fbed523", + "key": "364b21e398497204f81d4d17c0f4fd0f", "notes": [], "params": { "seconds": 0.5 @@ -107884,7 +108244,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8563c3f1f260766e034a69e78378b8ae", + "key": "a0e568665669cb4463eb9fcf38c916f2", "notes": [], "params": { "forceDirect": true, @@ -107917,7 +108277,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1fc6c403565cfbc971cbf4933fa6b0d5", + "key": "39393cbffcec33759a4e7aeac0051fa7", "notes": [], "params": { "pipetteId": "UUID" @@ -107931,7 +108291,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c0cda617c887f39741694f8ba2e7d3fd", + "key": "de7e60e9d2b1017966338a8c09f2509c", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -107960,7 +108320,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "56bdc6414c64657ee9bf4af03936407e", + "key": "0e3b9d367fccbcf689476a6ebaf25156", "notes": [], "params": { "homeAfter": false, @@ -107975,7 +108335,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b3160ecd5c26c7d7b5274cd45ef5973d", + "key": "af97885a798e520670ec4b18e0f98b0b", "notes": [], "params": { "liquidClassRecord": { @@ -108310,7 +108670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7b1f358a72ba29c30d8d63dba21b7f9", + "key": "ff721cb6ca71b42ad38a1875cdea5306", "notes": [], "params": { "labwareIds": [ @@ -108332,7 +108692,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a3a8ec387c1b0056293af0871f0a4a0a", + "key": "aea03ca10676106ffa716241756efce1", "notes": [], "params": { "labwareId": "UUID", @@ -108365,7 +108725,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f93ace06b80451503e2b19e0d2789fb", + "key": "af61dd3a54cd4365ec0b152608b3a5b1", "notes": [], "params": { "forceDirect": false, @@ -108397,7 +108757,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e40cd3e7d7262fc3a3d4b7bbffd5668a", + "key": "8361ae5e9a1eb8789939ea1526f42009", "notes": [], "params": { "pipetteId": "UUID", @@ -108413,7 +108773,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54509a46fb87be6760f85b47f3523297", + "key": "50d084176b1421cb014817ac91781a77", "notes": [], "params": { "pipetteId": "UUID" @@ -108427,7 +108787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4136e3721eea2731295721058a2576f0", + "key": "3604484daab17dea1aae4aaf1ac00bfb", "notes": [], "params": { "forceDirect": false, @@ -108459,7 +108819,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52c15c7fdf619cba5d2f61b1cf8c8b2b", + "key": "953a6cef11462c3826604b27bf966a2a", "notes": [], "params": { "forceDirect": true, @@ -108492,7 +108852,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8ae8693e1370085102dd6b28658f6bb4", + "key": "e04759c4c3f107bda1ead3bcc8320af8", "notes": [], "params": { "correctionVolume": 0.0, @@ -108511,7 +108871,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "02f907d06fceae2c71ac6b7867aa1a80", + "key": "7d66533872ed4a45ba0cac27c366712b", "notes": [], "params": { "seconds": 0.75 @@ -108525,7 +108885,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7006e8bc09c1d6c1879087ddc479d4d4", + "key": "c4ec6ecae525b10f4f49775304d2deb3", "notes": [], "params": { "forceDirect": true, @@ -108558,7 +108918,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1b855149764b58b6ac1f384e4935c256", + "key": "c7b77ce9580e7de51f7f8454d9013f0e", "notes": [], "params": { "correctionVolume": 0.0, @@ -108577,7 +108937,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f29d1b5c4065bfa8bde27ec1a8da848", + "key": "a8e6f4e3567b76c501033c9efae66507", "notes": [], "params": { "seconds": 0.75 @@ -108591,7 +108951,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ac1a068f438f3c76516c98a47e2395b", + "key": "dc4296600e74ddf5f7919a0548f167ab", "notes": [], "params": { "forceDirect": false, @@ -108623,7 +108983,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "516c5feb1a673ab3a175fea55c67412e", + "key": "5c19ea45fe6568a524bdbbf505a6a19b", "notes": [], "params": { "correctionVolume": 0.0, @@ -108643,7 +109003,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1d02ae77a343b950f32cf2709b06fea7", + "key": "55e640fe96e3b13dee14b6535c7b6839", "notes": [], "params": { "forceDirect": true, @@ -108676,7 +109036,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4e970c44f40069ed6e132a013af872a2", + "key": "1086adfda03b6ce3b611ee0240dd1f37", "notes": [], "params": { "correctionVolume": 0.0, @@ -108696,7 +109056,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3a003864433f8f17a3cb4673e1c74e86", + "key": "64db43c5fdb5011375fb183f14736f35", "notes": [], "params": { "forceDirect": true, @@ -108729,7 +109089,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f2fa3cb5d79c1925fe612a6a03e94b7e", + "key": "9c94e431d6f7a3a046def76de3ea1c70", "notes": [], "params": { "pipetteId": "UUID" @@ -108743,7 +109103,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "755769ff6378b8fc9c4c2a4188557cd0", + "key": "bfd4378bc2edd6ca1f5c555bd91ecec5", "notes": [], "params": { "correctionVolume": 0.0, @@ -108762,7 +109122,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d40078d7add0bcb8b5520c7244855e57", + "key": "2d88425d9c63393e98423ac51d0c25a8", "notes": [], "params": { "seconds": 0.75 @@ -108776,7 +109136,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "42692d0bbbc0390c33f563b7c106286e", + "key": "79610a070b2921804d1865eed22abdf6", "notes": [], "params": { "forceDirect": false, @@ -108808,7 +109168,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "80b3a809d31a1c3d165195aaf1e7b90e", + "key": "d64bd2b637badf2f5f03261909b0574c", "notes": [], "params": { "correctionVolume": 0.0, @@ -108828,7 +109188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5807ec8de9701248c0b9bc600f40a7ff", + "key": "1d1b1688277f16e641fed57e2e5ae6ce", "notes": [], "params": { "pipetteId": "UUID", @@ -108844,7 +109204,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "39628162cdcf1bcb167c2ad7c2f800e9", + "key": "764423458a99ead867c26e429fb18187", "notes": [], "params": { "pipetteId": "UUID" @@ -108858,7 +109218,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "87fc2daf7214e3e91d2719a8008bc1d6", + "key": "93e68b385f4e6125106be2c3b069b95c", "notes": [], "params": { "forceDirect": false, @@ -108890,7 +109250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "808baa971043585dff47fbddfb2293c0", + "key": "1b006ef561e3e048a0f9e36fd3141ec0", "notes": [], "params": { "forceDirect": true, @@ -108923,7 +109283,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7b1eeafe7a06b9f70f2db9d9522c80f0", + "key": "5a0c20f7fad8a92446e9e0b6da69213e", "notes": [], "params": { "correctionVolume": 0.0, @@ -108942,7 +109302,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4a12aa6925efd3a830fe5581f150975c", + "key": "2ac7f914d53295d7a8a03d9ac2357473", "notes": [], "params": { "seconds": 0.75 @@ -108956,7 +109316,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d2978d78b2df710a59403fb79621b097", + "key": "1b42fe4f6b587bde21e9937f659c363b", "notes": [], "params": { "forceDirect": true, @@ -108989,7 +109349,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "884bdd37521d2e190f766606f8abe7a4", + "key": "ade6ecb406ce9ab5f2fd36df97c486ee", "notes": [], "params": { "correctionVolume": 0.0, @@ -109008,7 +109368,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fde79928fa2f85619fcee8b3146da7de", + "key": "71bcf1e7bda9be06ecaa40fa9abdbce6", "notes": [], "params": { "seconds": 0.75 @@ -109022,7 +109382,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b6184d45f9729c850559ce17a8c6b78", + "key": "34003d2213b46a70162fc2b98b32aab5", "notes": [], "params": { "forceDirect": false, @@ -109054,7 +109414,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0810c06e24c13995d482acafc4ae4000", + "key": "635bdf79e1a4093da023aee93afcb205", "notes": [], "params": { "correctionVolume": 0.0, @@ -109074,7 +109434,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1c9511de521b349b6c77af5c20e9c535", + "key": "41e668ae234a2c97ae5d713fe496023c", "notes": [], "params": { "forceDirect": true, @@ -109107,7 +109467,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bb984d62242b77d1bdd3be90d2d89b75", + "key": "e41f609457e1cf430cba8b45407353f9", "notes": [], "params": { "correctionVolume": 0.0, @@ -109127,7 +109487,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "128f3a5bb23e91733c0f4cb0f424d005", + "key": "4da71f44b87e45422daff9cc9e8c91bb", "notes": [], "params": { "forceDirect": true, @@ -109160,7 +109520,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "688a98abc5e67be8b5645f688c3c9e7f", + "key": "733d3922a8a6ac4caa13ab95e0211a58", "notes": [], "params": { "pipetteId": "UUID" @@ -109174,7 +109534,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d40fd9159dcacd6ae41f1da13406ef55", + "key": "ba6bfb0d5c4886f765a78e5c02de6b46", "notes": [], "params": { "correctionVolume": 0.0, @@ -109193,7 +109553,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24c06437eb9bd0cdf0287c77ff14a69a", + "key": "21141c2a1718ef3e943a593df83db004", "notes": [], "params": { "seconds": 0.75 @@ -109207,7 +109567,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "200b889bbe7ad65d4f2a4b68b0d5832e", + "key": "4d7862c66277f07174cccc96957b5f03", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -109236,7 +109596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6e6e1535639889f9a2e934a23b98ee70", + "key": "ca16c68ed4b9dbe7ebd842618eacb48d", "notes": [], "params": { "homeAfter": false, @@ -109251,7 +109611,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "10c80974ef9bbff047d63721caf50194", + "key": "9bde318e425dd865513444d267f7ac9c", "notes": [], "params": { "liquidClassRecord": { @@ -109646,7 +110006,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "136a0bb272e847d72342b87fdb393a9c", + "key": "7b1fb95fd4c1b672a287c609e52b931c", "notes": [], "params": { "labwareIds": [ @@ -109668,7 +110028,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b62a37e0600a665ca811dd386f73d361", + "key": "3a07df1a7ee32db6e7ea5686f82f263c", "notes": [], "params": { "labwareId": "UUID", @@ -109701,7 +110061,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c8ea3eb554cf423f8374292e3d589137", + "key": "72c01c8dfcb15cc253ffdf1f36b9a718", "notes": [], "params": { "forceDirect": false, @@ -109733,7 +110093,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "77a1125eae46241b50f67cdb31ad65b3", + "key": "0ee00d88cbbab927ede2ae4ffb6113ba", "notes": [], "params": { "pipetteId": "UUID", @@ -109749,7 +110109,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abf0da3b685f6fadc8d43517372119ec", + "key": "17716dc83839fcbfa51594430f820853", "notes": [], "params": { "pipetteId": "UUID" @@ -109763,7 +110123,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f3ace3359ece5b715af3cd1c904c5a19", + "key": "bf592329dc59523143adce368f2cd317", "notes": [], "params": { "forceDirect": false, @@ -109795,7 +110155,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "86a2fd5027b02573465bc437ab48e2df", + "key": "35a0f9c52144888f37984a4104591ce6", "notes": [], "params": { "forceDirect": true, @@ -109828,7 +110188,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0bcbf4145af9263da3816d7321bc02a4", + "key": "9e9a5aa328f5a81880817dd5bafd3bb6", "notes": [], "params": { "correctionVolume": -5.326666666666666, @@ -109847,7 +110207,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "410b2b2ef1b90e31e4bf692ec6fb2e6d", + "key": "766ca47b913065f4d6f88e2f38afd089", "notes": [], "params": { "seconds": 0.2 @@ -109861,7 +110221,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6707b73dce6bfb5c92746ac35cf50d48", + "key": "1a1dd65eb63731457abca8419054656f", "notes": [], "params": { "forceDirect": true, @@ -109894,7 +110254,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "05ba64957e6e21b2727cb38191e0f505", + "key": "9e3d26fe83ed8cdcfdd397c17cdad96d", "notes": [], "params": { "seconds": 0.5 @@ -109908,7 +110268,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e1988f0acd7afb6aeccbfd76d5e44c14", + "key": "196bb2c2b30b9ceffd7666be544bfefe", "notes": [], "params": { "correctionVolume": -5.773333333333333, @@ -109927,7 +110287,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a2dfe436920c130b2085ad86fb3173be", + "key": "4ff97c4b470e3d6c90a32493d79eb466", "notes": [], "params": { "seconds": 0.2 @@ -109941,7 +110301,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f6a1b9ecf02931e2e14b130c92353ea", + "key": "39ddb515929776a74c79ecffb002ed15", "notes": [], "params": { "forceDirect": false, @@ -109973,7 +110333,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "297c371a55a532e2b8b1f2cafea8fe4e", + "key": "5618fd31673d83a1bb633b5d4ddfcfd4", "notes": [], "params": { "correctionVolume": -5.326666666666666, @@ -109993,7 +110353,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6765d750dee4d70e3bed708b0630413a", + "key": "d6c9eaa7267bad86f989532ec63f2f18", "notes": [], "params": { "seconds": 1.0 @@ -110007,7 +110367,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a29497f7ff2aaf1921ac358ec160bd6d", + "key": "69b16ca39498027f0a4ad02aff1ebca9", "notes": [], "params": { "forceDirect": true, @@ -110040,7 +110400,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "338d8b313e016a580ea17bbd10c027eb", + "key": "40525c15a35e4754d39cd4b1d0a9fd9d", "notes": [], "params": { "correctionVolume": 0.0, @@ -110060,7 +110420,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e45dccf07b4746f677874783725fcdaa", + "key": "1414e22dfac73c9700e2246633fd0187", "notes": [], "params": { "seconds": 1.0 @@ -110074,7 +110434,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "809ba2693f8046c75b707569234a2179", + "key": "e72c5669c2604009e80b1d4fe2ac1f63", "notes": [], "params": { "forceDirect": true, @@ -110107,7 +110467,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "778ce211542a64c932cff8f9639a9023", + "key": "0f5c146565d15d5bfc9db2f27dc60d32", "notes": [], "params": { "seconds": 0.5 @@ -110121,7 +110481,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e609c78029328026b92ea35796736b92", + "key": "d56f190a0bc3bbb8a2450f6899bdf8d1", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -110140,7 +110500,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4cb918b632ddc1ca74929d274145e09", + "key": "24ca7955631045c917a2a4159f1eba88", "notes": [], "params": { "seconds": 0.2 @@ -110154,7 +110514,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7da4f55903e9f186339ef9fb3c4e2179", + "key": "9a93d18d2e43ff23c7f35e47a115db0b", "notes": [], "params": { "forceDirect": false, @@ -110186,7 +110546,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1843af464339a10b8dc2eda906006d25", + "key": "99d140cd224d43f0d131882bad485d9a", "notes": [], "params": { "correctionVolume": 0.0, @@ -110206,7 +110566,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a12f1db5a0c874a9a7dca110d899d25b", + "key": "a8a9cef4d144bbfd6aff1a9204d5ad76", "notes": [], "params": { "seconds": 1.0 @@ -110220,7 +110580,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4bffa8d15c182b8d43fd08d745ddbd9c", + "key": "51323a8121a700210450338da15cc6aa", "notes": [], "params": { "pipetteId": "UUID", @@ -110236,7 +110596,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9503849960095f7ed929d1c52546da8f", + "key": "490d218cc47a7b5c0a6e470240bd6b5b", "notes": [], "params": { "pipetteId": "UUID" @@ -110250,7 +110610,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ce9e8c079da81cbb341cc760339f01b0", + "key": "f1b4c28b083164d05ccfb82d03cfc15c", "notes": [], "params": { "forceDirect": false, @@ -110282,7 +110642,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e0ce7cb9f12cf9d686cef7547758d949", + "key": "a0f8e83bbd66f64f673a99efe88d4f1f", "notes": [], "params": { "forceDirect": true, @@ -110315,7 +110675,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "193a08f382b0ff42d92cb7420f68a040", + "key": "bd78fd97f52ebb754dd1b8d3a19d8f54", "notes": [], "params": { "correctionVolume": -5.326666666666666, @@ -110334,7 +110694,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5d26f9bb31b7d0e2783a991ede1a2cd", + "key": "8380fb4395efd3029e9c2c3287c34aba", "notes": [], "params": { "seconds": 0.2 @@ -110348,7 +110708,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7a063247068bcb94a9f16c9c623fcf57", + "key": "f3c75952667eca833aa345b79885bf89", "notes": [], "params": { "forceDirect": true, @@ -110381,7 +110741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0e1bb2c5e0473b6a21149bee79049bde", + "key": "fe54ea9c1ce872b144c7aee96a25f130", "notes": [], "params": { "seconds": 0.5 @@ -110395,7 +110755,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a40def53785eec6fa4b9ece406921df8", + "key": "614bfba7b938a48aa9d695b48efd1f77", "notes": [], "params": { "correctionVolume": -5.773333333333333, @@ -110414,7 +110774,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1e22ef4a52d9a761c9ccd2c448cf9dc", + "key": "8a00dc1c420213c3557d25703f4576f0", "notes": [], "params": { "seconds": 0.2 @@ -110428,7 +110788,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4adecbb01b2433b1ca90491edd8bf453", + "key": "331f6d4a78aab798ab23df88c3dd16b6", "notes": [], "params": { "forceDirect": false, @@ -110460,7 +110820,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "57341e26774320ad086cafc9c02c6128", + "key": "547008a26b9c7ef6cb42c25907c0eeea", "notes": [], "params": { "correctionVolume": -5.326666666666666, @@ -110480,7 +110840,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5f53de175bb3c9a36b31a7af1ee6ebe2", + "key": "f59e9e1b11f2d7e047d636296ace5b40", "notes": [], "params": { "seconds": 1.0 @@ -110494,7 +110854,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b7cf8558a6f6eb3ecfaa18cbc19dfb54", + "key": "7e24f74cbb5d40dae4ec37a5063ddf71", "notes": [], "params": { "forceDirect": true, @@ -110527,7 +110887,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5705ce7246d2f98d4231d2b6249742b5", + "key": "6819c7a74ef5ac0e69c19eb13e879cea", "notes": [], "params": { "correctionVolume": 0.0, @@ -110547,7 +110907,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bbd313b8a2be1621181ea99e859e22f7", + "key": "2f5cdbea986a6c0224e2bf9eef434d5d", "notes": [], "params": { "seconds": 1.0 @@ -110561,7 +110921,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0c68dfc4c565592e1b85f5828540a586", + "key": "03a4c1baffd5b1bd96611f9cc12652fe", "notes": [], "params": { "forceDirect": true, @@ -110594,7 +110954,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2a92c8a23bf9d5bc99f5df9dee9c8916", + "key": "b710afe2aae929d3e87818a421d8bf5a", "notes": [], "params": { "seconds": 0.5 @@ -110608,7 +110968,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3271413ec84b0ebc854c3b18bc966cb8", + "key": "4d8a20e263c5e27d6cace9506000fc34", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -110627,7 +110987,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "807edf8ece7b0feb71234817d16473cb", + "key": "c5a4895bdd843e5ce950ad357adbb9af", "notes": [], "params": { "seconds": 0.2 @@ -110641,7 +111001,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75aa6f1b6b0f6ccdabe698af786eee8b", + "key": "8d6e280527d3cf817d25bfe941b6e6a1", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -110670,7 +111030,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23781d60df3a1951702194b567b96978", + "key": "ccf06828d263d85b408eed2149f06f11", "notes": [], "params": { "homeAfter": false, @@ -110685,7 +111045,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "44c39d43d3403944f1e4100ca1a35a1b", + "key": "0e94fa1815524318a1fda4de4405c906", "notes": [], "params": { "liquidClassRecord": { @@ -111048,7 +111408,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "825a6fd68c18886c154c5842dbd2bf8e", + "key": "9a5e2dac4e597db4b93bd7661b91f845", "notes": [], "params": { "labwareIds": [ @@ -111070,7 +111430,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "424d4cef2a99b88af760903ad583cf32", + "key": "7e3502870c15e24ac2708c7d2c0f1360", "notes": [], "params": { "labwareId": "UUID", @@ -111103,7 +111463,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a582976e5c34f45db02f4258cf329c5d", + "key": "a7da0ef143cf97259f14446e41d9de3a", "notes": [], "params": { "forceDirect": false, @@ -111135,7 +111495,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c9fd07e410fb6b0fc7e21ba3d11d026a", + "key": "7378db881fec549ce23c9c5e5ff7a3ff", "notes": [], "params": { "pipetteId": "UUID", @@ -111151,7 +111511,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "676c85b320c4ef1ee5fd14e3245b8e15", + "key": "768b0c1b6e300be4037cc44adc80e15e", "notes": [], "params": { "pipetteId": "UUID" @@ -111165,7 +111525,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "16f7fbba780511b64df0fd0ce2e663fd", + "key": "29ddcd47ef8a4ef4b768655095a8e93c", "notes": [], "params": { "forceDirect": false, @@ -111197,7 +111557,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41deacfe626969bfb8a06e0e1253e878", + "key": "f0b48b9c175e1762a76d349da9e2a139", "notes": [], "params": { "forceDirect": true, @@ -111230,7 +111590,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f798315738e39f5145401c51f1058971", + "key": "b93bee6c362307dcd5608f81ef7f1065", "notes": [], "params": { "correctionVolume": -0.5333333333333333, @@ -111249,7 +111609,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "537c53ab71707915b68ebaeafe793376", + "key": "ad39e1689b7fe08d0a53b5e46afe17dc", "notes": [], "params": { "seconds": 1.0 @@ -111263,7 +111623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c4dcebb6407647b5224f98dc559b9ed9", + "key": "d05ad20bd4efd16f19c1419c4e618381", "notes": [], "params": { "forceDirect": true, @@ -111296,7 +111656,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dfb694710df8e9b8959d0efa2667373c", + "key": "7cb83971304751ffd8c8b6f4ec421c72", "notes": [], "params": { "forceDirect": false, @@ -111328,7 +111688,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "64496d450028818aabca8d8306590dab", + "key": "0b3f841be9a593da59575b62a264cd3d", "notes": [], "params": { "forceDirect": true, @@ -111361,7 +111721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37011f3141e51cd8849ac09380205489", + "key": "5e1388e975245a547f8cd390d616068b", "notes": [], "params": { "correctionVolume": 0.0, @@ -111381,7 +111741,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a1560bdfdd47232bd193c6fe515c0b29", + "key": "6ab745cfd1b98747da0451b26f0ac3d7", "notes": [], "params": { "seconds": 0.5 @@ -111395,7 +111755,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6222e9f900d1422a4402c18d73ae9018", + "key": "499a99bd60039bc1ba108d8e93969de3", "notes": [], "params": { "forceDirect": true, @@ -111428,7 +111788,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ac6de5921f68e65cd00a2e2d999f264f", + "key": "bc51086a599f34f09430ff5bdcd13f26", "notes": [], "params": { "pipetteId": "UUID" @@ -111442,7 +111802,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9ddb7b9beab06384ca4f339178fefef7", + "key": "8e9f0213fbab5d564f3f5028824c001b", "notes": [], "params": { "forceDirect": false, @@ -111474,7 +111834,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f3803089370258098e0d5f2def3aa861", + "key": "2bd7f09119ec9d8f0cdf64011fd2e77d", "notes": [], "params": { "pipetteId": "UUID", @@ -111490,7 +111850,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5a823d9923a206126c91c43181e882fb", + "key": "cc00a4ccde4742768bde6a3244906bf5", "notes": [], "params": { "pipetteId": "UUID" @@ -111504,7 +111864,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "31bd43f5ffc715b76f86c19f4f99412e", + "key": "84eeb037906ca3cb5ce8e614c36b1c53", "notes": [], "params": { "forceDirect": false, @@ -111536,7 +111896,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2c129011480185958e8c228d15ea20eb", + "key": "f6679cfc4e2418064c76fc714bed7ec0", "notes": [], "params": { "forceDirect": true, @@ -111569,7 +111929,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6de7ac16d8718287dd9309213c41f04e", + "key": "d5daadbc1d3ef7bf9540fe36934c740a", "notes": [], "params": { "correctionVolume": -0.5333333333333333, @@ -111588,7 +111948,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c67792956bcd80c675ef168de5ab54d", + "key": "19ad504095ca1e60eaedb13ab40385da", "notes": [], "params": { "seconds": 1.0 @@ -111602,7 +111962,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ba343ab8d12f1588b0167ededa305edc", + "key": "f760fc179ddb917998abb8cf12291552", "notes": [], "params": { "forceDirect": true, @@ -111635,7 +111995,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "52c163f4bf5b4b3d1e074b576c34710e", + "key": "9011968bb8213728da1506b29c9cb6b1", "notes": [], "params": { "forceDirect": false, @@ -111667,7 +112027,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "73dc8eafed85f7ac01f676296d2f4699", + "key": "e41b8369d7df6ce5ac43dcf264c1ba2d", "notes": [], "params": { "forceDirect": true, @@ -111700,7 +112060,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6b1dedde5bfd4724c4401fead802c5c1", + "key": "2381c92c62f2d2b8ff4585cc84c5f6df", "notes": [], "params": { "correctionVolume": 0.0, @@ -111720,7 +112080,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "287003b67bd05183941035ce720aec08", + "key": "f0c1aa79d77a6705d8d77e8746b12f16", "notes": [], "params": { "seconds": 0.5 @@ -111734,7 +112094,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dc4ca1b38c3049448e57955ad94a799e", + "key": "c1bf83b9e296084863072c17661c9ff5", "notes": [], "params": { "forceDirect": true, @@ -111767,7 +112127,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4847ca97617caef357abc87a31f6827", + "key": "bbe5d70cae7ba6e274ac1433a68b4e14", "notes": [], "params": { "pipetteId": "UUID" @@ -111781,7 +112141,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2380e969a405e62a8c1de146b3c97588", + "key": "4d3bca0739890e319378c1e76faeccb2", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -111810,7 +112170,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f9950cfacc2d8d82f30c01e8836d527", + "key": "33a41330f54cf1a82c443badafcc2907", "notes": [], "params": { "homeAfter": false, @@ -111825,7 +112185,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8bc9989a411605ffbdd72e728ef2a54a", + "key": "48385e070428aaaadfb81b7b382e5350", "notes": [], "params": { "liquidClassRecord": { @@ -112160,7 +112520,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2f28b777f8bbbee2f8e918dd31e133ff", + "key": "7c1bbbe34931d62c506e8e1a8bfc7949", "notes": [], "params": { "labwareIds": [ @@ -112182,7 +112542,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7f7497ec0105359af8018e1dbf84d992", + "key": "c050fc25b6f1e7a81980addb9a33d757", "notes": [], "params": { "labwareId": "UUID", @@ -112215,7 +112575,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "22c68c21368d541354eba97a010cc1d8", + "key": "a0577bfe4e582e3e9c0b95921d4adfb9", "notes": [], "params": { "forceDirect": false, @@ -112247,7 +112607,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4c4717515c79feedb3ce4094fa93cec", + "key": "e4317a65ce3a2f119d19602005f46b52", "notes": [], "params": { "pipetteId": "UUID", @@ -112263,7 +112623,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "432342f5b5fb638ed8895a566e8a0fc3", + "key": "4ed5f2eec0996a26b311c79b97e45555", "notes": [], "params": { "pipetteId": "UUID" @@ -112277,7 +112637,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f5989f788d022906d32d3caffc88055e", + "key": "cc44b06c8d33ad57e79dac18c3209848", "notes": [], "params": { "forceDirect": false, @@ -112309,7 +112669,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a29d19dd8bf20e3a54e01e3e878cf54e", + "key": "9eb97b3a154599a3e54debca76cc0fe7", "notes": [], "params": { "forceDirect": true, @@ -112342,7 +112702,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f868430a6ff8cd7eecb4aa41b20f5479", + "key": "88dcfbb4e3efa4517227ca04ff2cb02d", "notes": [], "params": { "correctionVolume": 0.0, @@ -112361,7 +112721,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89c95e8a35ca5a448c8b3acc4cd3d70f", + "key": "20fb8ecafb219ce01f85901555818764", "notes": [], "params": { "seconds": 0.75 @@ -112375,7 +112735,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "56b110d5ace9aff336fd6f151fe30062", + "key": "7dcbf7bae09b0de423538f3ea9fcf6bd", "notes": [], "params": { "forceDirect": true, @@ -112408,7 +112768,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d491ecf0e3018895bdf3e25cf78f3ab6", + "key": "197ff1b37c68ab48caaf07358bbed26c", "notes": [], "params": { "correctionVolume": 0.0, @@ -112427,7 +112787,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "07ee9a0a7ebed0b646d9fad5cc7148e5", + "key": "b42e888c3b9efe3db3c9c53ea15c8101", "notes": [], "params": { "seconds": 0.75 @@ -112441,7 +112801,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1005bc2bea1630fcb0942483342197bc", + "key": "4c73d348f7e8a0dc719371dbcdd47fdd", "notes": [], "params": { "forceDirect": false, @@ -112473,7 +112833,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "41e6cb1f7102f3e83a1f6274153b02b2", + "key": "6a805cf9b7bd8d222fc5ee98e17e0174", "notes": [], "params": { "correctionVolume": 0.0, @@ -112493,7 +112853,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "792a8b92776e4b876e6f4c0236605be8", + "key": "5017759dc4dec045f27a0b769a69d39f", "notes": [], "params": { "forceDirect": true, @@ -112526,7 +112886,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b45832c4f279fe659f1b769e0e5cba30", + "key": "aaf95f785ce7431ef6518f04a34b7304", "notes": [], "params": { "correctionVolume": 0.0, @@ -112546,7 +112906,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "100a36d9d1372aadd0f9d1b7b92aa59e", + "key": "e1f46de9ca29e9aac40135bb3ad0586a", "notes": [], "params": { "forceDirect": true, @@ -112579,7 +112939,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "89cf9d58238af00fa93006d508661a50", + "key": "e70e4eaf11304ee2efed546ff5b94432", "notes": [], "params": { "pipetteId": "UUID" @@ -112593,7 +112953,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b1fecb40d815ddf2925577491b7e1671", + "key": "b15c458d362d9e9aafb0163cda97b23a", "notes": [], "params": { "correctionVolume": 0.0, @@ -112612,7 +112972,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24b1aa72dd9db1fe3922f4e760181f3b", + "key": "46eb8c582d8981005cae3c0332ac6ad3", "notes": [], "params": { "seconds": 0.75 @@ -112626,7 +112986,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36959fa8d8d87843933db73fee442569", + "key": "c1aa2c664dd0b251140b1d464b32136d", "notes": [], "params": { "forceDirect": false, @@ -112658,7 +113018,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "218c59cd59a7a84bdf22049f85351cfb", + "key": "bbf7846d9a28ecce561b20bc3789737d", "notes": [], "params": { "correctionVolume": 0.0, @@ -112678,7 +113038,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d4a3fc4889aaa5d25ea465377af3bc25", + "key": "79e8a3a024ef6cedb1b211260097df96", "notes": [], "params": { "pipetteId": "UUID", @@ -112694,7 +113054,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eb3d6619884f4c721399a7c683036869", + "key": "6142f31221f62cacf142e10f85284168", "notes": [], "params": { "pipetteId": "UUID" @@ -112708,7 +113068,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99387efd3ecaee1ec7aef7f50da6b873", + "key": "aa52abec4d239bd76358e7dc08214d86", "notes": [], "params": { "forceDirect": false, @@ -112740,7 +113100,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3f678c867649e6e1c5e92a980d3f91a7", + "key": "134518412053a10343ced8d033e0a343", "notes": [], "params": { "forceDirect": true, @@ -112773,7 +113133,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "45584418e012b2d724ab71c82d0919b2", + "key": "e846153a2db0f7a0a296908f77c109d9", "notes": [], "params": { "correctionVolume": 0.0, @@ -112792,7 +113152,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "03dac6cdd6a2d27c7527a96305552c65", + "key": "272dc82b69f9a4b712a55449d2ab314c", "notes": [], "params": { "seconds": 0.75 @@ -112806,7 +113166,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f44ebcc0b7f76a04fc0e1d71536615b", + "key": "ad5f3eff3538cb3b4543cdf7b7c0cf28", "notes": [], "params": { "forceDirect": true, @@ -112839,7 +113199,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "48847ef13e117a984e4f46d4acb7e631", + "key": "a66fcbd43dfe437388c96d81558fa3b9", "notes": [], "params": { "correctionVolume": 0.0, @@ -112858,7 +113218,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "75de1bdf43dedd6d215fcb534ad31d9a", + "key": "4a2685eafac71de466489d0332f019c0", "notes": [], "params": { "seconds": 0.75 @@ -112872,7 +113232,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ffad911fc2bbf80521e918ca66fada18", + "key": "1cd5885d0be458eff3a9edd833963ef8", "notes": [], "params": { "forceDirect": false, @@ -112904,7 +113264,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e275f71c555e58f6df08d6f0f4e3cab2", + "key": "4b0bdae7fc77e9369923a01d7a390715", "notes": [], "params": { "correctionVolume": 0.0, @@ -112924,7 +113284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f9f1eafb7ca9546d7b961dc85a4fede1", + "key": "2acfa9b83cb0a4cb1947d028819360b7", "notes": [], "params": { "forceDirect": true, @@ -112957,7 +113317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa565cfb87620384b0ed17826eea547d", + "key": "5b3ebc3ead6483502155687ba4b67e94", "notes": [], "params": { "correctionVolume": 0.0, @@ -112977,7 +113337,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "573f5a2ab5685e703be89443c6c164be", + "key": "a2368a9f46090156d15a47edb90d816f", "notes": [], "params": { "forceDirect": true, @@ -113010,7 +113370,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc830964300dc4e99e93bae88ab2770f", + "key": "87bacd5f92fb81cc87422e149054c9b8", "notes": [], "params": { "pipetteId": "UUID" @@ -113024,7 +113384,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e721b39a66ca9fc3f635a1abef39c0c8", + "key": "7a5053e16e3d5043f5ca78114b293f5e", "notes": [], "params": { "correctionVolume": 0.0, @@ -113043,7 +113403,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "21b43509396c6de3a545d1c49e241129", + "key": "b9ef10322a442af3edce5f544b56504f", "notes": [], "params": { "seconds": 0.75 @@ -113057,7 +113417,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "27d58cf58955b43e54fed6e884be4bc2", + "key": "0b630541c30921cac5fa408f8635b4a2", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -113086,7 +113446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4773c011972b1e4ca0b5bc56ce6e30eb", + "key": "85398a8851a796cfed4d1708799f2d3f", "notes": [], "params": { "homeAfter": false, @@ -113101,7 +113461,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "2d05ff51f23c2701ff804a1a66c9cc32", + "key": "83c400219e157003531472a9413c2eb8", "notes": [], "params": { "liquidClassRecord": { @@ -113496,7 +113856,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8554f0aae346b6729c7f5ac43e2c9030", + "key": "cbc58d91bbc5189a73546ab6948feff5", "notes": [], "params": { "labwareIds": [ @@ -113518,7 +113878,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "34a8ed4731247e5aee9a1771ab57eede", + "key": "2e0bb6e6277b357d483a9187eae25e23", "notes": [], "params": { "labwareId": "UUID", @@ -113551,7 +113911,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3ffbb2478bf3a45e417ef0fe36d708bf", + "key": "041777d7d69d8f069001e7228b884bb5", "notes": [], "params": { "forceDirect": false, @@ -113583,7 +113943,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cf262cd41283bd3ac51ff8223e0ab736", + "key": "ee866e6ecb4a36ad97b6c07fdff6f387", "notes": [], "params": { "pipetteId": "UUID", @@ -113599,7 +113959,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "448273a8b8032e5b1e6d4a561d28acd1", + "key": "99800f96310053fee14f0c5bc02aa628", "notes": [], "params": { "pipetteId": "UUID" @@ -113613,7 +113973,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ab6acce15576b42e1280ca9ae2c50a13", + "key": "c55902a5beaefc4f18489292b8d3a1d7", "notes": [], "params": { "forceDirect": false, @@ -113645,7 +114005,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cd721dc852646621569e0307e0507c99", + "key": "be3a979c58fe52cf9413b4d85f293825", "notes": [], "params": { "forceDirect": true, @@ -113678,7 +114038,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a27904ef5a866bfd4feca3b11657fd18", + "key": "64d894c283325b977f74536f2ac2c2be", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -113697,7 +114057,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "54346c217792feb567f81df058e5616d", + "key": "5f4bac01d4208b627fb40fc0dfca6d08", "notes": [], "params": { "seconds": 0.2 @@ -113711,7 +114071,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6ec060d02dcfe1b7f582245c7633bfc5", + "key": "ef8aae9edf6a388bff8d48d96bbbb322", "notes": [], "params": { "forceDirect": true, @@ -113744,7 +114104,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "72b69eac2f49212122b58e2d805f66c6", + "key": "f75dee2be858bf9d56412d456e024e44", "notes": [], "params": { "seconds": 0.5 @@ -113758,7 +114118,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b38b65385dd58b23b7a497103530e037", + "key": "f1987982b6e64ada80bb0bfab43d5b63", "notes": [], "params": { "correctionVolume": -8.453333333333333, @@ -113777,7 +114137,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ade7a8532a39a27560ca1d66a98fa817", + "key": "43fa8605eb5a8e8fccc509daf13f8ef8", "notes": [], "params": { "seconds": 0.2 @@ -113791,7 +114151,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "85bd4b2dfa46daba06d027619b0f6f99", + "key": "649fa1c2047da0603a7214bf56d193b1", "notes": [], "params": { "forceDirect": false, @@ -113823,7 +114183,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "347bb029b53faeea6bf12caae3ca1e7d", + "key": "19170c08c40995764887757cf2b01842", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -113843,7 +114203,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c8d73b4c2c01e4c4f9beb87d8533107", + "key": "8ae9bd7e06e8c96709e946460a1d1a56", "notes": [], "params": { "seconds": 1.0 @@ -113857,7 +114217,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ec2e7b1235544d8d9d27577a817c4ebc", + "key": "a48a2352a214ad997f7a90dbe4f2fc99", "notes": [], "params": { "forceDirect": true, @@ -113890,7 +114250,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e166413560c0e556e7ebcde150242e14", + "key": "b79ed84c94d9a146638d78d3dfaddf7f", "notes": [], "params": { "correctionVolume": 0.0, @@ -113910,7 +114270,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ded28854bf91b4e72870a8f69f3978ba", + "key": "a01353fa4486723114171000568f5825", "notes": [], "params": { "seconds": 1.0 @@ -113924,7 +114284,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "344dcaa8762a7dba1c683c856efcdf06", + "key": "c2a12fa202a6cdac5eb2d6246c84be29", "notes": [], "params": { "forceDirect": true, @@ -113957,7 +114317,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a03eaf6b24e10554f3ab9819c5753dcd", + "key": "826f4ccddc73d8ca472a35f26f7db198", "notes": [], "params": { "seconds": 0.5 @@ -113971,7 +114331,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "95f8bf885daaae31b424e56cc0b4c6f6", + "key": "35f9d8d594e4776cc6173725ec8fe2b5", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -113990,7 +114350,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bd2a2c9f65e5998a5786024bee2b4e51", + "key": "d1f4287d6d826d475da49a79ac96bdef", "notes": [], "params": { "seconds": 0.2 @@ -114004,7 +114364,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3e7988358e41266ec9f51f89d55e44fc", + "key": "e6bf971e36996a5eb48a3a43073aaf1b", "notes": [], "params": { "forceDirect": false, @@ -114036,7 +114396,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d7ccbc14e65eb279a24a900729d1b8a9", + "key": "89af1f7aad2387fbdff523a2c2261784", "notes": [], "params": { "correctionVolume": 0.0, @@ -114056,7 +114416,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "cea54129787e55ba3d724b4e87416f1d", + "key": "b24961e7fcaa068a20ce2069973dbfc0", "notes": [], "params": { "seconds": 1.0 @@ -114070,7 +114430,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "42e1e90041f5527417955a8840c1ea3d", + "key": "fbaa98fbca341d3b266dcb85bdabee93", "notes": [], "params": { "pipetteId": "UUID", @@ -114086,7 +114446,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "181510d31343abc5c147b76638b8817f", + "key": "5b76daac85984114e96a3d9ff6f21fe7", "notes": [], "params": { "pipetteId": "UUID" @@ -114100,7 +114460,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "0a99e1661ab10c882ef81e69da981a20", + "key": "456b611f185c2cff3a6930d004e2e91c", "notes": [], "params": { "forceDirect": false, @@ -114132,7 +114492,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c47e90d906af030660d194885f035b2a", + "key": "caf1bba7933e4d417298ec5208d5630c", "notes": [], "params": { "forceDirect": true, @@ -114165,7 +114525,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aab8c27824369ca8d67b029c83e09541", + "key": "a5f709e1d60e00f3b4d78a23412050dd", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -114184,7 +114544,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1f35bb394c3339a8ac87ebe3132adb6f", + "key": "37607b975dc00566a6ff0c9be38e43e0", "notes": [], "params": { "seconds": 0.2 @@ -114198,7 +114558,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e25bfa0bc65fcfb564d3f4e181487257", + "key": "ed5b6b185a3b154303c69ba070a707b4", "notes": [], "params": { "forceDirect": true, @@ -114231,7 +114591,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "00615ae4d62824274612ea415317f1aa", + "key": "f0d63ce7e5134e52dcef729b9c77449d", "notes": [], "params": { "seconds": 0.5 @@ -114245,7 +114605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "36b442913dca29331cf5b574aaac0cb9", + "key": "9a2fe4f7d9f79aa072e39a1562aa3a7c", "notes": [], "params": { "correctionVolume": -8.453333333333333, @@ -114264,7 +114624,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b2387fff2d97943345e0e861c3ae70e6", + "key": "f17c9bba43141363ab54bb1fcbcfdf94", "notes": [], "params": { "seconds": 0.2 @@ -114278,7 +114638,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "8cea4e434d444cd23668830b482b9614", + "key": "85182ea74975d7b4fad74de7b7e4acb9", "notes": [], "params": { "forceDirect": false, @@ -114310,7 +114670,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "327170e766005ca44d7ac054e3c410d5", + "key": "276b46264fa83c2c2a0df269582d35b2", "notes": [], "params": { "correctionVolume": -8.006666666666668, @@ -114330,7 +114690,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "4ce3f1e66fb129382e69bf83e92ef2e8", + "key": "69bfeb612a0488719986dc260694cb0b", "notes": [], "params": { "seconds": 1.0 @@ -114344,7 +114704,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "61251e988ab6963293432d8c0fc4287b", + "key": "9cc8c35db210f5a20c7f7fba3c7f6b55", "notes": [], "params": { "forceDirect": true, @@ -114377,7 +114737,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9edba18d0cca44e977a952e8c43ea3a9", + "key": "a0e213e387661f919b3882ed2eea2cd8", "notes": [], "params": { "correctionVolume": 0.0, @@ -114397,7 +114757,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "9c91bcc0a2e7f76b607e3c94b199d6ea", + "key": "c3e8f350319117130f2c9b1481619d77", "notes": [], "params": { "seconds": 1.0 @@ -114411,7 +114771,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "7340208ddef4a7f0209aeba8e3824282", + "key": "4b15cd651a7a3dc959d610f779e169ae", "notes": [], "params": { "forceDirect": true, @@ -114444,7 +114804,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3b113f80e44ff47fefcc775ce1b6f5e2", + "key": "3b534bad38d8691ccb10420735867572", "notes": [], "params": { "seconds": 0.5 @@ -114458,7 +114818,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ecc55ce5eb0b8cbbc67757b65fe16fda", + "key": "57a49e5936c18a2ff4571d3ac78586fc", "notes": [], "params": { "correctionVolume": -0.6888888888888889, @@ -114477,7 +114837,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "37f449495c49be05d7cedd2d1ba79508", + "key": "b6084cd9f8529149879cfefb689470d2", "notes": [], "params": { "seconds": 0.2 @@ -114491,7 +114851,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d5833928b0ee127398e9e6399b4c4abf", + "key": "288f7b33c6461cf5c907eef9d0eeb71a", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -114520,7 +114880,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "dd97786c6e67e6be54e90f13f6c9ed21", + "key": "58e8c36e242fea2cc5636f95d6b5e7a2", "notes": [], "params": { "homeAfter": false, @@ -114535,7 +114895,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "1580c80cb46c9522948665903ce10b9f", + "key": "aad066a7b8dbf8b62b93301f073207b9", "notes": [], "params": { "liquidClassRecord": { @@ -114898,7 +115258,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b08f0625e4ef44d33f5b862d4b29ab7b", + "key": "348dc92ce7900b3a8601f07ad0415e4a", "notes": [], "params": { "labwareIds": [ @@ -114920,7 +115280,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "aa3d459a455010ee6cb2f84f71bf38a1", + "key": "242bef43df55de41f18762c9b844c1ee", "notes": [], "params": { "labwareId": "UUID", @@ -114953,7 +115313,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "d49a6efe05681ce58a41120e641c41a5", + "key": "6d44b9a26ed23ee3a9dae4d8619cd9e8", "notes": [], "params": { "forceDirect": false, @@ -114985,7 +115345,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "74ba85049229fd55449eff0059da2064", + "key": "05d669f7da41794e14f42ada576e3e9e", "notes": [], "params": { "pipetteId": "UUID", @@ -115001,7 +115361,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f52bac9312d1d6391f523370c1d95f83", + "key": "1734fc3eb26df595f862aa37dd4ea23e", "notes": [], "params": { "pipetteId": "UUID" @@ -115015,7 +115375,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "abbbde4dc58e830e034572f3e824966a", + "key": "cfd4b3ccfbe7626d51a6960c95cd7ae0", "notes": [], "params": { "forceDirect": false, @@ -115047,7 +115407,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "ceefedb266795fae2b749e1f67a6023e", + "key": "6fc829973fd1ef1d25509f44e5093947", "notes": [], "params": { "forceDirect": true, @@ -115080,7 +115440,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f1447c74385cf8b5573dff8f8c6eee08", + "key": "0d08f685b2b15dcaff226e8b5ad953fd", "notes": [], "params": { "correctionVolume": -0.7333333333333334, @@ -115099,7 +115459,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "79a4b805b89bfab13757bb0ed0b0b961", + "key": "868d850cb71bab372b057cf6f54b04f3", "notes": [], "params": { "seconds": 1.0 @@ -115113,7 +115473,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "84be2c05a82c0d7bafa65b0cee24e945", + "key": "2f6453b5b64498d6b604059b2554ad3c", "notes": [], "params": { "forceDirect": true, @@ -115146,7 +115506,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "5ce754ce2ea9bd3cbc4749a379fcc4f7", + "key": "5d4a9e71f2f1a771c7f262e1c9af6ef6", "notes": [], "params": { "forceDirect": false, @@ -115178,7 +115538,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "32079581f88d6d3f6798702741513b2c", + "key": "764511cda18d416428994053fb07ca4e", "notes": [], "params": { "forceDirect": true, @@ -115211,7 +115571,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "bc7ef7efc4292338721818309d388256", + "key": "cbae269072dc418a6cdbe1aad4095b52", "notes": [], "params": { "correctionVolume": 0.0, @@ -115231,7 +115591,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "90c25c1701e608d7ec4b57d42859d11c", + "key": "05415292dc4421c8432a0991a64ec9ad", "notes": [], "params": { "seconds": 0.5 @@ -115245,7 +115605,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "19ff468e1cdeda496ccabb4b669cba23", + "key": "82b156f68b040aae8ee3652a877594bb", "notes": [], "params": { "forceDirect": true, @@ -115278,7 +115638,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "23f1e4200824b296f6b65bdc6677ae5b", + "key": "221c36e5edf3c8ca8c3ba9df35101be3", "notes": [], "params": { "pipetteId": "UUID" @@ -115292,7 +115652,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "c2737c02b3ad4582f9cd3f6221ec9409", + "key": "7d522e3232d3c299a2a07af1d5785a0e", "notes": [], "params": { "forceDirect": false, @@ -115324,7 +115684,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "24bbdfd4227a26b5adce37c823a1de52", + "key": "a14193c498e12e01295fb3ad9fd47e1d", "notes": [], "params": { "pipetteId": "UUID", @@ -115340,7 +115700,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "99bfcb73c63f0afbfbe9efc63e4c9840", + "key": "61d0b017d6a40e9fa4e67c09ab845dd0", "notes": [], "params": { "pipetteId": "UUID" @@ -115354,7 +115714,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "edc4370b7b100afb41f6b759e3eb06ab", + "key": "340f72679414ba6e87a643a3936ccab3", "notes": [], "params": { "forceDirect": false, @@ -115386,7 +115746,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "b4775e605dcf9c3fdfd0d19d7c606977", + "key": "ef8c95ca14a2f47b9d04f1bf1a8b95da", "notes": [], "params": { "forceDirect": true, @@ -115419,7 +115779,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "f33ac35acc09e060a12cb3507a7b735d", + "key": "621fbd2d97aa58466d2b2b1b40835de1", "notes": [], "params": { "correctionVolume": -0.7333333333333334, @@ -115438,7 +115798,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "6dd817724c469c80c084c9bef676bd3e", + "key": "87b98c82cc0dead8bcfdfdcca1308fdf", "notes": [], "params": { "seconds": 1.0 @@ -115452,7 +115812,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eade1df85d35a9d79549aacb56998ad1", + "key": "a4407484fe3e82ba7809dd38400a4a43", "notes": [], "params": { "forceDirect": true, @@ -115485,7 +115845,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "eeeac12089416552ffb8af5919baaa69", + "key": "ff52cdd2510dcc5c77da25e584418125", "notes": [], "params": { "forceDirect": false, @@ -115517,7 +115877,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "fa67cae6e84eda5ede98ebe3a1179a97", + "key": "a185f2d9b34f0884665fa69ad6e01d14", "notes": [], "params": { "forceDirect": true, @@ -115550,7 +115910,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "e8fd4efe49bc4d86071273f9b0165fcd", + "key": "493afb4b132437659a37949f72132abe", "notes": [], "params": { "correctionVolume": 0.0, @@ -115570,7 +115930,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "83d872dda08494e406668ad8f4599d8c", + "key": "c7006bf6cf56ca7ad65533d87288ce35", "notes": [], "params": { "seconds": 0.5 @@ -115584,7 +115944,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "105b173836ff6b1476431348ea9d8b1e", + "key": "0d6c9ac7e33ad4f6e52e73a96f13c888", "notes": [], "params": { "forceDirect": true, @@ -115617,7 +115977,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "a628a594ed7a7dc6dfe802176c8bbebb", + "key": "458283b6520d03d062af3d81895e7250", "notes": [], "params": { "pipetteId": "UUID" @@ -115631,7 +115991,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "30fbd2c1b0b3ab6241867e91b3b015ac", + "key": "89f6f0535299270151f9849ad07de179", "notes": [], "params": { "addressableAreaName": "movableTrashA3", @@ -115660,7 +116020,7 @@ "completedAt": "TIMESTAMP", "createdAt": "TIMESTAMP", "id": "UUID", - "key": "3278c33129b7c208de521e48003ac228", + "key": "57c7e913079d8e2ee3af548acda14aff", "notes": [], "params": { "homeAfter": false, @@ -116044,7 +116404,7 @@ ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 50.0, "location": "destination" @@ -116847,7 +117207,7 @@ "delay": { "enable": true, "params": { - "duration": 0.5 + "duration": 1.0 } }, "flowRateByVolume": [ @@ -116879,11 +117239,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -116918,7 +117278,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -117069,7 +117429,7 @@ "delay": { "enable": false, "params": { - "duration": 0.0 + "duration": 0.5 } }, "dispensePosition": { @@ -117104,7 +117464,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -117114,18 +117474,18 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { - "flowRate": 478.0, + "flowRate": 318.0, "location": "destination" } }, @@ -117160,7 +117520,7 @@ "duration": 0.0 } }, - "speed": 100, + "speed": 50, "startPosition": { "offset": { "x": 0, @@ -119045,11 +119405,11 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], @@ -119270,7 +119630,7 @@ "pushOutByVolume": [ [ 1.0, - 20.0 + 5.0 ] ], "retract": { @@ -119280,16 +119640,16 @@ 50.0 ], [ - 1.0, + 0.1, 1.0 ], [ - 1.0, + 0.1, 49.0 ] ], "blowout": { - "enable": false, + "enable": true, "params": { "flowRate": 478.0, "location": "destination" From ea3bb8a60cc30db3dc6c12700b646086be3d8171 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 7 Aug 2025 13:57:35 -0400 Subject: [PATCH 63/63] fix(analyses-snapshot-testing): heal EXEC-1370-pt4 snapshots (#19154) This PR was requested on the PR https://github.com/Opentrons/opentrons/pull/19141 Co-authored-by: ryanthecoder <5885321+ryanthecoder@users.noreply.github.com> --- ...x_S_v2_25_P50_P200_stacker_all_parts].json | 91933 +++++++++- ...lex_S_v2_18_PL_Illumina-DNA-Prep-96x].json | 141847 ++++++++++++++- ...meWT-kit-Parse-Biosciences-protocol3].json | 126594 ++++++++++++- ...P1000S_None_SimpleNormalizeLongRight].json | 126528 ++++++++++++- ...meWT-kit-Parse-Biosciences-protocol1].json | 98320 +++++++++- 5 files changed, 585217 insertions(+), 5 deletions(-) diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13cc2361a9][Flex_S_v2_25_P50_P200_stacker_all_parts].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13cc2361a9][Flex_S_v2_25_P50_P200_stacker_all_parts].json index 0b9d36937ed..a37a47b6477 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13cc2361a9][Flex_S_v2_25_P50_P200_stacker_all_parts].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[13cc2361a9][Flex_S_v2_25_P50_P200_stacker_all_parts].json @@ -1,3 +1,91934 @@ { - "error": "Analysis timed out after 120 seconds" + "commandAnnotations": [], + "commands": [ + { + "commandType": "home", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50c7ae73a4e3f7129874f39dfb514803", + "notes": [], + "params": {}, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c3bb3b5f63458c1ff149d26e64d98b5", + "notes": [], + "params": { + "liquidPresenceDetection": false, + "mount": "left", + "pipetteName": "p1000_96", + "tipOverlapNotAfterVersion": "v3" + }, + "result": { + "pipetteId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "151e362dbbab7b55627529b0c8efedc6", + "notes": [], + "params": { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "model": "thermocyclerModuleV2", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "593745772d5b73b33d06f074c856bc26", + "notes": [], + "params": { + "displayName": "Sample Plate 1", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 4 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "compatibleParentLabware": [ + "opentrons_96_wellplate_200ul_pcr_full_skirt" + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "bottomDiameter": 5.5, + "bottomHeight": 11.35, + "shape": "conical", + "topDiameter": 5.5, + "topHeight": 14.95, + "xCount": 1, + "yCount": 1 + }, + { + "bottomDiameter": 2.33, + "bottomHeight": 0.8, + "shape": "conical", + "topDiameter": 5.5, + "topHeight": 11.35, + "xCount": 1, + "yCount": 1 + }, + { + "bottomHeight": 0.0, + "radiusOfCurvature": 1.25, + "shape": "spherical", + "topHeight": 0.8, + "xCount": 1, + "yCount": 1 + } + ] + } + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackLimit": 4, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + }, + "opentrons_96_wellplate_200ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 3.68 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 4, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00218af81801271288c55c011277b6ba", + "notes": [], + "params": { + "displayName": "Sample Plate 2", + "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "A2" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "custom" + }, + "compatibleParentLabware": [ + "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt" + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Stackable Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackLimit": 5, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + }, + "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 2.9 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 1, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d6f9b11f0b21b3dd489800f75d012ab", + "notes": [], + "params": { + "displayName": "Sample Plate 3", + "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "labwareId": "UUID" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "custom" + }, + "compatibleParentLabware": [ + "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt" + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Stackable Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackLimit": 5, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + }, + "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 2.9 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 1, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2843f79ae524d5bfdba28c8310d4009", + "notes": [], + "params": { + "location": { + "slotName": "A3" + }, + "model": "flexStackerModuleV1" + }, + "result": { + "model": "flexStackerModuleV1", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/setStoredLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb6a402f94b273303b76cdcb2031895b", + "notes": [], + "params": { + "initialCount": 6, + "lidLabware": { + "loadName": "opentrons_flex_tiprack_lid", + "namespace": "opentrons", + "version": 1 + }, + "moduleId": "UUID", + "primaryLabware": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "namespace": "opentrons", + "version": 1 + } + }, + "result": { + "count": 6, + "lidLabwareDefinition": { + "allowedRoles": [ + "labware", + "lid" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "compatibleParentLabware": [ + "opentrons_flex_96_filtertiprack_1000ul", + "opentrons_flex_96_filtertiprack_200ul", + "opentrons_flex_96_filtertiprack_50ul", + "opentrons_flex_96_tiprack_1000ul", + "opentrons_flex_96_tiprack_200ul", + "opentrons_flex_96_tiprack_20ul", + "opentrons_flex_96_tiprack_50ul" + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.7, + "yDimension": 78.75, + "zDimension": 17 + }, + "gripForce": 10.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "lidDisposalOffsets": { + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "lid", + "displayName": "Opentrons Flex Tip Rack Lid", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "irregular", + "isDeckSlotCompatible": false, + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_tiprack_lid", + "quirks": [] + }, + "schemaVersion": 2, + "stackLimit": 1, + "stackingOffsetWithLabware": { + "default": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_1000ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_200ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_50ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_1000ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_200ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_20ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_50ul": { + "x": 0, + "y": 0, + "z": 14.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + }, + "newLidLabwareLocationSequences": [ + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ] + ], + "newPrimaryLabwareLocationSequences": [ + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ] + ], + "originalLidLabwareLocationSequences": [ + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ] + ], + "originalPrimaryLabwareLocationSequences": [ + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ] + ], + "primaryLabwareDefinition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "storedLabware": [ + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c56a1a29dea1345468e9d28062873ae5", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "A3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": -14.25, + "y": -3.5, + "z": 0 + }, + "dimensions": { + "xDimension": 156.5, + "yDimension": 93, + "zDimension": 132 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons Flex 96 Tip Rack Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_96_tiprack_adapter", + "quirks": [ + "tiprackAdapterFor96Channel" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ec37692fd6d17393d647d9dbb3d0f6a", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "labwareId": "UUID" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c08ed51b19739ee99128aac32c0692f", + "notes": [], + "params": { + "displayName": "Reagent Plate 2", + "loadName": "biorad_384_wellplate_50ul", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 4 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Bio-Rad", + "brandId": [ + "HSP3801", + "HSP3805", + "HSP3901", + "HSP3905", + "HSP3xxx", + "HSR4801", + "HSR4805", + "HSR4xxx" + ], + "links": [ + "https://www.bio-rad.com/en-us/sku/HSP3805-hard-shell-384-well-pcr-plates-thin-wall-skirted-clear-white?ID=HSP3805" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 10.4 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 9.3, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A13", + "A14", + "A15", + "A16", + "A17", + "A18", + "A19", + "A2", + "A20", + "A21", + "A22", + "A23", + "A24", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B13", + "B14", + "B15", + "B16", + "B17", + "B18", + "B19", + "B2", + "B20", + "B21", + "B22", + "B23", + "B24", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C13", + "C14", + "C15", + "C16", + "C17", + "C18", + "C19", + "C2", + "C20", + "C21", + "C22", + "C23", + "C24", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D13", + "D14", + "D15", + "D16", + "D17", + "D18", + "D19", + "D2", + "D20", + "D21", + "D22", + "D23", + "D24", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E13", + "E14", + "E15", + "E16", + "E17", + "E18", + "E19", + "E2", + "E20", + "E21", + "E22", + "E23", + "E24", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F13", + "F14", + "F15", + "F16", + "F17", + "F18", + "F19", + "F2", + "F20", + "F21", + "F22", + "F23", + "F24", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G13", + "G14", + "G15", + "G16", + "G17", + "G18", + "G19", + "G2", + "G20", + "G21", + "G22", + "G23", + "G24", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H13", + "H14", + "H15", + "H16", + "H17", + "H18", + "H19", + "H2", + "H20", + "H21", + "H22", + "H23", + "H24", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9", + "I1", + "I10", + "I11", + "I12", + "I13", + "I14", + "I15", + "I16", + "I17", + "I18", + "I19", + "I2", + "I20", + "I21", + "I22", + "I23", + "I24", + "I3", + "I4", + "I5", + "I6", + "I7", + "I8", + "I9", + "J1", + "J10", + "J11", + "J12", + "J13", + "J14", + "J15", + "J16", + "J17", + "J18", + "J19", + "J2", + "J20", + "J21", + "J22", + "J23", + "J24", + "J3", + "J4", + "J5", + "J6", + "J7", + "J8", + "J9", + "K1", + "K10", + "K11", + "K12", + "K13", + "K14", + "K15", + "K16", + "K17", + "K18", + "K19", + "K2", + "K20", + "K21", + "K22", + "K23", + "K24", + "K3", + "K4", + "K5", + "K6", + "K7", + "K8", + "K9", + "L1", + "L10", + "L11", + "L12", + "L13", + "L14", + "L15", + "L16", + "L17", + "L18", + "L19", + "L2", + "L20", + "L21", + "L22", + "L23", + "L24", + "L3", + "L4", + "L5", + "L6", + "L7", + "L8", + "L9", + "M1", + "M10", + "M11", + "M12", + "M13", + "M14", + "M15", + "M16", + "M17", + "M18", + "M19", + "M2", + "M20", + "M21", + "M22", + "M23", + "M24", + "M3", + "M4", + "M5", + "M6", + "M7", + "M8", + "M9", + "N1", + "N10", + "N11", + "N12", + "N13", + "N14", + "N15", + "N16", + "N17", + "N18", + "N19", + "N2", + "N20", + "N21", + "N22", + "N23", + "N24", + "N3", + "N4", + "N5", + "N6", + "N7", + "N8", + "N9", + "O1", + "O10", + "O11", + "O12", + "O13", + "O14", + "O15", + "O16", + "O17", + "O18", + "O19", + "O2", + "O20", + "O21", + "O22", + "O23", + "O24", + "O3", + "O4", + "O5", + "O6", + "O7", + "O8", + "O9", + "P1", + "P10", + "P11", + "P12", + "P13", + "P14", + "P15", + "P16", + "P17", + "P18", + "P19", + "P2", + "P20", + "P21", + "P22", + "P23", + "P24", + "P3", + "P4", + "P5", + "P6", + "P7", + "P8", + "P9" + ] + } + ], + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "bottomDiameter": 3, + "bottomHeight": 5.35, + "shape": "conical", + "topDiameter": 3.1, + "topHeight": 9.35, + "xCount": 1, + "yCount": 1 + }, + { + "bottomDiameter": 1.46, + "bottomHeight": 0.35, + "shape": "conical", + "topDiameter": 3, + "topHeight": 5.35, + "xCount": 1, + "yCount": 1 + }, + { + "bottomHeight": 0.0, + "radiusOfCurvature": 0.94, + "shape": "spherical", + "topHeight": 0.35, + "xCount": 1, + "yCount": 1 + } + ] + } + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Bio-Rad 384 Well Plate 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12" + ], + [ + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13" + ], + [ + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14" + ], + [ + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15" + ], + [ + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16" + ], + [ + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17" + ], + [ + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18" + ], + [ + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2" + ], + [ + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20" + ], + [ + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21" + ], + [ + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22" + ], + [ + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23" + ], + [ + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9" + ] + ], + "parameters": { + "format": "384Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "biorad_384_wellplate_50ul", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "biorad_384_wellplate_50ul": { + "x": 0, + "y": 0, + "z": 1.95 + } + }, + "stackingOffsetWithModule": {}, + "version": 4, + "wells": { + "A1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 76.49, + "z": 1.05 + }, + "A10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 76.49, + "z": 1.05 + }, + "A11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 76.49, + "z": 1.05 + }, + "A12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 76.49, + "z": 1.05 + }, + "A13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 76.49, + "z": 1.05 + }, + "A14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 76.49, + "z": 1.05 + }, + "A15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 76.49, + "z": 1.05 + }, + "A16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 76.49, + "z": 1.05 + }, + "A17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 76.49, + "z": 1.05 + }, + "A18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 76.49, + "z": 1.05 + }, + "A19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 76.49, + "z": 1.05 + }, + "A2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 76.49, + "z": 1.05 + }, + "A20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 76.49, + "z": 1.05 + }, + "A21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 76.49, + "z": 1.05 + }, + "A22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 76.49, + "z": 1.05 + }, + "A23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 76.49, + "z": 1.05 + }, + "A24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 76.49, + "z": 1.05 + }, + "A3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 76.49, + "z": 1.05 + }, + "A4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 76.49, + "z": 1.05 + }, + "A5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 76.49, + "z": 1.05 + }, + "A6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 76.49, + "z": 1.05 + }, + "A7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 76.49, + "z": 1.05 + }, + "A8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 76.49, + "z": 1.05 + }, + "A9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 76.49, + "z": 1.05 + }, + "B1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 71.99, + "z": 1.05 + }, + "B10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 71.99, + "z": 1.05 + }, + "B11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 71.99, + "z": 1.05 + }, + "B12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 71.99, + "z": 1.05 + }, + "B13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 71.99, + "z": 1.05 + }, + "B14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 71.99, + "z": 1.05 + }, + "B15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 71.99, + "z": 1.05 + }, + "B16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 71.99, + "z": 1.05 + }, + "B17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 71.99, + "z": 1.05 + }, + "B18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 71.99, + "z": 1.05 + }, + "B19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 71.99, + "z": 1.05 + }, + "B2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 71.99, + "z": 1.05 + }, + "B20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 71.99, + "z": 1.05 + }, + "B21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 71.99, + "z": 1.05 + }, + "B22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 71.99, + "z": 1.05 + }, + "B23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 71.99, + "z": 1.05 + }, + "B24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 71.99, + "z": 1.05 + }, + "B3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 71.99, + "z": 1.05 + }, + "B4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 71.99, + "z": 1.05 + }, + "B5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 71.99, + "z": 1.05 + }, + "B6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 71.99, + "z": 1.05 + }, + "B7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 71.99, + "z": 1.05 + }, + "B8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 71.99, + "z": 1.05 + }, + "B9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 71.99, + "z": 1.05 + }, + "C1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 67.49, + "z": 1.05 + }, + "C10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 67.49, + "z": 1.05 + }, + "C11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 67.49, + "z": 1.05 + }, + "C12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 67.49, + "z": 1.05 + }, + "C13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 67.49, + "z": 1.05 + }, + "C14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 67.49, + "z": 1.05 + }, + "C15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 67.49, + "z": 1.05 + }, + "C16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 67.49, + "z": 1.05 + }, + "C17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 67.49, + "z": 1.05 + }, + "C18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 67.49, + "z": 1.05 + }, + "C19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 67.49, + "z": 1.05 + }, + "C2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 67.49, + "z": 1.05 + }, + "C20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 67.49, + "z": 1.05 + }, + "C21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 67.49, + "z": 1.05 + }, + "C22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 67.49, + "z": 1.05 + }, + "C23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 67.49, + "z": 1.05 + }, + "C24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 67.49, + "z": 1.05 + }, + "C3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 67.49, + "z": 1.05 + }, + "C4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 67.49, + "z": 1.05 + }, + "C5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 67.49, + "z": 1.05 + }, + "C6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 67.49, + "z": 1.05 + }, + "C7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 67.49, + "z": 1.05 + }, + "C8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 67.49, + "z": 1.05 + }, + "C9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 67.49, + "z": 1.05 + }, + "D1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 62.99, + "z": 1.05 + }, + "D10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 62.99, + "z": 1.05 + }, + "D11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 62.99, + "z": 1.05 + }, + "D12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 62.99, + "z": 1.05 + }, + "D13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 62.99, + "z": 1.05 + }, + "D14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 62.99, + "z": 1.05 + }, + "D15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 62.99, + "z": 1.05 + }, + "D16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 62.99, + "z": 1.05 + }, + "D17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 62.99, + "z": 1.05 + }, + "D18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 62.99, + "z": 1.05 + }, + "D19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 62.99, + "z": 1.05 + }, + "D2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 62.99, + "z": 1.05 + }, + "D20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 62.99, + "z": 1.05 + }, + "D21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 62.99, + "z": 1.05 + }, + "D22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 62.99, + "z": 1.05 + }, + "D23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 62.99, + "z": 1.05 + }, + "D24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 62.99, + "z": 1.05 + }, + "D3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 62.99, + "z": 1.05 + }, + "D4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 62.99, + "z": 1.05 + }, + "D5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 62.99, + "z": 1.05 + }, + "D6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 62.99, + "z": 1.05 + }, + "D7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 62.99, + "z": 1.05 + }, + "D8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 62.99, + "z": 1.05 + }, + "D9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 62.99, + "z": 1.05 + }, + "E1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 58.49, + "z": 1.05 + }, + "E10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 58.49, + "z": 1.05 + }, + "E11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 58.49, + "z": 1.05 + }, + "E12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 58.49, + "z": 1.05 + }, + "E13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 58.49, + "z": 1.05 + }, + "E14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 58.49, + "z": 1.05 + }, + "E15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 58.49, + "z": 1.05 + }, + "E16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 58.49, + "z": 1.05 + }, + "E17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 58.49, + "z": 1.05 + }, + "E18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 58.49, + "z": 1.05 + }, + "E19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 58.49, + "z": 1.05 + }, + "E2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 58.49, + "z": 1.05 + }, + "E20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 58.49, + "z": 1.05 + }, + "E21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 58.49, + "z": 1.05 + }, + "E22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 58.49, + "z": 1.05 + }, + "E23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 58.49, + "z": 1.05 + }, + "E24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 58.49, + "z": 1.05 + }, + "E3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 58.49, + "z": 1.05 + }, + "E4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 58.49, + "z": 1.05 + }, + "E5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 58.49, + "z": 1.05 + }, + "E6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 58.49, + "z": 1.05 + }, + "E7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 58.49, + "z": 1.05 + }, + "E8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 58.49, + "z": 1.05 + }, + "E9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 58.49, + "z": 1.05 + }, + "F1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 53.99, + "z": 1.05 + }, + "F10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 53.99, + "z": 1.05 + }, + "F11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 53.99, + "z": 1.05 + }, + "F12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 53.99, + "z": 1.05 + }, + "F13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 53.99, + "z": 1.05 + }, + "F14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 53.99, + "z": 1.05 + }, + "F15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 53.99, + "z": 1.05 + }, + "F16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 53.99, + "z": 1.05 + }, + "F17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 53.99, + "z": 1.05 + }, + "F18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 53.99, + "z": 1.05 + }, + "F19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 53.99, + "z": 1.05 + }, + "F2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 53.99, + "z": 1.05 + }, + "F20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 53.99, + "z": 1.05 + }, + "F21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 53.99, + "z": 1.05 + }, + "F22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 53.99, + "z": 1.05 + }, + "F23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 53.99, + "z": 1.05 + }, + "F24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 53.99, + "z": 1.05 + }, + "F3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 53.99, + "z": 1.05 + }, + "F4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 53.99, + "z": 1.05 + }, + "F5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 53.99, + "z": 1.05 + }, + "F6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 53.99, + "z": 1.05 + }, + "F7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 53.99, + "z": 1.05 + }, + "F8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 53.99, + "z": 1.05 + }, + "F9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 53.99, + "z": 1.05 + }, + "G1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 49.49, + "z": 1.05 + }, + "G10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 49.49, + "z": 1.05 + }, + "G11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 49.49, + "z": 1.05 + }, + "G12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 49.49, + "z": 1.05 + }, + "G13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 49.49, + "z": 1.05 + }, + "G14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 49.49, + "z": 1.05 + }, + "G15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 49.49, + "z": 1.05 + }, + "G16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 49.49, + "z": 1.05 + }, + "G17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 49.49, + "z": 1.05 + }, + "G18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 49.49, + "z": 1.05 + }, + "G19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 49.49, + "z": 1.05 + }, + "G2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 49.49, + "z": 1.05 + }, + "G20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 49.49, + "z": 1.05 + }, + "G21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 49.49, + "z": 1.05 + }, + "G22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 49.49, + "z": 1.05 + }, + "G23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 49.49, + "z": 1.05 + }, + "G24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 49.49, + "z": 1.05 + }, + "G3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 49.49, + "z": 1.05 + }, + "G4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 49.49, + "z": 1.05 + }, + "G5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 49.49, + "z": 1.05 + }, + "G6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 49.49, + "z": 1.05 + }, + "G7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 49.49, + "z": 1.05 + }, + "G8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 49.49, + "z": 1.05 + }, + "G9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 49.49, + "z": 1.05 + }, + "H1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 44.99, + "z": 1.05 + }, + "H10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 44.99, + "z": 1.05 + }, + "H11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 44.99, + "z": 1.05 + }, + "H12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 44.99, + "z": 1.05 + }, + "H13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 44.99, + "z": 1.05 + }, + "H14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 44.99, + "z": 1.05 + }, + "H15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 44.99, + "z": 1.05 + }, + "H16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 44.99, + "z": 1.05 + }, + "H17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 44.99, + "z": 1.05 + }, + "H18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 44.99, + "z": 1.05 + }, + "H19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 44.99, + "z": 1.05 + }, + "H2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 44.99, + "z": 1.05 + }, + "H20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 44.99, + "z": 1.05 + }, + "H21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 44.99, + "z": 1.05 + }, + "H22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 44.99, + "z": 1.05 + }, + "H23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 44.99, + "z": 1.05 + }, + "H24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 44.99, + "z": 1.05 + }, + "H3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 44.99, + "z": 1.05 + }, + "H4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 44.99, + "z": 1.05 + }, + "H5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 44.99, + "z": 1.05 + }, + "H6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 44.99, + "z": 1.05 + }, + "H7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 44.99, + "z": 1.05 + }, + "H8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 44.99, + "z": 1.05 + }, + "H9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 44.99, + "z": 1.05 + }, + "I1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 40.49, + "z": 1.05 + }, + "I10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 40.49, + "z": 1.05 + }, + "I11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 40.49, + "z": 1.05 + }, + "I12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 40.49, + "z": 1.05 + }, + "I13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 40.49, + "z": 1.05 + }, + "I14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 40.49, + "z": 1.05 + }, + "I15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 40.49, + "z": 1.05 + }, + "I16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 40.49, + "z": 1.05 + }, + "I17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 40.49, + "z": 1.05 + }, + "I18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 40.49, + "z": 1.05 + }, + "I19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 40.49, + "z": 1.05 + }, + "I2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 40.49, + "z": 1.05 + }, + "I20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 40.49, + "z": 1.05 + }, + "I21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 40.49, + "z": 1.05 + }, + "I22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 40.49, + "z": 1.05 + }, + "I23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 40.49, + "z": 1.05 + }, + "I24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 40.49, + "z": 1.05 + }, + "I3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 40.49, + "z": 1.05 + }, + "I4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 40.49, + "z": 1.05 + }, + "I5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 40.49, + "z": 1.05 + }, + "I6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 40.49, + "z": 1.05 + }, + "I7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 40.49, + "z": 1.05 + }, + "I8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 40.49, + "z": 1.05 + }, + "I9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 40.49, + "z": 1.05 + }, + "J1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 35.99, + "z": 1.05 + }, + "J10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 35.99, + "z": 1.05 + }, + "J11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 35.99, + "z": 1.05 + }, + "J12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 35.99, + "z": 1.05 + }, + "J13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 35.99, + "z": 1.05 + }, + "J14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 35.99, + "z": 1.05 + }, + "J15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 35.99, + "z": 1.05 + }, + "J16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 35.99, + "z": 1.05 + }, + "J17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 35.99, + "z": 1.05 + }, + "J18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 35.99, + "z": 1.05 + }, + "J19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 35.99, + "z": 1.05 + }, + "J2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 35.99, + "z": 1.05 + }, + "J20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 35.99, + "z": 1.05 + }, + "J21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 35.99, + "z": 1.05 + }, + "J22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 35.99, + "z": 1.05 + }, + "J23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 35.99, + "z": 1.05 + }, + "J24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 35.99, + "z": 1.05 + }, + "J3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 35.99, + "z": 1.05 + }, + "J4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 35.99, + "z": 1.05 + }, + "J5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 35.99, + "z": 1.05 + }, + "J6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 35.99, + "z": 1.05 + }, + "J7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 35.99, + "z": 1.05 + }, + "J8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 35.99, + "z": 1.05 + }, + "J9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 35.99, + "z": 1.05 + }, + "K1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 31.49, + "z": 1.05 + }, + "K10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 31.49, + "z": 1.05 + }, + "K11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 31.49, + "z": 1.05 + }, + "K12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 31.49, + "z": 1.05 + }, + "K13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 31.49, + "z": 1.05 + }, + "K14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 31.49, + "z": 1.05 + }, + "K15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 31.49, + "z": 1.05 + }, + "K16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 31.49, + "z": 1.05 + }, + "K17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 31.49, + "z": 1.05 + }, + "K18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 31.49, + "z": 1.05 + }, + "K19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 31.49, + "z": 1.05 + }, + "K2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 31.49, + "z": 1.05 + }, + "K20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 31.49, + "z": 1.05 + }, + "K21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 31.49, + "z": 1.05 + }, + "K22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 31.49, + "z": 1.05 + }, + "K23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 31.49, + "z": 1.05 + }, + "K24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 31.49, + "z": 1.05 + }, + "K3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 31.49, + "z": 1.05 + }, + "K4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 31.49, + "z": 1.05 + }, + "K5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 31.49, + "z": 1.05 + }, + "K6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 31.49, + "z": 1.05 + }, + "K7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 31.49, + "z": 1.05 + }, + "K8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 31.49, + "z": 1.05 + }, + "K9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 31.49, + "z": 1.05 + }, + "L1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 26.99, + "z": 1.05 + }, + "L10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 26.99, + "z": 1.05 + }, + "L11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 26.99, + "z": 1.05 + }, + "L12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 26.99, + "z": 1.05 + }, + "L13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 26.99, + "z": 1.05 + }, + "L14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 26.99, + "z": 1.05 + }, + "L15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 26.99, + "z": 1.05 + }, + "L16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 26.99, + "z": 1.05 + }, + "L17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 26.99, + "z": 1.05 + }, + "L18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 26.99, + "z": 1.05 + }, + "L19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 26.99, + "z": 1.05 + }, + "L2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 26.99, + "z": 1.05 + }, + "L20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 26.99, + "z": 1.05 + }, + "L21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 26.99, + "z": 1.05 + }, + "L22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 26.99, + "z": 1.05 + }, + "L23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 26.99, + "z": 1.05 + }, + "L24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 26.99, + "z": 1.05 + }, + "L3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 26.99, + "z": 1.05 + }, + "L4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 26.99, + "z": 1.05 + }, + "L5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 26.99, + "z": 1.05 + }, + "L6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 26.99, + "z": 1.05 + }, + "L7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 26.99, + "z": 1.05 + }, + "L8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 26.99, + "z": 1.05 + }, + "L9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 26.99, + "z": 1.05 + }, + "M1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 22.49, + "z": 1.05 + }, + "M10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 22.49, + "z": 1.05 + }, + "M11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 22.49, + "z": 1.05 + }, + "M12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 22.49, + "z": 1.05 + }, + "M13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 22.49, + "z": 1.05 + }, + "M14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 22.49, + "z": 1.05 + }, + "M15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 22.49, + "z": 1.05 + }, + "M16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 22.49, + "z": 1.05 + }, + "M17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 22.49, + "z": 1.05 + }, + "M18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 22.49, + "z": 1.05 + }, + "M19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 22.49, + "z": 1.05 + }, + "M2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 22.49, + "z": 1.05 + }, + "M20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 22.49, + "z": 1.05 + }, + "M21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 22.49, + "z": 1.05 + }, + "M22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 22.49, + "z": 1.05 + }, + "M23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 22.49, + "z": 1.05 + }, + "M24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 22.49, + "z": 1.05 + }, + "M3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 22.49, + "z": 1.05 + }, + "M4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 22.49, + "z": 1.05 + }, + "M5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 22.49, + "z": 1.05 + }, + "M6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 22.49, + "z": 1.05 + }, + "M7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 22.49, + "z": 1.05 + }, + "M8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 22.49, + "z": 1.05 + }, + "M9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 22.49, + "z": 1.05 + }, + "N1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 17.99, + "z": 1.05 + }, + "N10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 17.99, + "z": 1.05 + }, + "N11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 17.99, + "z": 1.05 + }, + "N12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 17.99, + "z": 1.05 + }, + "N13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 17.99, + "z": 1.05 + }, + "N14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 17.99, + "z": 1.05 + }, + "N15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 17.99, + "z": 1.05 + }, + "N16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 17.99, + "z": 1.05 + }, + "N17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 17.99, + "z": 1.05 + }, + "N18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 17.99, + "z": 1.05 + }, + "N19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 17.99, + "z": 1.05 + }, + "N2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 17.99, + "z": 1.05 + }, + "N20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 17.99, + "z": 1.05 + }, + "N21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 17.99, + "z": 1.05 + }, + "N22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 17.99, + "z": 1.05 + }, + "N23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 17.99, + "z": 1.05 + }, + "N24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 17.99, + "z": 1.05 + }, + "N3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 17.99, + "z": 1.05 + }, + "N4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 17.99, + "z": 1.05 + }, + "N5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 17.99, + "z": 1.05 + }, + "N6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 17.99, + "z": 1.05 + }, + "N7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 17.99, + "z": 1.05 + }, + "N8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 17.99, + "z": 1.05 + }, + "N9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 17.99, + "z": 1.05 + }, + "O1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 13.49, + "z": 1.05 + }, + "O10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 13.49, + "z": 1.05 + }, + "O11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 13.49, + "z": 1.05 + }, + "O12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 13.49, + "z": 1.05 + }, + "O13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 13.49, + "z": 1.05 + }, + "O14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 13.49, + "z": 1.05 + }, + "O15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 13.49, + "z": 1.05 + }, + "O16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 13.49, + "z": 1.05 + }, + "O17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 13.49, + "z": 1.05 + }, + "O18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 13.49, + "z": 1.05 + }, + "O19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 13.49, + "z": 1.05 + }, + "O2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 13.49, + "z": 1.05 + }, + "O20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 13.49, + "z": 1.05 + }, + "O21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 13.49, + "z": 1.05 + }, + "O22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 13.49, + "z": 1.05 + }, + "O23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 13.49, + "z": 1.05 + }, + "O24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 13.49, + "z": 1.05 + }, + "O3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 13.49, + "z": 1.05 + }, + "O4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 13.49, + "z": 1.05 + }, + "O5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 13.49, + "z": 1.05 + }, + "O6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 13.49, + "z": 1.05 + }, + "O7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 13.49, + "z": 1.05 + }, + "O8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 13.49, + "z": 1.05 + }, + "O9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 13.49, + "z": 1.05 + }, + "P1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 8.99, + "z": 1.05 + }, + "P10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 8.99, + "z": 1.05 + }, + "P11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 8.99, + "z": 1.05 + }, + "P12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 8.99, + "z": 1.05 + }, + "P13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 8.99, + "z": 1.05 + }, + "P14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 8.99, + "z": 1.05 + }, + "P15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 8.99, + "z": 1.05 + }, + "P16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 8.99, + "z": 1.05 + }, + "P17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 8.99, + "z": 1.05 + }, + "P18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 8.99, + "z": 1.05 + }, + "P19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 8.99, + "z": 1.05 + }, + "P2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 8.99, + "z": 1.05 + }, + "P20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 8.99, + "z": 1.05 + }, + "P21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 8.99, + "z": 1.05 + }, + "P22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 8.99, + "z": 1.05 + }, + "P23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 8.99, + "z": 1.05 + }, + "P24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 8.99, + "z": 1.05 + }, + "P3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 8.99, + "z": 1.05 + }, + "P4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 8.99, + "z": 1.05 + }, + "P5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 8.99, + "z": 1.05 + }, + "P6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 8.99, + "z": 1.05 + }, + "P7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 8.99, + "z": 1.05 + }, + "P8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 8.99, + "z": 1.05 + }, + "P9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 8.99, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33f1e1d4e6a9e096acfb76a763a2f4b7", + "notes": [], + "params": { + "location": { + "slotName": "B3" + }, + "model": "flexStackerModuleV1" + }, + "result": { + "model": "flexStackerModuleV1", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/setStoredLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d91a6dda717b0a7376567c5cb32b049c", + "notes": [], + "params": { + "initialCount": 6, + "lidLabware": { + "loadName": "opentrons_flex_tiprack_lid", + "namespace": "opentrons", + "version": 1 + }, + "moduleId": "UUID", + "primaryLabware": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "namespace": "opentrons", + "version": 1 + } + }, + "result": { + "count": 6, + "lidLabwareDefinition": { + "allowedRoles": [ + "labware", + "lid" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "compatibleParentLabware": [ + "opentrons_flex_96_filtertiprack_1000ul", + "opentrons_flex_96_filtertiprack_200ul", + "opentrons_flex_96_filtertiprack_50ul", + "opentrons_flex_96_tiprack_1000ul", + "opentrons_flex_96_tiprack_200ul", + "opentrons_flex_96_tiprack_20ul", + "opentrons_flex_96_tiprack_50ul" + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.7, + "yDimension": 78.75, + "zDimension": 17 + }, + "gripForce": 10.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "lidDisposalOffsets": { + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "lid", + "displayName": "Opentrons Flex Tip Rack Lid", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "irregular", + "isDeckSlotCompatible": false, + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_tiprack_lid", + "quirks": [] + }, + "schemaVersion": 2, + "stackLimit": 1, + "stackingOffsetWithLabware": { + "default": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_1000ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_200ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_50ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_1000ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_200ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_20ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_50ul": { + "x": 0, + "y": 0, + "z": 14.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + }, + "newLidLabwareLocationSequences": [ + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ] + ], + "newPrimaryLabwareLocationSequences": [ + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ] + ], + "originalLidLabwareLocationSequences": [ + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ] + ], + "originalPrimaryLabwareLocationSequences": [ + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ] + ], + "primaryLabwareDefinition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "storedLabware": [ + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLidStack", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "badb5f7b594849606009138e8293353b", + "notes": [], + "params": { + "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", + "location": { + "slotName": "B3" + }, + "namespace": "custom_beta", + "quantity": 5, + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [ + "labware", + "lid" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "compatibleParentLabware": [ + "armadillo_96_wellplate_200ul_pcr_full_skirt", + "biorad_96_wellplate_200ul_pcr", + "custom_opentrons_tough_pcr_auto_sealing_lid", + "opentrons_96_wellplate_200ul_pcr_full_skirt", + "opentrons_flex_deck_riser", + "opentrons_tough_pcr_auto_sealing_lid", + "protocol_engine_lid_stack_object", + "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt" + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.7, + "yDimension": 85.48, + "zDimension": 12.8 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 7.91, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0.52, + "z": -6 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 1.5 + } + }, + "lidDisposalOffsets": { + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "lidOffsets": { + "dropOffset": { + "x": 0.5, + "y": 0, + "z": -1 + }, + "pickUpOffset": { + "x": 0.5, + "y": 0, + "z": -5 + } + } + }, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "lid", + "displayName": "Custom Opentrons Tough PCR Auto-Sealing Lid", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", + "quirks": [] + }, + "schemaVersion": 2, + "stackLimit": 5, + "stackingOffsetWithLabware": { + "armadillo_96_wellplate_200ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 8.193 + }, + "biorad_96_wellplate_200ul_pcr": { + "x": 0, + "y": 0, + "z": 8.08 + }, + "custom_opentrons_tough_pcr_auto_sealing_lid": { + "x": 0, + "y": 0, + "z": 6.492 + }, + "default": { + "x": 0, + "y": 0, + "z": 8.193 + }, + "opentrons_96_wellplate_200ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 8.193 + }, + "opentrons_flex_deck_riser": { + "x": 0, + "y": 0, + "z": 34 + }, + "opentrons_tough_pcr_auto_sealing_lid": { + "x": 0, + "y": 0, + "z": 6.492 + }, + "protocol_engine_lid_stack_object": { + "x": 0, + "y": 0, + "z": 0 + }, + "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt": { + "x": 0, + "y": 0, + "z": 8.193 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "version": 2, + "wells": {} + }, + "labwareIds": [ + "UUID", + "UUID", + "UUID", + "UUID", + "UUID" + ], + "lidStackDefinition": { + "allowedRoles": [ + "system" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 0, + "yDimension": 0, + "zDimension": 0 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "system", + "displayName": "Protocol Engine Lid Stack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "protocol_engine_lid_stack_object", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_deck_riser": { + "x": 0, + "y": 0, + "z": 34 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + }, + "location": { + "slotName": "B3" + }, + "locationSequences": [ + [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + ], + "stackLabwareId": "UUID", + "stackLocationSequence": [ + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02f85273b6a12a2f1f107554f0cc7b1c", + "notes": [], + "params": { + "location": { + "slotName": "C3" + }, + "model": "flexStackerModuleV1" + }, + "result": { + "model": "flexStackerModuleV1", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/setStoredLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc9b1016925cd435a12e07a99a5e5c70", + "notes": [], + "params": { + "initialCount": 6, + "lidLabware": { + "loadName": "opentrons_flex_tiprack_lid", + "namespace": "opentrons", + "version": 1 + }, + "moduleId": "UUID", + "primaryLabware": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "namespace": "opentrons", + "version": 1 + } + }, + "result": { + "count": 6, + "lidLabwareDefinition": { + "allowedRoles": [ + "labware", + "lid" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "compatibleParentLabware": [ + "opentrons_flex_96_filtertiprack_1000ul", + "opentrons_flex_96_filtertiprack_200ul", + "opentrons_flex_96_filtertiprack_50ul", + "opentrons_flex_96_tiprack_1000ul", + "opentrons_flex_96_tiprack_200ul", + "opentrons_flex_96_tiprack_20ul", + "opentrons_flex_96_tiprack_50ul" + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.7, + "yDimension": 78.75, + "zDimension": 17 + }, + "gripForce": 10.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "lidDisposalOffsets": { + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "lid", + "displayName": "Opentrons Flex Tip Rack Lid", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "irregular", + "isDeckSlotCompatible": false, + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_tiprack_lid", + "quirks": [] + }, + "schemaVersion": 2, + "stackLimit": 1, + "stackingOffsetWithLabware": { + "default": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_1000ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_200ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_50ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_1000ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_200ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_20ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_50ul": { + "x": 0, + "y": 0, + "z": 14.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + }, + "newLidLabwareLocationSequences": [ + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ] + ], + "newPrimaryLabwareLocationSequences": [ + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ] + ], + "originalLidLabwareLocationSequences": [ + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ] + ], + "originalPrimaryLabwareLocationSequences": [ + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ] + ], + "primaryLabwareDefinition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "storedLabware": [ + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4a278eb6d09f741b7050e9a37d2cdd1", + "notes": [], + "params": { + "location": { + "slotName": "C1" + }, + "model": "temperatureModuleV2" + }, + "result": { + "model": "temperatureModuleV2", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50ff53c23355d2ccac2984990fe51b0b", + "notes": [], + "params": { + "displayName": "Reagent Plate 1", + "loadName": "biorad_384_wellplate_50ul", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 4 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Bio-Rad", + "brandId": [ + "HSP3801", + "HSP3805", + "HSP3901", + "HSP3905", + "HSP3xxx", + "HSR4801", + "HSR4805", + "HSR4xxx" + ], + "links": [ + "https://www.bio-rad.com/en-us/sku/HSP3805-hard-shell-384-well-pcr-plates-thin-wall-skirted-clear-white?ID=HSP3805" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 10.4 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 9.3, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A13", + "A14", + "A15", + "A16", + "A17", + "A18", + "A19", + "A2", + "A20", + "A21", + "A22", + "A23", + "A24", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B13", + "B14", + "B15", + "B16", + "B17", + "B18", + "B19", + "B2", + "B20", + "B21", + "B22", + "B23", + "B24", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C13", + "C14", + "C15", + "C16", + "C17", + "C18", + "C19", + "C2", + "C20", + "C21", + "C22", + "C23", + "C24", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D13", + "D14", + "D15", + "D16", + "D17", + "D18", + "D19", + "D2", + "D20", + "D21", + "D22", + "D23", + "D24", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E13", + "E14", + "E15", + "E16", + "E17", + "E18", + "E19", + "E2", + "E20", + "E21", + "E22", + "E23", + "E24", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F13", + "F14", + "F15", + "F16", + "F17", + "F18", + "F19", + "F2", + "F20", + "F21", + "F22", + "F23", + "F24", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G13", + "G14", + "G15", + "G16", + "G17", + "G18", + "G19", + "G2", + "G20", + "G21", + "G22", + "G23", + "G24", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H13", + "H14", + "H15", + "H16", + "H17", + "H18", + "H19", + "H2", + "H20", + "H21", + "H22", + "H23", + "H24", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9", + "I1", + "I10", + "I11", + "I12", + "I13", + "I14", + "I15", + "I16", + "I17", + "I18", + "I19", + "I2", + "I20", + "I21", + "I22", + "I23", + "I24", + "I3", + "I4", + "I5", + "I6", + "I7", + "I8", + "I9", + "J1", + "J10", + "J11", + "J12", + "J13", + "J14", + "J15", + "J16", + "J17", + "J18", + "J19", + "J2", + "J20", + "J21", + "J22", + "J23", + "J24", + "J3", + "J4", + "J5", + "J6", + "J7", + "J8", + "J9", + "K1", + "K10", + "K11", + "K12", + "K13", + "K14", + "K15", + "K16", + "K17", + "K18", + "K19", + "K2", + "K20", + "K21", + "K22", + "K23", + "K24", + "K3", + "K4", + "K5", + "K6", + "K7", + "K8", + "K9", + "L1", + "L10", + "L11", + "L12", + "L13", + "L14", + "L15", + "L16", + "L17", + "L18", + "L19", + "L2", + "L20", + "L21", + "L22", + "L23", + "L24", + "L3", + "L4", + "L5", + "L6", + "L7", + "L8", + "L9", + "M1", + "M10", + "M11", + "M12", + "M13", + "M14", + "M15", + "M16", + "M17", + "M18", + "M19", + "M2", + "M20", + "M21", + "M22", + "M23", + "M24", + "M3", + "M4", + "M5", + "M6", + "M7", + "M8", + "M9", + "N1", + "N10", + "N11", + "N12", + "N13", + "N14", + "N15", + "N16", + "N17", + "N18", + "N19", + "N2", + "N20", + "N21", + "N22", + "N23", + "N24", + "N3", + "N4", + "N5", + "N6", + "N7", + "N8", + "N9", + "O1", + "O10", + "O11", + "O12", + "O13", + "O14", + "O15", + "O16", + "O17", + "O18", + "O19", + "O2", + "O20", + "O21", + "O22", + "O23", + "O24", + "O3", + "O4", + "O5", + "O6", + "O7", + "O8", + "O9", + "P1", + "P10", + "P11", + "P12", + "P13", + "P14", + "P15", + "P16", + "P17", + "P18", + "P19", + "P2", + "P20", + "P21", + "P22", + "P23", + "P24", + "P3", + "P4", + "P5", + "P6", + "P7", + "P8", + "P9" + ] + } + ], + "innerLabwareGeometry": { + "conicalWell": { + "sections": [ + { + "bottomDiameter": 3, + "bottomHeight": 5.35, + "shape": "conical", + "topDiameter": 3.1, + "topHeight": 9.35, + "xCount": 1, + "yCount": 1 + }, + { + "bottomDiameter": 1.46, + "bottomHeight": 0.35, + "shape": "conical", + "topDiameter": 3, + "topHeight": 5.35, + "xCount": 1, + "yCount": 1 + }, + { + "bottomHeight": 0.0, + "radiusOfCurvature": 0.94, + "shape": "spherical", + "topHeight": 0.35, + "xCount": 1, + "yCount": 1 + } + ] + } + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Bio-Rad 384 Well Plate 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "I1", + "J1", + "K1", + "L1", + "M1", + "N1", + "O1", + "P1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "I10", + "J10", + "K10", + "L10", + "M10", + "N10", + "O10", + "P10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "I11", + "J11", + "K11", + "L11", + "M11", + "N11", + "O11", + "P11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12", + "I12", + "J12", + "K12", + "L12", + "M12", + "N12", + "O12", + "P12" + ], + [ + "A13", + "B13", + "C13", + "D13", + "E13", + "F13", + "G13", + "H13", + "I13", + "J13", + "K13", + "L13", + "M13", + "N13", + "O13", + "P13" + ], + [ + "A14", + "B14", + "C14", + "D14", + "E14", + "F14", + "G14", + "H14", + "I14", + "J14", + "K14", + "L14", + "M14", + "N14", + "O14", + "P14" + ], + [ + "A15", + "B15", + "C15", + "D15", + "E15", + "F15", + "G15", + "H15", + "I15", + "J15", + "K15", + "L15", + "M15", + "N15", + "O15", + "P15" + ], + [ + "A16", + "B16", + "C16", + "D16", + "E16", + "F16", + "G16", + "H16", + "I16", + "J16", + "K16", + "L16", + "M16", + "N16", + "O16", + "P16" + ], + [ + "A17", + "B17", + "C17", + "D17", + "E17", + "F17", + "G17", + "H17", + "I17", + "J17", + "K17", + "L17", + "M17", + "N17", + "O17", + "P17" + ], + [ + "A18", + "B18", + "C18", + "D18", + "E18", + "F18", + "G18", + "H18", + "I18", + "J18", + "K18", + "L18", + "M18", + "N18", + "O18", + "P18" + ], + [ + "A19", + "B19", + "C19", + "D19", + "E19", + "F19", + "G19", + "H19", + "I19", + "J19", + "K19", + "L19", + "M19", + "N19", + "O19", + "P19" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "I2", + "J2", + "K2", + "L2", + "M2", + "N2", + "O2", + "P2" + ], + [ + "A20", + "B20", + "C20", + "D20", + "E20", + "F20", + "G20", + "H20", + "I20", + "J20", + "K20", + "L20", + "M20", + "N20", + "O20", + "P20" + ], + [ + "A21", + "B21", + "C21", + "D21", + "E21", + "F21", + "G21", + "H21", + "I21", + "J21", + "K21", + "L21", + "M21", + "N21", + "O21", + "P21" + ], + [ + "A22", + "B22", + "C22", + "D22", + "E22", + "F22", + "G22", + "H22", + "I22", + "J22", + "K22", + "L22", + "M22", + "N22", + "O22", + "P22" + ], + [ + "A23", + "B23", + "C23", + "D23", + "E23", + "F23", + "G23", + "H23", + "I23", + "J23", + "K23", + "L23", + "M23", + "N23", + "O23", + "P23" + ], + [ + "A24", + "B24", + "C24", + "D24", + "E24", + "F24", + "G24", + "H24", + "I24", + "J24", + "K24", + "L24", + "M24", + "N24", + "O24", + "P24" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "I3", + "J3", + "K3", + "L3", + "M3", + "N3", + "O3", + "P3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "I4", + "J4", + "K4", + "L4", + "M4", + "N4", + "O4", + "P4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "I5", + "J5", + "K5", + "L5", + "M5", + "N5", + "O5", + "P5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "I6", + "J6", + "K6", + "L6", + "M6", + "N6", + "O6", + "P6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "I7", + "J7", + "K7", + "L7", + "M7", + "N7", + "O7", + "P7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "I8", + "J8", + "K8", + "L8", + "M8", + "N8", + "O8", + "P8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "I9", + "J9", + "K9", + "L9", + "M9", + "N9", + "O9", + "P9" + ] + ], + "parameters": { + "format": "384Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "biorad_384_wellplate_50ul", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "biorad_384_wellplate_50ul": { + "x": 0, + "y": 0, + "z": 1.95 + } + }, + "stackingOffsetWithModule": {}, + "version": 4, + "wells": { + "A1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 76.49, + "z": 1.05 + }, + "A10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 76.49, + "z": 1.05 + }, + "A11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 76.49, + "z": 1.05 + }, + "A12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 76.49, + "z": 1.05 + }, + "A13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 76.49, + "z": 1.05 + }, + "A14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 76.49, + "z": 1.05 + }, + "A15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 76.49, + "z": 1.05 + }, + "A16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 76.49, + "z": 1.05 + }, + "A17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 76.49, + "z": 1.05 + }, + "A18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 76.49, + "z": 1.05 + }, + "A19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 76.49, + "z": 1.05 + }, + "A2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 76.49, + "z": 1.05 + }, + "A20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 76.49, + "z": 1.05 + }, + "A21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 76.49, + "z": 1.05 + }, + "A22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 76.49, + "z": 1.05 + }, + "A23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 76.49, + "z": 1.05 + }, + "A24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 76.49, + "z": 1.05 + }, + "A3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 76.49, + "z": 1.05 + }, + "A4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 76.49, + "z": 1.05 + }, + "A5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 76.49, + "z": 1.05 + }, + "A6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 76.49, + "z": 1.05 + }, + "A7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 76.49, + "z": 1.05 + }, + "A8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 76.49, + "z": 1.05 + }, + "A9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 76.49, + "z": 1.05 + }, + "B1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 71.99, + "z": 1.05 + }, + "B10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 71.99, + "z": 1.05 + }, + "B11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 71.99, + "z": 1.05 + }, + "B12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 71.99, + "z": 1.05 + }, + "B13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 71.99, + "z": 1.05 + }, + "B14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 71.99, + "z": 1.05 + }, + "B15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 71.99, + "z": 1.05 + }, + "B16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 71.99, + "z": 1.05 + }, + "B17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 71.99, + "z": 1.05 + }, + "B18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 71.99, + "z": 1.05 + }, + "B19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 71.99, + "z": 1.05 + }, + "B2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 71.99, + "z": 1.05 + }, + "B20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 71.99, + "z": 1.05 + }, + "B21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 71.99, + "z": 1.05 + }, + "B22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 71.99, + "z": 1.05 + }, + "B23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 71.99, + "z": 1.05 + }, + "B24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 71.99, + "z": 1.05 + }, + "B3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 71.99, + "z": 1.05 + }, + "B4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 71.99, + "z": 1.05 + }, + "B5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 71.99, + "z": 1.05 + }, + "B6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 71.99, + "z": 1.05 + }, + "B7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 71.99, + "z": 1.05 + }, + "B8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 71.99, + "z": 1.05 + }, + "B9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 71.99, + "z": 1.05 + }, + "C1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 67.49, + "z": 1.05 + }, + "C10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 67.49, + "z": 1.05 + }, + "C11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 67.49, + "z": 1.05 + }, + "C12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 67.49, + "z": 1.05 + }, + "C13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 67.49, + "z": 1.05 + }, + "C14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 67.49, + "z": 1.05 + }, + "C15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 67.49, + "z": 1.05 + }, + "C16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 67.49, + "z": 1.05 + }, + "C17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 67.49, + "z": 1.05 + }, + "C18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 67.49, + "z": 1.05 + }, + "C19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 67.49, + "z": 1.05 + }, + "C2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 67.49, + "z": 1.05 + }, + "C20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 67.49, + "z": 1.05 + }, + "C21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 67.49, + "z": 1.05 + }, + "C22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 67.49, + "z": 1.05 + }, + "C23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 67.49, + "z": 1.05 + }, + "C24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 67.49, + "z": 1.05 + }, + "C3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 67.49, + "z": 1.05 + }, + "C4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 67.49, + "z": 1.05 + }, + "C5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 67.49, + "z": 1.05 + }, + "C6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 67.49, + "z": 1.05 + }, + "C7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 67.49, + "z": 1.05 + }, + "C8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 67.49, + "z": 1.05 + }, + "C9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 67.49, + "z": 1.05 + }, + "D1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 62.99, + "z": 1.05 + }, + "D10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 62.99, + "z": 1.05 + }, + "D11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 62.99, + "z": 1.05 + }, + "D12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 62.99, + "z": 1.05 + }, + "D13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 62.99, + "z": 1.05 + }, + "D14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 62.99, + "z": 1.05 + }, + "D15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 62.99, + "z": 1.05 + }, + "D16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 62.99, + "z": 1.05 + }, + "D17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 62.99, + "z": 1.05 + }, + "D18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 62.99, + "z": 1.05 + }, + "D19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 62.99, + "z": 1.05 + }, + "D2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 62.99, + "z": 1.05 + }, + "D20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 62.99, + "z": 1.05 + }, + "D21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 62.99, + "z": 1.05 + }, + "D22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 62.99, + "z": 1.05 + }, + "D23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 62.99, + "z": 1.05 + }, + "D24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 62.99, + "z": 1.05 + }, + "D3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 62.99, + "z": 1.05 + }, + "D4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 62.99, + "z": 1.05 + }, + "D5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 62.99, + "z": 1.05 + }, + "D6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 62.99, + "z": 1.05 + }, + "D7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 62.99, + "z": 1.05 + }, + "D8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 62.99, + "z": 1.05 + }, + "D9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 62.99, + "z": 1.05 + }, + "E1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 58.49, + "z": 1.05 + }, + "E10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 58.49, + "z": 1.05 + }, + "E11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 58.49, + "z": 1.05 + }, + "E12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 58.49, + "z": 1.05 + }, + "E13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 58.49, + "z": 1.05 + }, + "E14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 58.49, + "z": 1.05 + }, + "E15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 58.49, + "z": 1.05 + }, + "E16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 58.49, + "z": 1.05 + }, + "E17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 58.49, + "z": 1.05 + }, + "E18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 58.49, + "z": 1.05 + }, + "E19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 58.49, + "z": 1.05 + }, + "E2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 58.49, + "z": 1.05 + }, + "E20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 58.49, + "z": 1.05 + }, + "E21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 58.49, + "z": 1.05 + }, + "E22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 58.49, + "z": 1.05 + }, + "E23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 58.49, + "z": 1.05 + }, + "E24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 58.49, + "z": 1.05 + }, + "E3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 58.49, + "z": 1.05 + }, + "E4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 58.49, + "z": 1.05 + }, + "E5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 58.49, + "z": 1.05 + }, + "E6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 58.49, + "z": 1.05 + }, + "E7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 58.49, + "z": 1.05 + }, + "E8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 58.49, + "z": 1.05 + }, + "E9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 58.49, + "z": 1.05 + }, + "F1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 53.99, + "z": 1.05 + }, + "F10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 53.99, + "z": 1.05 + }, + "F11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 53.99, + "z": 1.05 + }, + "F12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 53.99, + "z": 1.05 + }, + "F13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 53.99, + "z": 1.05 + }, + "F14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 53.99, + "z": 1.05 + }, + "F15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 53.99, + "z": 1.05 + }, + "F16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 53.99, + "z": 1.05 + }, + "F17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 53.99, + "z": 1.05 + }, + "F18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 53.99, + "z": 1.05 + }, + "F19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 53.99, + "z": 1.05 + }, + "F2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 53.99, + "z": 1.05 + }, + "F20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 53.99, + "z": 1.05 + }, + "F21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 53.99, + "z": 1.05 + }, + "F22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 53.99, + "z": 1.05 + }, + "F23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 53.99, + "z": 1.05 + }, + "F24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 53.99, + "z": 1.05 + }, + "F3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 53.99, + "z": 1.05 + }, + "F4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 53.99, + "z": 1.05 + }, + "F5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 53.99, + "z": 1.05 + }, + "F6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 53.99, + "z": 1.05 + }, + "F7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 53.99, + "z": 1.05 + }, + "F8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 53.99, + "z": 1.05 + }, + "F9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 53.99, + "z": 1.05 + }, + "G1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 49.49, + "z": 1.05 + }, + "G10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 49.49, + "z": 1.05 + }, + "G11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 49.49, + "z": 1.05 + }, + "G12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 49.49, + "z": 1.05 + }, + "G13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 49.49, + "z": 1.05 + }, + "G14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 49.49, + "z": 1.05 + }, + "G15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 49.49, + "z": 1.05 + }, + "G16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 49.49, + "z": 1.05 + }, + "G17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 49.49, + "z": 1.05 + }, + "G18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 49.49, + "z": 1.05 + }, + "G19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 49.49, + "z": 1.05 + }, + "G2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 49.49, + "z": 1.05 + }, + "G20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 49.49, + "z": 1.05 + }, + "G21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 49.49, + "z": 1.05 + }, + "G22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 49.49, + "z": 1.05 + }, + "G23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 49.49, + "z": 1.05 + }, + "G24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 49.49, + "z": 1.05 + }, + "G3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 49.49, + "z": 1.05 + }, + "G4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 49.49, + "z": 1.05 + }, + "G5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 49.49, + "z": 1.05 + }, + "G6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 49.49, + "z": 1.05 + }, + "G7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 49.49, + "z": 1.05 + }, + "G8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 49.49, + "z": 1.05 + }, + "G9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 49.49, + "z": 1.05 + }, + "H1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 44.99, + "z": 1.05 + }, + "H10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 44.99, + "z": 1.05 + }, + "H11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 44.99, + "z": 1.05 + }, + "H12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 44.99, + "z": 1.05 + }, + "H13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 44.99, + "z": 1.05 + }, + "H14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 44.99, + "z": 1.05 + }, + "H15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 44.99, + "z": 1.05 + }, + "H16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 44.99, + "z": 1.05 + }, + "H17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 44.99, + "z": 1.05 + }, + "H18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 44.99, + "z": 1.05 + }, + "H19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 44.99, + "z": 1.05 + }, + "H2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 44.99, + "z": 1.05 + }, + "H20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 44.99, + "z": 1.05 + }, + "H21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 44.99, + "z": 1.05 + }, + "H22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 44.99, + "z": 1.05 + }, + "H23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 44.99, + "z": 1.05 + }, + "H24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 44.99, + "z": 1.05 + }, + "H3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 44.99, + "z": 1.05 + }, + "H4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 44.99, + "z": 1.05 + }, + "H5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 44.99, + "z": 1.05 + }, + "H6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 44.99, + "z": 1.05 + }, + "H7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 44.99, + "z": 1.05 + }, + "H8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 44.99, + "z": 1.05 + }, + "H9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 44.99, + "z": 1.05 + }, + "I1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 40.49, + "z": 1.05 + }, + "I10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 40.49, + "z": 1.05 + }, + "I11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 40.49, + "z": 1.05 + }, + "I12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 40.49, + "z": 1.05 + }, + "I13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 40.49, + "z": 1.05 + }, + "I14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 40.49, + "z": 1.05 + }, + "I15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 40.49, + "z": 1.05 + }, + "I16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 40.49, + "z": 1.05 + }, + "I17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 40.49, + "z": 1.05 + }, + "I18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 40.49, + "z": 1.05 + }, + "I19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 40.49, + "z": 1.05 + }, + "I2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 40.49, + "z": 1.05 + }, + "I20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 40.49, + "z": 1.05 + }, + "I21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 40.49, + "z": 1.05 + }, + "I22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 40.49, + "z": 1.05 + }, + "I23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 40.49, + "z": 1.05 + }, + "I24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 40.49, + "z": 1.05 + }, + "I3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 40.49, + "z": 1.05 + }, + "I4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 40.49, + "z": 1.05 + }, + "I5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 40.49, + "z": 1.05 + }, + "I6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 40.49, + "z": 1.05 + }, + "I7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 40.49, + "z": 1.05 + }, + "I8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 40.49, + "z": 1.05 + }, + "I9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 40.49, + "z": 1.05 + }, + "J1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 35.99, + "z": 1.05 + }, + "J10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 35.99, + "z": 1.05 + }, + "J11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 35.99, + "z": 1.05 + }, + "J12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 35.99, + "z": 1.05 + }, + "J13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 35.99, + "z": 1.05 + }, + "J14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 35.99, + "z": 1.05 + }, + "J15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 35.99, + "z": 1.05 + }, + "J16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 35.99, + "z": 1.05 + }, + "J17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 35.99, + "z": 1.05 + }, + "J18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 35.99, + "z": 1.05 + }, + "J19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 35.99, + "z": 1.05 + }, + "J2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 35.99, + "z": 1.05 + }, + "J20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 35.99, + "z": 1.05 + }, + "J21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 35.99, + "z": 1.05 + }, + "J22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 35.99, + "z": 1.05 + }, + "J23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 35.99, + "z": 1.05 + }, + "J24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 35.99, + "z": 1.05 + }, + "J3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 35.99, + "z": 1.05 + }, + "J4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 35.99, + "z": 1.05 + }, + "J5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 35.99, + "z": 1.05 + }, + "J6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 35.99, + "z": 1.05 + }, + "J7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 35.99, + "z": 1.05 + }, + "J8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 35.99, + "z": 1.05 + }, + "J9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 35.99, + "z": 1.05 + }, + "K1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 31.49, + "z": 1.05 + }, + "K10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 31.49, + "z": 1.05 + }, + "K11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 31.49, + "z": 1.05 + }, + "K12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 31.49, + "z": 1.05 + }, + "K13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 31.49, + "z": 1.05 + }, + "K14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 31.49, + "z": 1.05 + }, + "K15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 31.49, + "z": 1.05 + }, + "K16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 31.49, + "z": 1.05 + }, + "K17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 31.49, + "z": 1.05 + }, + "K18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 31.49, + "z": 1.05 + }, + "K19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 31.49, + "z": 1.05 + }, + "K2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 31.49, + "z": 1.05 + }, + "K20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 31.49, + "z": 1.05 + }, + "K21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 31.49, + "z": 1.05 + }, + "K22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 31.49, + "z": 1.05 + }, + "K23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 31.49, + "z": 1.05 + }, + "K24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 31.49, + "z": 1.05 + }, + "K3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 31.49, + "z": 1.05 + }, + "K4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 31.49, + "z": 1.05 + }, + "K5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 31.49, + "z": 1.05 + }, + "K6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 31.49, + "z": 1.05 + }, + "K7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 31.49, + "z": 1.05 + }, + "K8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 31.49, + "z": 1.05 + }, + "K9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 31.49, + "z": 1.05 + }, + "L1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 26.99, + "z": 1.05 + }, + "L10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 26.99, + "z": 1.05 + }, + "L11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 26.99, + "z": 1.05 + }, + "L12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 26.99, + "z": 1.05 + }, + "L13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 26.99, + "z": 1.05 + }, + "L14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 26.99, + "z": 1.05 + }, + "L15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 26.99, + "z": 1.05 + }, + "L16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 26.99, + "z": 1.05 + }, + "L17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 26.99, + "z": 1.05 + }, + "L18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 26.99, + "z": 1.05 + }, + "L19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 26.99, + "z": 1.05 + }, + "L2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 26.99, + "z": 1.05 + }, + "L20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 26.99, + "z": 1.05 + }, + "L21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 26.99, + "z": 1.05 + }, + "L22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 26.99, + "z": 1.05 + }, + "L23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 26.99, + "z": 1.05 + }, + "L24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 26.99, + "z": 1.05 + }, + "L3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 26.99, + "z": 1.05 + }, + "L4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 26.99, + "z": 1.05 + }, + "L5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 26.99, + "z": 1.05 + }, + "L6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 26.99, + "z": 1.05 + }, + "L7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 26.99, + "z": 1.05 + }, + "L8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 26.99, + "z": 1.05 + }, + "L9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 26.99, + "z": 1.05 + }, + "M1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 22.49, + "z": 1.05 + }, + "M10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 22.49, + "z": 1.05 + }, + "M11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 22.49, + "z": 1.05 + }, + "M12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 22.49, + "z": 1.05 + }, + "M13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 22.49, + "z": 1.05 + }, + "M14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 22.49, + "z": 1.05 + }, + "M15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 22.49, + "z": 1.05 + }, + "M16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 22.49, + "z": 1.05 + }, + "M17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 22.49, + "z": 1.05 + }, + "M18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 22.49, + "z": 1.05 + }, + "M19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 22.49, + "z": 1.05 + }, + "M2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 22.49, + "z": 1.05 + }, + "M20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 22.49, + "z": 1.05 + }, + "M21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 22.49, + "z": 1.05 + }, + "M22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 22.49, + "z": 1.05 + }, + "M23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 22.49, + "z": 1.05 + }, + "M24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 22.49, + "z": 1.05 + }, + "M3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 22.49, + "z": 1.05 + }, + "M4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 22.49, + "z": 1.05 + }, + "M5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 22.49, + "z": 1.05 + }, + "M6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 22.49, + "z": 1.05 + }, + "M7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 22.49, + "z": 1.05 + }, + "M8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 22.49, + "z": 1.05 + }, + "M9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 22.49, + "z": 1.05 + }, + "N1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 17.99, + "z": 1.05 + }, + "N10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 17.99, + "z": 1.05 + }, + "N11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 17.99, + "z": 1.05 + }, + "N12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 17.99, + "z": 1.05 + }, + "N13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 17.99, + "z": 1.05 + }, + "N14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 17.99, + "z": 1.05 + }, + "N15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 17.99, + "z": 1.05 + }, + "N16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 17.99, + "z": 1.05 + }, + "N17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 17.99, + "z": 1.05 + }, + "N18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 17.99, + "z": 1.05 + }, + "N19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 17.99, + "z": 1.05 + }, + "N2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 17.99, + "z": 1.05 + }, + "N20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 17.99, + "z": 1.05 + }, + "N21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 17.99, + "z": 1.05 + }, + "N22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 17.99, + "z": 1.05 + }, + "N23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 17.99, + "z": 1.05 + }, + "N24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 17.99, + "z": 1.05 + }, + "N3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 17.99, + "z": 1.05 + }, + "N4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 17.99, + "z": 1.05 + }, + "N5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 17.99, + "z": 1.05 + }, + "N6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 17.99, + "z": 1.05 + }, + "N7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 17.99, + "z": 1.05 + }, + "N8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 17.99, + "z": 1.05 + }, + "N9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 17.99, + "z": 1.05 + }, + "O1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 13.49, + "z": 1.05 + }, + "O10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 13.49, + "z": 1.05 + }, + "O11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 13.49, + "z": 1.05 + }, + "O12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 13.49, + "z": 1.05 + }, + "O13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 13.49, + "z": 1.05 + }, + "O14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 13.49, + "z": 1.05 + }, + "O15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 13.49, + "z": 1.05 + }, + "O16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 13.49, + "z": 1.05 + }, + "O17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 13.49, + "z": 1.05 + }, + "O18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 13.49, + "z": 1.05 + }, + "O19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 13.49, + "z": 1.05 + }, + "O2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 13.49, + "z": 1.05 + }, + "O20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 13.49, + "z": 1.05 + }, + "O21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 13.49, + "z": 1.05 + }, + "O22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 13.49, + "z": 1.05 + }, + "O23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 13.49, + "z": 1.05 + }, + "O24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 13.49, + "z": 1.05 + }, + "O3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 13.49, + "z": 1.05 + }, + "O4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 13.49, + "z": 1.05 + }, + "O5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 13.49, + "z": 1.05 + }, + "O6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 13.49, + "z": 1.05 + }, + "O7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 13.49, + "z": 1.05 + }, + "O8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 13.49, + "z": 1.05 + }, + "O9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 13.49, + "z": 1.05 + }, + "P1": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 12.13, + "y": 8.99, + "z": 1.05 + }, + "P10": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 52.63, + "y": 8.99, + "z": 1.05 + }, + "P11": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 57.13, + "y": 8.99, + "z": 1.05 + }, + "P12": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 61.63, + "y": 8.99, + "z": 1.05 + }, + "P13": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 66.13, + "y": 8.99, + "z": 1.05 + }, + "P14": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 70.63, + "y": 8.99, + "z": 1.05 + }, + "P15": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 75.13, + "y": 8.99, + "z": 1.05 + }, + "P16": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 79.63, + "y": 8.99, + "z": 1.05 + }, + "P17": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 84.13, + "y": 8.99, + "z": 1.05 + }, + "P18": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 88.63, + "y": 8.99, + "z": 1.05 + }, + "P19": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 93.13, + "y": 8.99, + "z": 1.05 + }, + "P2": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 16.63, + "y": 8.99, + "z": 1.05 + }, + "P20": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 97.63, + "y": 8.99, + "z": 1.05 + }, + "P21": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 102.13, + "y": 8.99, + "z": 1.05 + }, + "P22": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 106.63, + "y": 8.99, + "z": 1.05 + }, + "P23": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 111.13, + "y": 8.99, + "z": 1.05 + }, + "P24": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 115.63, + "y": 8.99, + "z": 1.05 + }, + "P3": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 21.13, + "y": 8.99, + "z": 1.05 + }, + "P4": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 25.63, + "y": 8.99, + "z": 1.05 + }, + "P5": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 30.13, + "y": 8.99, + "z": 1.05 + }, + "P6": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 34.63, + "y": 8.99, + "z": 1.05 + }, + "P7": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 39.13, + "y": 8.99, + "z": 1.05 + }, + "P8": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 43.63, + "y": 8.99, + "z": 1.05 + }, + "P9": { + "depth": 9.35, + "diameter": 3.1, + "geometryDefinitionId": "conicalWell", + "shape": "circular", + "totalLiquidVolume": 50, + "x": 48.13, + "y": 8.99, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "temperatureModuleV2C1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32843d4570fd7da19ede014e64de1499", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ca40e5289ae21c1f09276fc724de794", + "notes": [], + "params": { + "displayName": "ETOH Reservoir", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 4 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "bottomHeight": 1.67, + "bottomXDimension": 7.4, + "bottomYDimension": 7.4, + "shape": "cuboidal", + "topHeight": 38.05, + "topXDimension": 8.2, + "topYDimension": 8.2, + "xCount": 1, + "yCount": 1 + }, + { + "bottomHeight": 0.0, + "bottomXDimension": 2.63, + "bottomYDimension": 2.63, + "shape": "cuboidal", + "topHeight": 1.67, + "topXDimension": 7.4, + "topYDimension": 7.4, + "xCount": 1, + "yCount": 1 + } + ] + } + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "nest_96_wellplate_2ml_deep": { + "x": 0, + "y": 0, + "z": 2.75 + }, + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + }, + "opentrons_96_deep_well_temp_mod_adapter": { + "x": 0, + "y": 0, + "z": 16.1 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 4, + "wells": { + "A1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30f073be15b1cf78d23d25b494a65ecb", + "notes": [], + "params": { + "location": { + "slotName": "D3" + }, + "model": "flexStackerModuleV1" + }, + "result": { + "model": "flexStackerModuleV1", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/setStoredLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "933418951c0a360c7632a73c4c0b67e5", + "notes": [], + "params": { + "initialCount": 6, + "lidLabware": { + "loadName": "opentrons_flex_tiprack_lid", + "namespace": "opentrons", + "version": 1 + }, + "moduleId": "UUID", + "primaryLabware": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "namespace": "opentrons", + "version": 1 + } + }, + "result": { + "count": 6, + "lidLabwareDefinition": { + "allowedRoles": [ + "labware", + "lid" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "compatibleParentLabware": [ + "opentrons_flex_96_filtertiprack_1000ul", + "opentrons_flex_96_filtertiprack_200ul", + "opentrons_flex_96_filtertiprack_50ul", + "opentrons_flex_96_tiprack_1000ul", + "opentrons_flex_96_tiprack_200ul", + "opentrons_flex_96_tiprack_20ul", + "opentrons_flex_96_tiprack_50ul" + ], + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.7, + "yDimension": 78.75, + "zDimension": 17 + }, + "gripForce": 10.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + }, + "lidDisposalOffsets": { + "dropOffset": { + "x": 0, + "y": 5.0, + "z": 50.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": {}, + "wells": [] + } + ], + "metadata": { + "displayCategory": "lid", + "displayName": "Opentrons Flex Tip Rack Lid", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [], + "parameters": { + "format": "irregular", + "isDeckSlotCompatible": false, + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_flex_tiprack_lid", + "quirks": [] + }, + "schemaVersion": 2, + "stackLimit": 1, + "stackingOffsetWithLabware": { + "default": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_1000ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_200ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_filtertiprack_50ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_1000ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_200ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_20ul": { + "x": 0, + "y": 0, + "z": 14.25 + }, + "opentrons_flex_96_tiprack_50ul": { + "x": 0, + "y": 0, + "z": 14.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": {} + }, + "newLidLabwareLocationSequences": [ + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ] + ], + "newPrimaryLabwareLocationSequences": [ + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ] + ], + "originalLidLabwareLocationSequences": [ + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ] + ], + "originalPrimaryLabwareLocationSequences": [ + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ], + [ + { + "kind": "notOnDeck", + "logicalLocationName": "systemLocation" + } + ] + ], + "primaryLabwareDefinition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "storedLabware": [ + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + }, + { + "lidLabwareId": "UUID", + "primaryLabwareId": "UUID" + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9031117fec4f9628bdc49b8c342beb2", + "notes": [], + "params": { + "displayName": "Liquid Waste Reservoir", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D1" + }, + "namespace": "opentrons", + "version": 4 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "bottomHeight": 1.67, + "bottomXDimension": 7.4, + "bottomYDimension": 7.4, + "shape": "cuboidal", + "topHeight": 38.05, + "topXDimension": 8.2, + "topYDimension": 8.2, + "xCount": 1, + "yCount": 1 + }, + { + "bottomHeight": 0.0, + "bottomXDimension": 2.63, + "bottomYDimension": 2.63, + "shape": "cuboidal", + "topHeight": 1.67, + "topXDimension": 7.4, + "topYDimension": 7.4, + "xCount": 1, + "yCount": 1 + } + ] + } + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "nest_96_wellplate_2ml_deep": { + "x": 0, + "y": 0, + "z": 2.75 + }, + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + }, + "opentrons_96_deep_well_temp_mod_adapter": { + "x": 0, + "y": 0, + "z": 16.1 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 4, + "wells": { + "A1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "D1", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleLeftSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2bee29b415b697cbe12dac4a03faf48", + "notes": [], + "params": { + "location": { + "slotName": "D2" + }, + "model": "magneticBlockV1" + }, + "result": { + "model": "magneticBlockV1", + "moduleId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e137ae397bb0e548c3635469310bbed", + "notes": [], + "params": { + "displayName": "Cleanup Plate 1", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 4 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "bottomHeight": 1.67, + "bottomXDimension": 7.4, + "bottomYDimension": 7.4, + "shape": "cuboidal", + "topHeight": 38.05, + "topXDimension": 8.2, + "topYDimension": 8.2, + "xCount": 1, + "yCount": 1 + }, + { + "bottomHeight": 0.0, + "bottomXDimension": 2.63, + "bottomYDimension": 2.63, + "shape": "cuboidal", + "topHeight": 1.67, + "topXDimension": 7.4, + "topYDimension": 7.4, + "xCount": 1, + "yCount": 1 + } + ] + } + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "nest_96_wellplate_2ml_deep": { + "x": 0, + "y": 0, + "z": 2.75 + }, + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + }, + "opentrons_96_deep_well_temp_mod_adapter": { + "x": 0, + "y": 0, + "z": 16.1 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 4, + "wells": { + "A1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96de1d2071eb561b2b4f036f4fd6e346", + "notes": [], + "params": { + "displayName": "Cleanup Plate 2", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 4 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "innerLabwareGeometry": { + "cuboidalWell": { + "sections": [ + { + "bottomHeight": 1.67, + "bottomXDimension": 7.4, + "bottomYDimension": 7.4, + "shape": "cuboidal", + "topHeight": 38.05, + "topXDimension": 8.2, + "topYDimension": 8.2, + "xCount": 1, + "yCount": 1 + }, + { + "bottomHeight": 0.0, + "bottomXDimension": 2.63, + "bottomYDimension": 2.63, + "shape": "cuboidal", + "topHeight": 1.67, + "topXDimension": 7.4, + "topYDimension": 7.4, + "xCount": 1, + "yCount": 1 + } + ] + } + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2 mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "nest_96_wellplate_2ml_deep": { + "x": 0, + "y": 0, + "z": 2.75 + }, + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + }, + "opentrons_96_deep_well_temp_mod_adapter": { + "x": 0, + "y": 0, + "z": 16.1 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 4, + "wells": { + "A1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "geometryDefinitionId": "cuboidalWell", + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterCovered", + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7df3fcec3d72b5e4a834c6e32a73ed1", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d183e231e48cb79061e322df9e3d2355", + "notes": [], + "params": { + "celsius": 4.0, + "moduleId": "UUID" + }, + "result": { + "targetTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50a2e1a877314c33ff7176694b6e53d4", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd2983d3ba8917e795732e84800f576f", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e75efe83fd67a7de47fac7d748562ef6", + "notes": [], + "params": { + "message": "--> Aliquoting EPH3" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd800551adfb059053bc8ee0135cb431", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a0aa903f50e4c5c270728f5b1f480e0", + "notes": [], + "params": { + "message": "--> Adding EPH3" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed9ab536042920fd419d87a9399db952", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A1", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e5763df74e4e23c7d0ad0d11537b229", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cad7a67bc157af7a505c294f789aedc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "609a81aa02b7b96222d65b48b0216eb8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae2c7ddfb4aea64a62dc4186f83b3a15", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a36b395706f81a7111da2e1a61af37ae", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7254a6d3ebd5b892b9c19e1b0c16d9f5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7413ebbd00d8d7b49d90b9566eedfbc5", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8c67b2f52599a7d41413f10a318dcb3", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "509f7fdc87b221c6546761bd8ad7c21e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fe25853a9b14d9e995a31ddc181a099", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3e1431d1d92ac5630200494f9eefefb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3a8c58c1bd26163e4a2a94511837a04", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27813e6fd04364d8b1b3effd2ecd9e91", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05a92a6b94a0420881d1e0a3aa279069", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f04cfc83227cde96fb3ba50056a7ec0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d342a7f31a99f8332e486f0e1c0e5e91", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1044568c8b8d625b98edeab4056e8bc6", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccb5ca695cba33b548b03699de5632c3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87068826ff8adcf380957f18305a4558", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8a91883be3cbe1e49c1a27e64c2fa36", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1585f611647c8338f3a48b43d9c5653e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b37fed16adacc5836aa37ca7be2d89a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "540e8656d423bf59275dd73871dad228", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3db11a31f420db607ea7073f435dafbf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9c09f1def809a16a23277e285fd537c", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dffd8db33fef373b015de33c0c13464", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73e5252ebeef906da5a66719ba0adf05", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fec55eeedb6d64518848fa31c572dde", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb617b8da9319620a7fdaa1b86dfe67f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0819b90d97a6756c9574d4cbcb297205", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ffa107795917f25ae6391bc66be314f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fefeba7df6f586a3cbb6be93bd46cae", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf3ab747286ea2b0d39d0234da1cff99", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d76cc9a811dcf6ab9257509d121729b", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "681756d721a9ae1e84f3e0d120cbae37", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f82002d36b004f7da7b6956c4ad00652", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c56fc48413ebd6c5ab11f4693efec6d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bc226cf42ee61c91e8d2db59710d6c3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "230e4a820e4297396b170e179fb2d0fb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bb51d242f4440928c529a41bf8742f0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e9385628f4b8f57c2b65217efb1d9af", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "262e89744a75c448ab8bdb48b0c5fbf9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b30451f8d238f932c7494b9f1313d16", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc67d76a66c6baa2d038eb6760d77a78", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ffb4a5b42421504c56764e6aba9bd57", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b89f8ae81c938eca39c91a2289cad94", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf6849a5dd45165f9b3bf7c80c785fef", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c91dd362f0266153b98a7f7e1c06b08", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acee88dfe67ad4362fe23b6a02acab15", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a15316bbd896913c31c68d3eef9efe86", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af1d981393560c57b60e1bc30edf9dee", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c5fba30fd5ae4b0cf186bc058357ea6", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09bb37e4d517b583a73c1e1e4831fcce", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53416889a7388fb651b1a243a70adc03", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43ba5142831743c21ffc01ecbabc97e5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "622c03b4b0ed882a4cf6e34e5933f559", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89a6a9ad805428689a0d3962a313710d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "940a05520708d8f8e830e72d3facfb71", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9fbc145159c5f1b3071223502ca6b4b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "803e0c9b66dde4855d0693452170aaa8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26f1bf7be3f210185a686371fd5d98d8", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca73fe5381405518e0699242181ab670", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b5a8289a0a2e0ce971995f1b841d0ab", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2c8a33a063440c074708bc2c8f8f662", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e56b48b5486135c187c567428211a037", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88e1a9c30df59209718285cfc3888811", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18f47df1fc41265eeb17b91b9a2550fa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a55a845d298cb328c7a924bcbf564ed", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8382dacdcc207a8616af5ce32399a29", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f64e80ddda32891459727506a0836b9", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c60e0434366e4507968184864752e1fc", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b75067b0ea3d5f6b992d766b8c4675e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd1f9819392a08b466d50a5ea480c463", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f53b4644463d676720c8ee3c9530a37d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cb8bd7b297514c0d375f89e91028d84", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfc88863573e1bc601951edc91388640", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7eae5e38586a4eefbf3b8e5abab048c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a919585d6bb143afcc511f71209aa480", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7936374c9c7019ac1612cc2875a86d8", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22dbd69c1ca979b6a2f0684cdc00a15f", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "220d4540c1b519a5c3d5c3c23b83208e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01ab55f1d667158322293f86b2c1aa54", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d5b03d60b669bd0d6663119c1ce7c0a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32247d5a16a44cfb10a0139f5d1b54f4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e636717025bd27aa2948c4787441a77", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d6fec55530dafcde944a8b93300f7da", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43f1e15b370831f532cd7cc55185df23", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ab19f19901ce06f9f29a7140245ebe3", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d895ed1b94689cac651ef88e604a150e", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2abd5679b19895e8a72b94d949f77baf", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd5ed8b6e814075571a032fe6dc48c2f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93121d31aa115bc6de00a121c2c25217", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83630fcc5d95e1429704dee1beddde22", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79f73f8581dba1a1d246396ca7dae032", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c58962944a1b353eb8ae6e381d05a8d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2e5c2c8f081ffa886f0dffdca49ffcb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ad4a8f02ccea34d085c10a5f4b71158", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5d052406132a076186a2f0e0b3e0afe", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34ff438f494d5df7f1437780178870dd", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f488b0ddc7a66679695cf30a6a21d889", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32a12641be02d872e6120d26532ef248", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f77b8c96a6a7265cc7fab32f124dc23e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 8.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57d3a63d904ef6d269a3c822b0cea2f5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a3a37eeda5ac4fff1f7f9345bc7dd69", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a867458460b47b5509bc8f3f96a2c6f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78e658ef309d9d9640a8ce1f7e1b7dc0", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a35ac6dd7120661978cc2ced3bf351f4", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23b8c50fe003a12465b5a69dd9b4a840", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "814aec309bde6c43db364b1835c74b90", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = Plate Lid Stack --> sample_plate_1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f98a09ff955e4f7c7c9f1174bb34f8c5", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "441849daeadd9fdecf8b75a9f2f51d82", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9649d98012a4912f9f6dfa021ff0f54", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5741fd6e47bd9c03ff5a13f3f8a4edba", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = sample_plate_1 --> lids[1]" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e9de5598f81ca8e9576e0ba7423b22f", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a050a9c3e9771dd80745d0cb83e3ff9", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2958beb284b681b8a8724e90efd632a8", + "notes": [], + "params": { + "message": "--> Aliquoting FSMM" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "402a4a6cbb01bcdc6958094af8b28628", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "223ac30cfa3f817ea5ae63882a5b9464", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_1 = SCP_Position --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c68692c0f39ddc368c400f78477e16a2", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover", + "stagingAreaSlotWithWasteChuteRightAdapterNoCover", + "wasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "529fcd8cf876943045a9e9cf0a48c55b", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_2 = D4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64e367f069bf5976690bcf1012346ca6", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6c7d198b3e7c4988976fccfe3430b8a", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78d024b75b1ac809e79486bea7c7ff85", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2958aa68b183a31ad52d98e18890f1ee", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "246c4adcc7db3131aac1e6f631abc61a", + "notes": [], + "params": { + "message": "--> Adding FSMM" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73e0d49a7fd5f32552e5a642461b98ab", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A1", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2a1aa79494c66e15bde1526d79e8a14", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "125607185134d5f69e63a0a2a08fc055", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "550b0e6e6298d6a929839c41d5a3331d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64e28140a3b610522f3f4985cb0246ac", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1559ec87c01a791fd59fe80e78453571", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2a1d05716f3f1d75c374cdc46db158b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34069efa5a179acecd4448e42ebc3667", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7836af1ab415366f95b9362f655757a", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d3ef769ca1158e5f7d02f56c1b6bc65", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c50cde9db30589de781780993726714f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ddd48901503f835a8b5191d03752a74", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21d6eee8397d26351140b800d86433b6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd93592201c0dc3a502a96d4b525aadc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edcbdd00a8171646b214cba7b3051523", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8db06c10c26d7bdb9bec95916cadfc4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89f37c24caf2e0edee2d8501d316a608", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce9327decce4a9087e38d7e108301fc6", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26ef89f8db6884fd5a34712cfeb338c8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ada2fe3ed39e69fa785180a086705a9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5611dc88a4c9daeff5ec61759d380cb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba7767c5e9b96c4015cb31a42b355709", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4c61ed9bc94184ea3c947fa2a73f921", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2796617e9f2a8af2d77e3650b122fb14", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fcaadc3db23b7c4e19b3ccbc75241bc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3675f25ff2665f491b244bdff9899be5", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ef76cd408220922ba3e6576e163a3b6", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bd18c3b91227f0ca11adbee6dee5332", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e82d7efef31d578ec6652a6bfaa75c70", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f85f402f715676c7f67c972463ccd98", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ff8536492cb41abc89c5e7ba9e26d6b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00105b6d955a9a77cfffed1b9633f87f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0af3328f7309ac3e97bcd242742c92be", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c041fc7e419984ec15a4dfc6601469dd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1849089038ec327e8a6904890bf39d02", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a03b7b3c14118f614978c8431a8560ad", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58703de6b465e97ebdfea28f4cc98900", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d66aea9f59da43193e58cb2ee8d53d7c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b12627ac1e643ca3d404bca67d6e6b96", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1915bde667fc5b831f53d4c82ae628fb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d81555c4f588aa73770b980f895fb8f2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afc431bef2f030d3593fe6551559b850", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d0554341cffab35fabd2c99a76d3d9c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f5ccaadb27ab9ad9d7f32eb6139b82e", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c7b1ff7c128fff470761c6ff12f0f17", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfa82e3d59b6f9eaac3c448b6ef62fb5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4abf14518f7697d61d04188e5aa8d81f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9b3835462c888c3701f3a91d07ae0ae", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efc5d5a9f392b9f989fbc5b65afb8820", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2979e44cbdb17ef8adb9f6bafdd9eb49", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "535bb9c061275c5b14965b8bbfedf620", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8847da8ab3ee6aca11f5953bb7c8e0a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6b42d688a6bfa60e0d77b91af499be1", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "951c2f3a3a76a0e69df15468bd8ceaf4", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39ab6c7b12130dfa48b020522d951788", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98125e7897905f8521f24fbdafe4c8d6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "540913767204dd052002ba6b62b3144f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "760a357f38bf479f4666d3da89efb9ff", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "741351b05665991147c488b7f249d6cb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea13436d6a11b5c1716674340eeb06f0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8993f0ac7757c82d92edaeca34724c90", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33c2cb7633fa57019d756c6f9774ae6e", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f886fc99fc54ebf267d8238593a61ba", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83fc8d9e3e026d402d554af2a3366d8b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b32bc771de7833505976ca2e602c9b2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "081dd0cba54ad498b5aa1c51c0413a84", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06a71ad48991b0e17d87fb2d4fbe92c4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49a3421b2f0ff8f242f6885a54187fb2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b74b6fd9f3ee3224ba80868e40b4b198", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "489384592451112cd819b6b1dc0409c1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6361c51f8b2431092123d5b968689485", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cf1e01173d983d35455a0687107d8c7", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e330e131ccd96902711cdcedb55bfa8a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4b234b87a5c91c627b8b665bc6dd8a2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "559a3ce6bc5a8b49061ffbab13ac95dd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5674c3963d49a09df958047cafcb19c2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fddb1bb93d2203a14a8c0b0a53caa30", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fccd79925ed9ecfc91f7bc432814343a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4e5e5e43c725ac98f03fec93e9e2c32", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92459023681812fc4a1b93e791f7e37c", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f48fbcf8445a37af219b7ed0a4c337c5", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b301a3b8273019f3c304587a5c402a0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70f9f938fcb9b40b8293277ef44e6762", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ec1f2a9e034dbfb6137acfc34aa8831", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "133c09a80666b51a3f5b52f837f04cb6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c88bb2bd343d16a01da7d59a65b2230", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a211ef2765a33d59a5ee4054fcf76a9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c35168299ecc2b6594777feb651cbf5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83d2b6a0d0797edc9bff3be2ee9f309c", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c595d5c07ea312540be381054587158", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0c469a029cf6bb232607a210dd56a09", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1312e94a855f24921b0023a3d52a5ffb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10c98652661590985f0fc4c19b6c11d7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cae1bbbbbfb7e31a9cc99c2f78b568e4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1068584a5dcb42c406dfaf9991ca851", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2376c4be71eeecaa8f4f97ac052f849a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4da8a620bd05c76a4f6ae673a994aced", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b44ea7acba122abbfe7f46e8ce2290df", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ff9a95cf7bfe1929ed7976dbff7b900", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f70e9128f630cda6f934b79b08bc65f2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b3e0e5c871358f62b4c88d66e12958b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df044dfac5b08725623c44cceef2d28c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43f3b263b2976d3098c6a7c295e9fdeb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 8.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 8.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4022d51b34b42243ac9088bfa4c8f215", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "642ae46475c3ee74a30819b59e46836c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db29d2f00a20ed45842e078c29b64999", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd06ddebe146d599da821e54690b3ff0", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d81e6b160e62cdf64bc452a8376005c", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33a56c7745f5ad3ab2c1bf6512880dbf", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcb0b62ed8b63627ad3dc8cbf670512e", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = lids[1] --> sample_plate_1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8e2bc80f759158a5d0f504c6c103dd2", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccde6bef737316cee143b18905486279", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcdf8f4ec52f56578aee7093a30bff9b", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb1c37c0a161faef157b09c318ecaf8a", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = sample_plate_1 --> lids[1]" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06971e14afeb60a3f9a7f614eff6dbd5", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fa8ecfd762439fbec61e068fb6cc92e", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91d50f22b3bc5224092e71bf65168d41", + "notes": [], + "params": { + "message": "--> Aliquoting SSMM" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "956fe4684130f4d8e0ca725c112b5439", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01b727ee6fb905b1885347d33b48162d", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_2 = SCP_Position --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3e0f609d0956d18801c097cc71b58dd", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ceb23daddd3a6d99a4b368c82ba4019", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_50_SCP_3 = #1--> D4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68864033f940c01174aea2756d1c546e", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc4f050a75a11ecd1833e9686620ed84", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb77dbaf47c7888e3afc428facc3d760", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_3 = D4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "874103fa15abc7fc1d9a440a16bcfc57", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98afa3be1c8749da716685ce4add2224", + "notes": [], + "params": { + "message": "--> Adding SSMM" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee46ef7e481910aa0b669debab874915", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A1", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "742c0cbcffceca59e429fb6d65159e7b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75827bee1295008aa8c403f45f60987e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "122db99478f66a89d7eb1b88fab63c57", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f40ba18e1fa51a8f26f3289837769c48", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd3f3a93ce2a8918711cca567c9418e1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "829495df7c1b2575432c594127313eab", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bfec2d718979f18fb54f0f091968a16", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9adb90922f5461e6e182cba6af151046", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5648fa6f915286735a5920a96e2f2e15", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3df7f2bd4c118aacadf1b8f8eb82223a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "926f4689bae1a148e92e1ff84555b1e8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.63, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "825656f369eefc569feb6143120fa17a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28a307fc96182380aa282d2717a1c50a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b39ae3a37c40ea109ecddaf3212b51e7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19eed2c8161e61c7a67fda7e17c73066", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a1014b6be99c5a7399ffc72897a8472", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86107faf5781f52beca726b1805cd788", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc47c063d85a0f592bbf09c9a0c138cd", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7619f68f01a60ead34675b510fd65e9d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32c4c8afe5621c9af38e93d981ce6e3f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25534d2aab38789a376440ff6467b88f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b933746d5577ed3cf582f2e7ceaafc7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e398af4b80ddf2fdf1434438e8e261d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84066680905d2ff6f1479fd590096698", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "834fcb62be49e9967d27d91d5d58b394", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a769a57937cdb1e38a2659d3cd1efc53", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd748e774234f3c06092973364c79abc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "542409e6b12a42966791f67721bdb4ba", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30b88d325aa589ef253872e90fd358f5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.63, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f13e6cf8969f0dae3c331161c9ffb770", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f06183845ecf73d6c9a70f3a5f3d13c9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f3fc144c4bb387a695c60b058b21d19", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5a8f89992b5fcd667aae2f2ad3f1f04", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dda27fa4a289128bcd20b9ff825206e1", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc8dc5577066c6f643291fdffd3e1943", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5729100ae461793967111f24c432b5e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e56a5e4d94b11905f1eecb46003240b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "624ac2e5132f54d1e33f14235409389a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e0d2986dbd61a64d0f13ad4ef791062", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcd68f7f8da5c9f1ce1d5175ae7cc8b5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af24de95861c5d77ae72bd99b8f35076", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc70deab059002a757bba56d292093df", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edc4dc3715ad5243ab582a97f242b11d", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9c1b07543328e12c167cb96f9ed39cc", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72ba8e75af88ba0ba4cdb14fb9753491", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba5c54b7fa83422d88353134723f1fb1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f920bb155f45267b8d03f574664d882d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.63, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95704b7d4e701b5f3809e014fbdf605c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5051a3280f884a529b7f6e9d66fc65a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45fa71c2e64bafe7d574269ba2cf8e10", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47b307b562c82bc686f2aa48792eceec", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adf80f5395f620277b08ed8e6d6d00d4", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "505308ab0092b48c30ff96ac55ffbd02", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "711b0a20ec4589bafc489d5622bb346e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e94a3e14333bbacbef19814b370a8cf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b018ac67fb9d3321ab55c663a097c6d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b9ec9e01a6e6c184e478c7e83634553", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a55ba66a0d45a63647357c202439b554", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3667055ab529bc84f45992a295060cd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea3b30b8df30363a7ecd284b758e206b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5322673fb8cb8644d0f2d48657e50984", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc3dc210481d05e0d65a41aef504d60a", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e99ae8339a3c83e1e45f435a5be9cd7b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b57f61e13476e20f50d0755fecd13eb2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd2e17386c49a7d442bf314c74b489a8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.63, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be6a9eda47d6038c7dbb189065491dc6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5828055353abf9c21bdcc459a5fe8d18", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6562cc9a748ba5abb7bba7f2d207895", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "073cf4f301f09ca747905520c227cdd2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94a1fa08a108ccb6e509868a03926ebd", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61a6e6f482ad718400bdfdb792084e7c", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "050f0e5512a225789f26859e4931fbd5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90f0fb821e5cb981b286f1ff27e0c374", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b2920b41f852629236b18e828f3a1a1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc19ac524f8f9110abaa6d3b22fc56bb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0290fe3a7e4af7d1de990f2a755df5e9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "539055fd3668c1acd0d8ca69fc7b84d6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf2bd0a0864eb0eedd4a9e35462557dd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ba8c966c1a90d1ba2011e33e3e5ccaa", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a67cf3c276385d5af6a9f7f5cd9e7669", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a9c8482f1b48f14060cfb51221345ac", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "599f7991c8376719ea7d2d1ddfd0db32", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20ac7d3f47fd5697aa5027f2e4a51ab6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.63, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "199028b837cd835fd6b22724e9144f44", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1767c277df699abe19bcbd6fd8150a7d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "550092ede03b04a872726f5c361fed12", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "004cb72829f454b6460aa7466e22aead", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e25d2023bf6b562f556d0eb666d23ee", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b7d13f0b80e26c3f64bed8ff348121b", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25e1ea81c4f817aa0f8beb7b410fa811", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b04263ed35fb8289d34e4ebea01b6c82", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f700f5ac076c04b3a947b13bc039f878", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 21.13, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73ffa44464bf59b786ae2065c2aa9640", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3553d8c601ef2ad1e6919abc35f0ba66", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6736444ccdb7599ab1916faf69e91ac6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2b5009dd25f9c00058179fcec8ca1dc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a37bcbcf5ce593e62b2937ff54006e6", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9f782d38a62201831e61cf3a6c4a820", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41258f7afe043de2aa49af86c5d0de0a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e439d924f610bf5e4493f37b8db9190", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff5f33f41e22ab31288a216734f8a448", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -6.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 25.63, + "y": 183.49, + "z": 13.049999999999999 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91f2d168a4a2f860d27b14dea958ce98", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "464f382ee71e4efb1329f1d1f08f0d2b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 4.310000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec67fc14b1dd04669bd52b8af297f984", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1574506c706894d28e76abce888e642c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -11.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 4.310000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6dd0feceee7e109872d89c0cdb59d9a", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 11.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d78fb30719edcf15dae272eeb5133c8", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af57c0b4100c5062d14f676c5eca3ff5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b3215e43cd16555126c961a10fc3ac3", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = lids[1] --> sample_plate_1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74b1693dc2d9f4ef1cc9b8d21a151d09", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dacf3198a8602d02e43ad82ebde71d3e", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bce91d2fff5cafcff94722f3c7a23fc", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "182b4b94cd6ea226569679eb2a21a6aa", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = sample_plate_1 --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5fed751232c64c34a6125ab974cea97", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f0ef9a69eb58856dfff92462a1d52ce", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bb8ce2b0a341b79172d886b6e4f313c", + "notes": [], + "params": { + "message": "--> Post RNA Cleanup" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a1d4a7f6a2b621300d17a2003d61a21", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5c8db429bb37ea7ba1a904b1eefa5ac", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_3 = SCP_Position --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f0ded6910631bce970126ec3156377a", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f77eeaea388f729ff5c795b2fef2943", + "notes": [], + "params": { + "message": "MOVING: CleanupPlate_1 = mag_block --> D4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e803c111719561ed84b4370c112c9344", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bf01dea12a7cfcf777a596d2ccfb47f", + "notes": [], + "params": { + "message": "--> ADDING AMPure (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae422f0b70fc51e5a0a402060e832d18", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0aa879dff87538433918b25c313ee1bd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a0d655b922b19f04129d3a948b96178", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 12.05 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52fd183b09b96987cecea77d00bf9a1d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 12.05 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b0feed544eecd09844700de8242d2d8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 12.05 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c63799d183ff1da4e8d7c9aa9583a41f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 12.05 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "425f6a069098cd4b450f5c46705e7065", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 12.05 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf18605aeecb448cc81e7c8ed82d0c82", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 12.05 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a013d157e8be625b3ae5810d91fe18ad", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 12.05 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e848b37239dd0592acf7185394f709cc", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 12.05 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e078a2a99ccaf1669accb1357b68650", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "910db0e4e8234fb28be59adc01ed69a5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9117827c3d6e431828fc12bcc04bd32f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a3c6ebc2a52d806ed5cff916ffd33db", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "267f3a186af9911126aeef1c56c8a0fe", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ab9a35587a5bdea2d7617b8283dc959", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89201267cc246b81b9e3d1800be80298", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc6f310a1b1606e4d361cc9fe82956b6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b193f6e80527fc8c7e3fcc84894390ec", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6458fffa4be463179fc416dd8eb63efc", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fddeb58a6e0eff5c9b180787a8a6d16f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ff2a1b5aedf22da5487a45a49ec26e7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d13cbd0b20e09f5f4fe9becf413b57c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29ecdb57fef7f255c3e8e97a14c6143e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbb0e4d903cbc0c580e068ea4e302177", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9631337fcdda5d0541683c82fbd304b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a52cac84c6f1ec3897fd56ca6b3f80c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "787532650895a2229c893a9010acb8b4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db4e0057266ddbe3d3b05e35eabe23e6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ef3947053de6fd2990592c9c290f4a6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5214569c6fbbcabd31c2ce37200faca", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "caa51dcb4f3c72186884109f92b31317", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 4.060000000000001 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2ae56775a84d87c1799c6f3beb6678d", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f23fad6fc42ab03cd17799fd0d3e774", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c56a70c9a4105865c205c515cd986af2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b37b4416271aeaffbaa028fe81dbb75f", + "notes": [], + "params": { + "message": "MOVING: sample_plate_1 = thermocycler --> mag_block" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc0dc0fc76d612930d5fe88626cbc2d9", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32337961964b619c39ed9decd2ee5462", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_1 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c05db4d8bb636a5b4c198a19f1e9f2fa", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0d415712b5a3d89eee781b1e9136a5c", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_2 = A4 --> tiprack_A3_adapter" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2536ca0e41776b178d9e66e84905ef6", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c317827898036b69893ed0e7122c51f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f4ee3e61a6ee3aebddbdd999b5f909d", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11fbf220642a1a9cf48bf6bd0bb05004", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31a3b8043dbb9681bcb82574560bc9f2", + "notes": [], + "params": { + "message": "--> Removing Supernatant 1A" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8f1b9b99c5aca0b89b2b810fa75fd94", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35403d637343af573e1cd98557c269e5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ff5312db72a4e95e6db28b8854dfff0", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 39.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "960ecbe4b61b0ec3dd783af7e0b24b37", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7d6b825a18c5e1ed73a11d753e74d3c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfe2371f3d399a61faae1db23c9a0f66", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 52.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8fc29533c27e562d422186e2cb2c604", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31485e694e71418d6f4ceb0d9271beee", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6200831270710b0ed1fd4317b3e708b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2178d1620ba3ee4f797b4a6133ca8621", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b842a662edd5162a8632e82c9f7a91d6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8dc28ac8c181ccefd28e921344162f95", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05ae10587decc50b526c1d50649bd10a", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_2 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4be0967ba668b66e62454576240b72b7", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ca288c0d88e6a237dbf428d8ad36467", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_X = B4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ccecdc6941fed9e41fc102b1f1ffc8d", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "958b685a0253fcfb0bbbc9b6b0e0f263", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0213646d0d867645736f713db8d574c0", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8caeb2b2bbdb60af15bd25376b785e2", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6672ce240617ffa919e8683e4d18876a", + "notes": [], + "params": { + "message": "--> ETOH Wash 1A" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90d44b9cd999e7dda478ea167acfe2d9", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a27269a683551152c3ad8418eb9fd05a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e663047cbcf692b74aafbd909627b4d4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bbb179711f1ac9b5433d133aec903da", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40d02832109c0257a323da0e0846519c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9352984b3ffbf3d17349a7e74ef437f5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8472cee031a8803a23b728b10033aa8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c450b483a462a3b3be573e895cba662f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "455cfa1e25677c878d440d2f1d22c034", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffc3778b93b5c12499c00546cb4674c3", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a83813513606c7833fadf5e4b07d08d7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4aaaf806b9ba03e21c1fbe2621fa5536", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c55c26ebf1cb1c4eec65b8020c7390c4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c3ed9d200d1086ba17d989452b6142c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8219d617931f5c83115da101e28a7377", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31a2d5d798f3c1a07641d1de16d374cf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9748336bfd1a5c72f25637ff15a29c93", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb8fb75dcf3c41f96cbcf946d8ce25be", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "459935ee0932a8716f3dcf88f9ed050e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c30b9755ce96bbf879e9d8e65ccadbac", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abc14446dfd9a268a9f16fdafc84b934", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f478c1b58cdf6c20f49bc3697bb6b6b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69bc9e2358ca4a7e5a454030332e7eb4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ed7d227850a2c7019188728ac5e155a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46824010df26fd206d3baab6ec8756ce", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ece1619ab14a6c43b14bfda59d2db39", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff428ff2d9e2a02b70730b366af8d6c4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e33e209b0aa7ad8284c67f7b598ac41", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d07039cff582ab7d30e268d1a80adf8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e63731976f7865e300b5b7ec6d6f924", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fa51627b8d67cdfccba70c1865c4e58", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6af91e2d057dcf25ca9904dd7d7f58b", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c402ce7356adf815bb32c3c7dab2102", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10d60dafd5982e09a848ada0d15b4bdb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a978abcaffd22ae90de278e9bf7d189", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6503fbd484babb6186f7a715c856e37", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd6506239a94e8ec010c80e2f3f706a5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b825cf0e338299ba480c53185704eae", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02deb42fd00610db46e82d922e5644ab", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f25a8d01941004c4f4282785eabbc7e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15373b9a32d4b8b4bf8dcb2bcd6fcc57", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "530118d939baf91064a821a876a629e6", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "207ac0643466080a6bd3bd7ee074e8fd", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97de52d6d06934180a50691dceff57f8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58e967bb588fa7842ed7ac54abd8acdf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb1013a14905b746a9af7902d18fd386", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b276475637c769b1c2299102ecd99997", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e58358d95754d1ed5745053596e5ddc4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1502242bc45c1043967b9123ba0aebe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90a7b2e0c32ace75701923f7148104d7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "151009b8086d0437fc3975a58bc4e7fa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "605be92ba5c9b95ef9cd9556cfad7882", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ca86e177c3cdf18220344f4a922c577", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "374e2e13b09978c445ca4183e0fc1c9d", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f1be77016a652d45d0a92ec122a142f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5673fdbc5168a178fae98e36255b9d46", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7297af05452938b4c8f878538c6a373", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bb654419f20926135cf3cd17dcb512c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c41c74e95ad497e31250bca94806483f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e2272faa4d8fe8fb1468b26084232dc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90cad7da77f9d4d21e872149ec69eeb3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41201903d8f406108f5bab609b1e0b76", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "818ca5ad162420f8e8cfe04fdb19e765", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1632f6e958a19e584f7979889ad1a4ec", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4100c62070ca2f1d49eec8b8829d8a5", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "839f13243c86753eec2944cad7118594", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "075e31a147adc8912477b864f943c96c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52bf23543ed4f5e61d7758d57d6172e9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de397289fd88893c90741136da698e21", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "502151553ebe9d43ecff9a7a914a1443", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e38db92a8cbe407459ab12913e113a25", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20ef91566927bd023503ccb03dfe0c45", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78c51d73f23268446d8ab9811334f8de", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7648518b2946aafb0ab287692d735efe", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87aa489d5ce0c9702393ec032c020ca1", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f43b3252d4b3dcbcc513fe22aa89d397", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e0048bcf81acf757027bfe4638f4ebb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b40acd27f654884d05b70dfe56f65343", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95d07649d7ab175f6db2938812fc2c3f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da6d93cd16573d48bfb7f94eb9163c3f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8154bb2f0ddaa16efa03fed7dc2becb1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "890bcf934c31d746485594b9d0110802", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "529a4fb5ed653dc553f69caffb6fa8b2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e885ebf0341b44b0020abcf69e7aee67", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb6075c3c5b787c3d138d5ed84e4be9e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f82b4d935ac83c264542cb02b64916d7", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f6964a576b5b6b72d0a50fee4fd6d68", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3714c02a02f913c1e9e013d57071beb9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfd60dd262018302372d6eaf24a255c2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c6257e11854b36f3287cd4152f3ea75", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a563882f865b422277ef717ac3123734", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1e605159db54b0f5874c0e78f572f2e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1033c8df279a8478055f58c3eae8d72d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "591211997febfcc6bd29b96639b331ef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e688ff14b305d9bfd23053c9168c318", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76fee5975c75e4f3976bb4c5b4351554", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f4b3433961885ffd7d74d91b75250b1", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2adb82a5b5e5afd142e1f4da5fe444d3", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e47593a60cc0d4de73eb543e95abce3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0eaa88dd93a1c5ecc540957307defd71", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86a10978dff4d739c341797aea2a7db9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8e37b6c105867774a4474a6fb91da47", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcca03dc1ea924ca67ff752103d3ee4c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d484ea43a0a56004caae5a490265465", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e289b5d1ca15e3e8ed2b8ad4f389f26", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c94bff6468202cd92140a35e86cb457", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9539778c03cbf4f603e05c5e8fd3e282", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a64fa0fc5aa9b0c0d53c462e4374ee35", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b6a8b03be0198410e6c736d2590ea14", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "583c169d7abfcbb44c8ff8ab977d87c0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff3e4646deb1d8f889ecc7dd91a46636", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6316604d1c2a979b7d2dc492e29eb9b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e7b53502e777f88c34f292d5e39e781", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64b003412b92d441254270402343e2b4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "472a74df357c22a5eaf05550480351d8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82e6e97a1298fab96d9045b3e5938175", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b41175702d8460dbbc76c21bc0b4a8c7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce44a1ba6b1915a249ad69e52e0c138e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c90f8f36229d0f994f51d25f143fba38", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d68eb283715dbce366245540a8826a21", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f32c94074aa0af8231708b183018daaf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc25081762005a998744ecc46c975051", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "965f0650ebe9c5464698d56246dc9886", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a9b936995427e20a82023a22e9f7c1e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cfeb6aed49d02b2bf4a45fb12709d2f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70a865f58b8b457af972bef18c07f07d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c13d81576dc6598bf00f9feefa676045", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24ea5ba69a616b41079e1ef818d7724a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fe9d36a1792aa488bb054017819d83b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98e365db8285605c3cb9d696978961eb", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d811aa8c1fd82ddcd0c14f58f087a77", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3cf9b6daac53807311efc8ff531e9d0a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a98d3594b21ea319b8c61aa257df31cb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59adf38e01a3842b6824980f48185bc3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d7467fca082b5c495dd851094e92d80", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8030ee9370d0374f342e86ef0396ef80", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5c6a290b622acfcfacb6c636e2e471b", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_200_3 = #2--> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54045d7039f38170ab06c1d8078832c9", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_3 = A4 --> tiprack_A3_adapter" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "093fc661e5860a014a642714c4f24555", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aab38779f2acc0573da83b1b04b9afbd", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6ae164149eb45304d7784f64ddec0c6", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3701c9b265b8bc6a8d30924cd107e008", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23c30038e5c42d833f265c9fdaa74d51", + "notes": [], + "params": { + "message": "--> Removing Supernatant 1B" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b650810c8e8e9249cd148d981992d63f", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eef172c8759a3a2100c7fee4c5d2efe9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f72336b391132e65e3c52770bf3aa6d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 39.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee5ddfd56d7d559b2b4b6720f1bb2e1a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e84c05cd3d6de07a324ec55afc5da6c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa968ba3e801dddba0f6265cda229c34", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 52.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5c7c4f8beaa792dc1be097177fe05ef", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb6078aa5fac4afd9afa9c631b9ab1eb", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf4aa746df6f12f63e1d96622798e4bd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "691a1813a79797508374fa14c255118f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edb7d8d978ad4ef18889abd8f371e7ea", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "451ee5609d02946410672fd8390edff8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d1ba704280fbcd3b9e3e79f24e34f57", + "notes": [], + "params": { + "message": "--> ETOH Wash 1B" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27650fcfc8c670a0e345a8a5363c9d52", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e8a8ff0719fe883c877e64965f665f2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74c0419f9cccfab2919ef96b78d015b8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b6d656222d73a00f9bf9c0a61592598", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b49b783ff7560ac69a3b43c0f80a78ad", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f805602208f327f77c0fdde4a8e86afb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "046dd90c3402dbbbf6406d21bdacb521", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e742667542051786331d8d311073198e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf7ec23f02806a8019548229ce673a20", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3aab91cceac4e6ed6ba64a8e29a1955", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3ed9c5df42177699d15726e8466ba47", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a65a8b5513fa0fc5adf4485bc373f80", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39290f172009b35402b87d7336c42c14", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51e855303c0026e169f2ae0739cd667d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cef66f8ca042d70a0ec5cf5af49777a0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a385fda490f3a9c9289de009c297f27c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7743b22afa83c84298ea60c618b4633d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ae9fb1e65503d510035a0a58de6fa12", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6eb70e1b2d385064fda0fc587f5c35b3", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4cdbc8b186f49ff6f4688fc7db6e46f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab6b1b525e5dbb66a4bb93fcf2a8bf07", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57addee9c5e6a311c070219137cb4f88", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f9344eeb2a4239826cc44377741d7d3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81cc46dba5d5581cf48cdb8a0a333c44", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b871ed491daef94cc146891f5e726d5", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a23f78de2cbc2bdfa5e462f64e497a1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "139ff8a817b5c0829de23d43defc9513", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2533c87113ec8521bf95cf210cdbfc96", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6710fdc9d21b46ffbe2932697e01c8d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a683ef8308003f908e5e0f51cb783f8d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "416ca91e79ac17aa6ff416a12fb30a2e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d0fbfb3e66e4003f3bd9652268fa345", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3571b0273116bc1f23f3779093d4fd92", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4613d121b59f66ebaf95a4f16c9c83f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f9c51b64a49fd5a3c37d4197d75fe65", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3e23bce555c4e8803307df73d9cf4fb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2430924a6dada7a9fa74a1f4cc34ca40", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bcb317483d983261a0160688df728a4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ac56f57690f1315aea5388c3de61699", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "311f1a5aa3712b36f9877000535bd11b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d5926568c1a2c589d02f8f4c95176ef", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56359bb487c8f3068f438800d41eeca6", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da2a319a3095931ed3c67b6ac2c05bf2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55098f7d0e8056b0ae19e5eec60ae7a3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "064284670e1a3f6c1cb5b4584d2beb5a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d018ea3c7d57879e1e9c9b7c623d0af", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4871a9be3a0ff3fd7ff37969f38da2cf", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d70a52e39e806ffd77f74975a233b881", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b78ea99f541c2a7afbb22492b32a6d5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "995460732d08fcaf8f5d51641099ba20", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33d83386ab5718ef314309003dec15cb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2503e115a8120893f346a3fa6e0c833d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ac9828a60084253e34395f1fbb49549", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f149158ee222a2fc3d38956b9f659bf", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50a6c7cd6fd3b1425b4c5abe37da60a3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd1bfb12e67acbc62ef98d647fed97bd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9df402a2f30d07e94c53881bd79a9b94", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c5194191a522ebf8d4d96d65fd97f38", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "196e8b6cbe95aab55ebc201595e752e8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "327924053d5cfa86495c3e9dc0ddce19", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75cc4472b7aa2595f63df3aaa5a58bed", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc3ef4c0aae9945ee7c4141d4e254edb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8711f86444cf8603b6e3fb27245e78bf", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22ed0492f147ba569ae92f37c6176151", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "287bdf2668d111c2ff1e2e10bb448d2a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6cc3937c15ed26da074d19e51f76dfc0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a31c38f1fcaffed936ef169793ab515", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbd40bbcb596ecfbe5cea8e5a31a4904", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "650fa6dc7573ac5230fca8f13d16c730", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fcb40d9533739b10b3c7be264f27425", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5f51196246c5d8ca723bf89e0a15637", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f01c0f1e75217ce549f316b56d92124e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de0c10f6716fd8c16a7f4c2f9750d551", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00aa9c26928f357ad3bbdae2f9721fdb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "123582a32775618e317388fc0d64d7de", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e09eafe6c7e11aa00a6037a4ba033a04", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8f302b7175a129d7177e101ca6fab1d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f54ab715e8b67f8c8d30af35f99c7097", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f5d0bcd6134654c5b702edde8b21ab9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "030a2029ebe93de150c6ab59a31094a8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f8a526b5249ab61835b4a4ff6a5cda5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b59bf211e4b5aaa409d6dcd327186e7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d2b9b46a686a4fb9f83e8cbe63d4393", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "831c8db04abe81a78e428b490b92f2d8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9a6b91ba3d68b1cb7ba8413c756a81d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcadf9c4c1e810110b098b5e707457a0", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b47e1a5f3df097bcbf156cc6bf438c4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b56ce2cddb64f3b65ca85bf927c72809", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a56b17e479b58d4c92c593ee2dad2d3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4777704d5e988b3a1c352ed57d4897f7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15cf740814dac5c06fdb31188d48331c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbbe9165c31fe3c36d48639e232c8ebb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1edba34580ed7ded615bee0e755dfce2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95fe9c6006d8987e8cd01fecac88847d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11169200739a429b1c2311db5d848460", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acc1c2338f010dfa3a4e687c21a40010", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "358d18c7becd0470b94621f79c66b89e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bb97bee6a7c1a17249268c0cc18984c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bce9e27d5f5a35e6d1a3462b5e0011f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32b610f359b540f7ee6db4e91a4eec51", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5597d6e7251922da8bae190415ab0184", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4c55e60adf3f622b8952a219480bb63", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1ebf7205de3863d62566dce552d1c1b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf81ae6404dcdeb50d17a35715bfc3e6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1eac0adef07ba182180d88eafeec8cad", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "064e9e2607e18b012c59d062d03af769", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f236534f353f0b48f47abba4e0aff3b7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "590f0ad071183fe472502835d9547383", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d788f9641bb1a65f632e4388241c3a80", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd819f40d8079e33e5ace90807173413", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf5de9ac83bd1535b3ed219edc7cc8a2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ec817498eb366a104dea26acd3a9ded", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db7fe06974d0e2b9745375a95d9245d0", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5c5a51efe57a7083e3124e5611466fd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62c1ed10d101b3b61e9db69f3de22436", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d1a5c44db13c06f08954487c71b3aa8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "714a9a0ead684eff525fa2d661e7c49d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16615ebacf86128927198c3142c6e266", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a5090d55e8f79aeee7d4d6f2290efa8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2915c44bc9e1ec53c7c7f7349610afa", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cce8629a0003fd3c7b14040a6f7d529", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0b4659ea265422864f4d7ca018dc8a9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99e1a6b8b62fc3caf63612c4f43a22fa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f65460ae59135c330e37167888f7d09", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -35.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 6.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a09f0c42c49e20383e58e90def04f884", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24f91d9e73b207e0947ee567afb81405", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "180ebb11b721457fc687da4fd3dd0909", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a33731e4fac93a0a3ffc410c1a37caca", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f9175ea8ca61310c82a89f78c2888c9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0466da0ef020cb80f7c300ce089eb2b3", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd8133ef502b099b2d4c03e6a86d7c13", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cf44d90fea5cf7fc32403dd2f6510cf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc1b3b3f44fc789837c1d74b79038754", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 50.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a61c301537e43a9b5db67046687988f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 55.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b76007918a1ed4269aa5c4e8747ea188", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43115ecb7b89051ace9b139095262c9d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "522bc5f1e2adff917e88722e9f702c83", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_3 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d48cc57e1b6bf0b9a0b24bff03882216", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecd5e5160b9bb647b478cbf7d28c7402", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_200_4 = #3--> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e2827eb4ae97941a637263e9f35b7d2", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3895cd906cefd42de4f2835a030f962", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eddd51e95a6e73de005688795eec9b08", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_4 = A4 --> tiprack_A3_adapter" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c9a5a9cb1bd2b6f1717eefc6ec18ed8", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0139ce7e8a010b7b5a08342d94d9c166", + "notes": [], + "params": { + "message": "--> Removing Supernatant 1C" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d68a32918a25c2f07cfd69c4333a05a3", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af7485abb6994acc6719df5019aa1efe", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "918e9348cc877e11d5e589cb870d6afd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 39.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d2ed079ea96ce48ad73443d14ae8a48", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "803bc85e9a3f161ab552ea165793931e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4f550a61fce4a1999c73110c8f194e2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 52.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0af44ceb064b3016377017776739d5f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b7b784505ce49ce9f4bc03a3a758706", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6c511534de8aea5609c7e01a1af9c15", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2640db19fa4d5f676bad47dcf6789e23", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b07cd49084d569bb5ff2c82ad53cea4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "035559fd2b0153155a22d591721bfff8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d799f95f9bf5a9629afdc6fb8be94573", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_4 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "771ee9a1883a88738c4994b7b4e05f4d", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11e0d7119b62ac92dd892b7afc0b6090", + "notes": [], + "params": { + "message": "MOVING: CleanupPlate_1 = D4 --> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d86bb88d7907fcde2bd6e177b1db16e", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "454770fb5e9f8d0fcf3b94f97cc63790", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_X = SCP_Position --> B4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c73a246c4fc0137b958f1cdb76ed8ea1", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45171f7ceef9453bafb0d4de578105c3", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_50_SCP_4 = #3--> D4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b42dbd8a60a1373d7b7fe8c8cd986fc5", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f263c6c07f0a9442089a99adfcd58785", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b87af3ffbc97926475af3bd6c26183ed", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_4 = D4 --> tiprack_A3_adapter" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47ad88310a4900a97de01a38bddbc497", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb73c675f1c88a2dfb37c70fd9e09b36", + "notes": [], + "params": { + "message": "--> Adding RSB" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b316d85da7b1e339d46acae5b8f3d5ca", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f54bbebae1f6ed063551468c2da614d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c209c350dfc6eafa3576e0126df456a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dea71f5ca4fbcef96eb257df9223232", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd07ba3216db74c3c6557b1b8ec5dabe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ef5f1817d32784b7e6b67f4abb4ecb2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad45924a38af2215c9c885ba67de626f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8359010da2a08abb0531418ca220400a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6627daf1615e7b02374d09fdf8d1884f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1fb9f03bef36264d5109639770f9a0d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21c38355c26f4b0849096f17197898ae", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b033066e7e836df3e78257477608a657", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c6db4391ceb8e4744f38dabacb28bb7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cecb774714ec06e671cb1038493bf34", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f272663d354f0b4d65942ff03b4aa7b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc86c9382e565af92f912eee1684e34a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3fa2a1c6eeb10ae5f502ad7d1b86868", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f9ffd0f6afac36ea11b75cd17e42bf0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3dbe8e26df97c748f126c00bb1db45ab", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48b142f76ea133ae54690e928b72f718", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81d8f22da9ea8312315a191aeedd604d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f980f0bba655d83e8e390db98b03f1cb", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40fa7f8b90fde378bb7a0d95fe69f853", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69d430ba3947b01f34dfc73faf7de2c7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "456e16f06e7810cf7a43f1cf27bbed72", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0de8127d65cb109666d52557062822e9", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33fe722afcc0a420e205967245aaf55d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8c57b9d890073409f3296e5f616a640", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26338effb526b59d0911e6e54849bf34", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "613ed423a018fdceddf76600b5daeca2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e321a3924392d946ec6f0b8eaec66da5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "593845431d7b3de2177e8a9b5322caee", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9daf8d621a1a524bd710c7338cf45bac", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af1b9ffc969635acc574858fdc4cf343", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "845a53c4ea1d1dd044116e2ea2ecae36", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79bda82cb3e6ceb724d20df021157140", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00aeef43fb64d5561fbc65fa15033ec0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44b107f9ee9d6d155f2f3ac40e7558c2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6695990f5b7a222c5a8872733b50fee6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61422adb669a9481a7d6900e1acb28d0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "444d9c58aa9ea32742d6550a87543872", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "198609c925acd5fb8d76a5ede58ae3f3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a32cdb1f0db9cbedfde4ec8afffc5340", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8342c586b1149a72efce0941a02b62c4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd6109a3e075f4644d5eb9c8b2bbf3df", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c18c05b66df348998311a59a21dc9f72", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ccc6f4737544b646c8e94b76509d398", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed69dd1bac5bc432856685a99f81901d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b57f273107d259ddb96c5cf4ebd29ea6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f8e171421ea56edbc4002d3cb8498ca", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3702f6a2235273a86d306d33527e802a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59dab80e60e7747ef2f078d56eab0294", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e92921b4db2e82cc74824faa879eeef1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d83e16ee75c03f433ba49a3a5a2c9c6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7410f45b2a7eef7a84962c2f96511ae", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "581a2d9b48a1785040737a2475d04416", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7dcffafa5185429d73c8d4514e40458", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "facce7114e3ecacc24944de066fafbca", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7ae33eb110eab12ca7a1f76e37ece9a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7e444ad8d74b21b710f76eb043bf2a8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18001e5355feb2b091302d63463675dc", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2a0abc0d2934862805fbafd1f8b1af4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34cee1a9d92cd6e8467503f09a9fd909", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8527408eab93bbc7c5f9608f10bd155c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ed2fa95085ae844c52aa765f99bba6f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c3d843c6e62f3acc60277841f979fda", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "603555a716677362a1f68a0e354cacac", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d13fce8aa7441b4e517585ec56209f5b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a868294f2a6cb4309fbcbd7387d63f88", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "726fc584ac86868767f872c648f32f25", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d30b6b159831bc6361b9a0fe8da74ea5", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51b39ac9a7ca4fa27276c29c4babce10", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "656f37a6bef1534cd39ea8193aa2e011", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79967f8a84bfe1b7d0b9d5018ab7fcf4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4deb0cd209ce4c6cc2bc52b22cc1d6dc", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbf30cde7ab809bd5fd91817c8d59ec0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a59385ef9d7cab7c98bc38bc18b295a1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a142d8be07e354c5ceaedebf67d0db2", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47965a498781c4bb3587c0ad20d1135d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ec0a5dc886c9f2ee7cb2da31377a54b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a978456f6ed1a22931769435ea964d77", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5eadab4e74b23fbc8fa10ed1029b3ff", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14ecaeff07e3b157f071aab19e59ea4a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "248ff5bd89ef85c1e1104f222af821ac", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24ed6123b88672a3ef5c171b86ce9b38", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c9133c0d6163a19a018c27d12d73040", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a88f5fac25c85cd49816c69c2be16b0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff67f9b6799915cd3383b7125f3d5756", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e350621e0dcb0d1e288db52d4e97c343", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56fe087925c1c4437de4f9d6ef3d6ac3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c01750fd9d0e95fe1e6f6f522723e68b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e323b76161aa4ec8b932dcf669307bc", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98c53d0690d9bb850ac5d59972ebf966", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c75376a13fbfe62be1e5fdf37ab366c4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f1f4199252e99ae4a635abb23960b7f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73cd5d5c719f6228b92a44bc5cb77382", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8666c6717d2ce467a9e89d1de24022f0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a2090eb526dbd6f57769f5b39322b01", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "398296513cb7e04256d1e338e8b90a1a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f541f11f0f07b256600f3c561351e6d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ea23df9dbdfde14d3d2c857de3e61f2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "532f1bce4029dec802f8f6314411a918", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94586db93a0b9719675dab9ff4dad4b1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1522aed6271fc1ba57b7273d8f86c7ac", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42e165849260e1499759fe1a7b83c5b8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b53956e75746a2f1b37501b93c0aefe8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f151f409a041cd9cb852cd7cc199ae12", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de5160a5ffe6694a714d4a1b7638c64e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8bc9d4a6c648fe04fc45c20034a35cf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b44e2c8c8a6d571135fa98cf2e34dc52", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "362eca495024e50e70a966482bd1b9b3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c908b047e8a00a5a247f46b41e2e2cc", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "632a909f222d3b2329ee118a9e24e99a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49a263381397e7826adb23826e6c36aa", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "316b4dfc69f41eab6fbb26b50f9bc81f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d81a6ecfffb879a4fc67997bac437f4a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65fb110d8b3eae218ab16a68364b7bb2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a66643c8affaadd3013bab9b96a1a8c5", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ff0394174eb378ff06ebc9656e39dd9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63ec22482ab23be2c7bf3832705cfea7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b636cbdd16168f24cfc402c6ef074dd0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4e9776e9a2f62d6a3f18e4d054f2687", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a567f6fd35e6a0089248eb82bbebae43", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de1270aeec579f0c58b80636508f6f11", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c02b7b485a821ec710457cfc6b797bf", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c796e3e5cf64f83aca26ea53a6a16b28", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e951a7e4585f61309406349dc82b3b30", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dea46c0d0f0c723dda1b3d0ac5e56cd6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcb40e34d38c60351ef354489964cab2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f44998ec9a1d248777f5b01cf3e5d51c", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7e6c748495301c1b301f98c20749b49", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1124cf883f45cac095fa6b68e2c096ca", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b0a563a61205f5736dee604c91cd2ce", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f54b6626ed2453fb3908827f3da1cf4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe5d355a9b4a44bcfc7ac81c8b62659f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "183b8338f5b1b4323ac769775f6a52c8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88132574730f54757ca781c719bc301f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9c81e0c27565efde7370193b4b074bb", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c726abaf48845f7ba62dc301f7e8a36d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62ee83daa2389b6819afc70b7f6f9948", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ef0caeaaca4c88e48b1716e47eb8d6e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c62afd9a57752933762cccec62d41eb", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9683ccb176f517be892dcab1daff8a7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "893d7fb43dc33c29333b67474a86d9ad", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0755da61e5cd445a1c439d02d7cce80", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7d544809b21ee02b5f5dc0308ce1c5a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb43872862cab75393eba00576967e43", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15e007d7c0da949f10cce37ac357f7ac", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f60b239c721eef0e313d921e186cb21c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b0ed1d08c29a04bbf494fd6097a04de", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "818ee045d568d06f4763d782d66d28aa", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec611d79dfe800e2c93f673c5fb9010c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "077b4e4272ae9dc20cfa1cb79076e2cf", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7195d62b0d24b3e3138317110447bf3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c554896e27692d1070b08773135df441", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39811c4c01176f372defce89260c9a16", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95b1a0d4b99657910d19539f015cf253", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be91e6ab8f5b778c8c0e6b8d8e38d13d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "684147ff230ba0558901a574dc7b1f84", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8840d5ea77fecdb8e6f83522f442ee8b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f68965df6d8baf009f7cf15b14d5c30f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69def1b00b55606242c63876a7f28fc5", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4aecd0d342532202c6d62239e67e2518", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c74261804b77d7ec1335db931e43a3e6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db7ac9f61f5447862722c61a71bd49c1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26f9864c0ec29fc1d659656fafbe358a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30b8c7b21b286455e043baa5149a44cd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de3680c2114daf489026e3396245a0d1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89f489c5b783681129eacb3cdd87b197", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82c58160663017cac907cb437e1a9144", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18ccd1b0453a8de762ddd8b9c1334870", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e226c0940fb135702870f3c540948ab", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d6c7435bdff67ecc004eb302e66b38f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "718ea862df338414aac3999f4ab609ad", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6b15a932c080c82ee034753df348e10", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21e12fdd9303e5affb4df388f70eef2a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "141e78a4027fafc686bf9ab70dca27ae", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44d3b82e4bfbe6315cb0c46e308c84c0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03a566046fbed1562d8d191a4181b174", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01c6b1312ae1075850091cc6b7a54db8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84db00973247f8d0b5080a908eaf4cc1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ebfbe0f66a8767229afb9f95d0ca26a", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "604042003752c41c49d49cc2aaf13d4c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8021a63ea584c9d2e0576a373071a2ce", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8c49e7f851928cff92367e14f1de844", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ce9d014cfc67d416ac7a20db4e9b2f6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c0cede01376f953b2ed1f020cf03ea3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eeaf664b74d9bc65def161038f94ab6d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b87df6d10f068e22ed2d666d0cb2faf", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62cfd45726a66aa61e97fda994cb5cc3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fad0092de6fffb9e9bfcaee2c51f9d46", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40da3fca8bd1a106377c360ed91f1f78", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb91cbbb9e738f653c2c4a4d9d15b416", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9be6d41c507192df33e05a1c5280f455", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5da88da4c49f723dfb7dc2df93cbeab7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "937a43b35c50b51f333aa7f2fdaac968", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0066b1a23990a989570de6f55023199", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e590eaa47e2a2f01c9e6357fa4ba36f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b564d648b01b16ffaeddcead169115f3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86c5b17cfc3e87b6fb7c47568fd83338", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b802fd27198f18dcd696914ac08e1790", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa8443c4f9f7f813f38eb689daa97320", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53d4537c22d89f2cead8df7ee189d3cc", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b03c64dbe800fa2cba4276413b9b54f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbb691c95480ffe58bc24e30438001e7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bde20e18fb8c99cf931c5a38073fd58", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36dc7f2daa950aff06bbac9f870c2169", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3517a00b11915dfe8ed316cc652d7fb", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "857a932cbf00be14c50c2640146f6680", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5077ef3e00a3fd45114fc820849bd058", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a93879bdcaea7c207c2da2b3b394c5e5", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f80d903c4c609a30b8e4d608675bc12", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "923f334e1a789dd0afe261bd5d0a37d8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ae9da4cfc7401542944c99e51402164", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "922b6ff250f4e0a3d0ede44cd461c372", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e33a141af3fbfff4ce27a9754f39ba41", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d79ee8c9525dc18e7c31e49f8f66d0d7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0f6088fc6cf4f645e078da045727b6d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03c475ce09b88e28cd90e4977458a896", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fcd2ac844317d6f7d16831c699c8868", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f108e696c4f8862894007972c6bc7626", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d76154203969ae5c8963578d08c181b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e6fce3a4a597b7d6dc45ecc8b46a8f4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8866f26d055a05923f03a962ee180250", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dad2a534a41b6958b86c8b44eafc5e7a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85af36e3b336452c4c8ff274b7db999e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a70b119a14fd8957efcb56e6df474d84", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0c925c1f9f9340770c00686c753e850", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f39f66aa21ee103921078d38d1f9d7e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d48ec92faaba9b3b838db82141b8764", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3045f26debc738ed971619f83a40460a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2658364070f173cab2d39cf7861aa834", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d739404529cfd7bf169c68fbeb64fe7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04f8611e67dca2aed8a975ad3fef2159", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d27b8536ecc99591405397ab6596a17", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19a1acf6af88041d940460f947a0ccb4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f8bae9edad3b9fc63657f12510f560b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4abf27511670971b758551d40a2c8349", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3ba812c64a52592ae4255b6bb38e98b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e90242835826a20a7060135e66f2b4c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f03fc0de6c8cbdcce71022caec37ff88", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bff1c7a662e137174eb4b56ac0fcd97c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdc22dd2f44ef6df50ecb54a84d5c043", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97b4d169d426ff6d81d434e8e8c86b30", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26e5e408ffc173c28f78f10b22fd6acc", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1846e5424d2fa7d48d4300d02937cf8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e01cfc180cf376c3f782a3fc42b71f0a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94d3c51e4b12a01c6dbdfad85d66eb76", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ada5a99d6ca520e14b82a24aafe4909", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4aa61b53e0c6a61bf7ef99da9c9effc", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69d254e9940c460b2660a251392f2962", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d11e20ea7ae2c0919f7d12a6cd64599b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eda30098d83383bf5954fb9802f1697e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3439f3d6361ae44795afde2f5506a1f0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7b234b375a357a785ab5dffa05ffcf6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b30f7ca87f28ec85e6811263dd46d1e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75048f1916e7ffab02a05818a0453cf6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "523428166216edfb6cdc3108ed57cafe", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc4cdefc91488b9614be4e0d4d55f4a0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a650b4d07c80d655e9c5d67b50e32dc8", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcdadd8dbbfb5593ceae9117c8bbb64c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31f355f7bb75764dcc73e1af4344236e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6451a44792f15a9f3ad046f54cf40a54", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2812e08f56a92de21b7656f98b1e3e6a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c72c572819d82acc7c8023a1feb7e07e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ad9addbbc7bd82056c898a337db4e2a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f89ceef91ff422d621b0723aceba410", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c6c1718ca4f488019e9bbc324efa411", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97792e36a4e14b207f4fe963c75f978f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "288526d3bc74d7601a134a9834ec7a1e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bfc287800c2b43173df27595c523ad8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4e1b723a5f1cad38e40e47d4996659e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0dcc2f01c5a91a264f05e4f976f1f7dd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6823908dd39819bdd9263d0d2549b68", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab0dbe0ed3bc090818a547a1eaa1f028", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c86f35f5d7f018636b26b3b408e0a386", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "909e771fdb32a652657f59f4ced94cec", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14934306adf76db1a1d57cbc754972b3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43cb3ca342a94a57b6392fd996105023", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c29b002e18636d3210c1c0c546fcb9f7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33b8bc7b6f0be1ba7b4492be6765438d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83a80210a1d8123a7e93f86a72973752", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbe07964c1f8ce01f2da7fde72bf4f65", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7ee113e53713146a36c59858bf81784", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "902371deb2ec351a35ff170fc6671c07", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a03b236bd6fef045153fb344e4dbf1f3", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86696ce7c9c3f7500395de6e5d4b82f5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3bab9ead5da5de320251c22219a9541", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c32e395d920b9c5e49dce650f7287b6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f4fdeab5c4abd325cfa9f1561a46442", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f6f2f38d574c0058841c57b083dc69e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32b69804d8d028e08ef3bd75a1297c91", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57163c796b619d1cf1a792e07ef9e070", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72510496c72cd7b43a5daf1ffe3eed66", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c8a69ab06f7a595909b404badb6cc77", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0235ac4d08643db83f1e94c99760d1f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea0aa8e1da24e67be45f5a7840e4eeb8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70dd2e051d89931336c6c595661d277b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c08f4c281b1cb2f750537f1c145350fa", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5d45dfc6732e27b0d343ef2be11aef8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f81d853cc48044e0c250d3ea1993006", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f58bbcfc4fad3dd68e97bbea98eb794", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf1ae64cb7508cd09c75722224eac9a8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d1cc84158cef0ecf06099086f4088ed", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e68798ee7cd50b9a590ae8e5b9dac0b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a40494280f07d0d97635f1e6273a79c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbd06342f8af217432415a531f2a1de9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a799cc7be370eeae286ee3e664498a40", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8306deaafb50742c9dba2ba249e6311f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7322cdf13a415d73e8f357f3ed1257d6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4606e9264daf2535c87da3581d6ece24", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 38.260000000000005 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4585600c2f1e20ea8cc32f5a9a80bd80", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e567f571895ce00a4aaa7868224d0cd3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6811bc895fb09f10e97c261eb486b041", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_4 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4d4378b3cf5e4985ed3f220662d1b20", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0383425f7ec659e562e928740ed3accd", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_X = B4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38b6d3ec1b2bbbe5b6d1d8e6e05db619", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71af4c04032d71c2f64cf72c5449f878", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_50_5 = #4--> D4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6f89edba462160edc51878749b56fd5", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d03aeaf8211cd07e3f4123619d7ed3e8", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c03fd6bfc03c50db4f7f767806a66963", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_5 = D4 --> tiprack_A3_adapter" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1215b6851e18191f892a991f63d67fae", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afdb8bd79e84dfe23fae886913ccbbe6", + "notes": [], + "params": { + "message": "UNSTACKING: sample_plate_2 = --> A2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b60306abc6054f2346a3dbbfa235a28f", + "notes": [], + "params": { + "message": "MOVING: sample_plate_2 = A2 --> thermocycler" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5857937471fe96e4052163040635d4f", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9632ceccc60d4ad40bb2ea775ced1e43", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dde0f75debed03cae6ed006cda4bcc2", + "notes": [], + "params": { + "message": "--> Tagment" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2ab99b3d19268477d7b3d654be546c8", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca0638b417c27a07c4e5161a1f0ee8ca", + "notes": [], + "params": { + "message": "--> ADDING TAGMIX" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6032e2008d82584e0ac9b9aa88b98a8", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "586b7911340b2bcb724f1c0790d0bfa9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfd8d06adac800a2f06cc8ee9537ae6e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.13, + "y": 178.99, + "z": 12.049999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b7a658d19ef609ab4d8d6e03c47a77d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a970cde46851dcb35147d8f5da61d25c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c6c42613adaf30e50e06ecf7e72ea35", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d88a26ae11d4e9f401ec0e1bf39981d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 75.26 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b25d45db22d1009bbd21ae47b274552", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = Plate Lid Stack --> sample_plate_1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb92eaf0da61d9e85d72b3cd6a1c260d", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0f5495cb31a6860b9004aabeed2f032", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb9acefe61f72fb0a2002808bf92306b", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e962b8663cd6ff288ef971dd889f455", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = sample_plate_1 --> lids[2]" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "145357d2912e862681bcfa43b25912d5", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd18ca19226357884e3fb98088830960", + "notes": [], + "params": { + "message": "MOVING: sample_plate_1 = mag_block --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "824be0bec445ba1a48565f56998add26", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0575ef53d436a7870d484539d26b889f", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_5 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c20c1dbc3f400b73a97ab84a66b3a9a", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8bd50f44a0088dd91f4110258865caa", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_X = SCP_Position --> tiprack_A3_adapter" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e9071d284900ce26360a6b776f8b74d", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcdf762396aeb3d9bc44eaa65a6ca255", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_50_SCP_6 = #4--> D4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18c4a5f25a03a7393f9e248a240063b2", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efb1ae950dd67f38aff2340967846ea7", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86a8192ca230fae1095106f3bf4b42d5", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_6 = D4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5162de5e6715d53f03632f1cc37d411", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d81eea948182d5cdd74ad8d41d520c0", + "notes": [], + "params": { + "message": "--> Adding TAGSTOP" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f7c48c32a5871d5c1e5acb8313f5d1b", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A1", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00345e5e1ee0796d34161f23b604f104", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "112c7ba7598b7e40fd90dd4bc1ffe8c8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9928467dffcb1a711202845a194fa62", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8370d8584d50560f21f67bc4953326a0", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a91b0e176419d70d18430c65323e60c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "530b18585638398aa154da07fdf390a1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd194306f279d876257506b215554a99", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "010bb12f1b3edd3fb35f1012a8bc41c3", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d4f6ad677b48039b255a48cc86429c9", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5b7755001f7b8904493e1eb69ef9b3b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44577df1a03b93ee162b9b530db11065", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18d7ab818cfaad7810deb5f6964d3ca7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2218549b2babb9581143989fe2e45343", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e417b568dcc4797b0f05d08f6386622", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2506f62c5947290040fc14d4186ed685", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "380dabe27e664fc8bf32ec2b7315b99c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a0695c2fb06c367d654af66f629b0c4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c32ec74ab60d091467310013e70e20c8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4fc417a69fb90ce6eb794aa63c7889d", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1cb980d4e8539cb3b0b941ba1ba9d1b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0a093854469188d796f0162e2fe1124", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfa5a6a13bafbdca558080a17b76b3b2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01cdecac1827dc68d850458e66a7b326", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af4298aefd88c37e3a50bb9f4c563c1d", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2006b6da6477ae83a5dcb4671f0a042", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42542b92c36fe732a08c16719816fe61", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a77b41c3a1778889fbb0e82cb9047a41", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8be2ec1005eaef3ec114d14c233a8ea9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0b1300036bf2800622026b8c42b8a6d", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1dc45f3ebfd3a7dad73cb0eaa23b0c87", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "273982547e93945f409e1b5d6558f6a7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dda6c63f168ef4c95bbfcee61716b354", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0816557c7e34d064f1aa1a0450ae3234", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9e064a772b97a6e9a34642ff59a7c38", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "893998b6a3cec881c44be0fb804ab7a1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5131b09abc27e37b143e22c990cd5daa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67a9e3cabd0df1aecb2084804793ef6c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f695ea4f2332a824e03ac9c8bc1c746", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b4b508830404998dafb16ff1d590ac9", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "432b801b132b57455b8dd0b6d0177e91", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec472badf4160b6aa00f916d654848d6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97c46cceaf91254248efaf01caeb70b8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6856a978d6b0926993b1b451b5505313", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c64f4f2f265edecc1eaa90b4f20e10c", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ede8a23b4817c52302757c9f1cb8f7e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e4e9bc83fddf21889b61f0952f6108f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63645cccf900c4f1dbcbb42826794c68", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df3e9beeb337ecd024547488d87120b4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47fd3daab943e777c86be0e77e1191b5", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df480be161f893cd9bf3153dd4fbf6b5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec8b78812e1094c31d70f1261949a198", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d620ea0da2fa3009e4425ebd4de84f1", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "101f9f54ae6ae988b00cb4e0f8f343da", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "224f76d9bf653452b5cf9adcf2665521", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2890ea35ff6fb6a68c4ede3e23c30a4b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f423370531f8b92c2d5cad6d2a6be54", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6e6cd2021f0f05b3424c3417000cc10", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7cd27c78e3d3207b8c7f66ee8c5f830", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23a5c3beaa5feffe8dc692c74ca002d2", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b26a78483240d681c789c9b262d50392", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15f3d1c7adc5e68a02174947f0d09dfe", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = Plate Lid Stack --> sample_plate_2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0da6a2c3d090afcc94648f3e7aead5f", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "735f649dcecc9d3ba0d23bf02dd92ef1", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7677e0403e1c9175fe61dfa23bf471f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2f9032d04605966234a36ba5f7d7080", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = sample_plate_2 --> lids[2]" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd0c05257e3d0257eee25c72afd2ab3c", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92b4e2ab40ddeee563cbdb749f7e02ba", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1c191696e84a8b204aa3d26019a45ee", + "notes": [], + "params": { + "message": "--> Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4de602afd42b40217c6f68fbd3cd5a5", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73bb0410084bf8c384a9834f919dffe3", + "notes": [], + "params": { + "message": "MOVING: sample_plate_2 = thermocycler --> mag_block" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a3465c00beca0b34177886c3bd36d6f", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1277422be7c6b2cf27c88b9905c45212", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_6 = SCP_Position --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9bd3ad88e1c46c4215674bf6110ada8", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41dca6700d6e1bfa6661b9b13a805ac3", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_X = tiprack_A3_adapter --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7ebb22d948c24d5ef7de84d9cabe1aa", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a398b17dccab573eeb66623025597cd1", + "notes": [], + "params": { + "message": "MOVING: CleanupPlate_1 = A4 --> D4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a9100b2e6d725b64ea15c032184818c", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb7f8626b860833c5dbc79d05415bda0", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_200_5 = #3--> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9f6bffca46ee4a654c862c080fc1625", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce1d214fdfa7df8471b8ccf9c188e150", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bee8b5148da085d78a5dfb0b708458d", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "943524c54361e84d7735d23016c8f887", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8499dbf5b6581704ed94899842c9a5b4", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d974f6f8c6fbbb9b905106b905f6cee5", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb1bb609df5cc109bc93a31cac501661", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c4a9548acbf7ecc8a6ebdf41b4906ab", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d23b9ea79701c1e301a5ad034ba308b2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "490badcc91cd3f6daf1ad2047db16b7d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b782b36bdc6cdfdac7fe22faf4a2ca2a", + "notes": [], + "params": { + "message": "--> Wash 1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bd48609cbb9251f6acbdc35ed488790", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cb57086e7cd53e2dee272230dad1c45", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26779ffb32ed417a9a764c54cedacabb", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed89eeddf140e1ef7e0feff926bf1e82", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5f61169d319c5749f844a4acc8c0351", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7c3d2707ca7f61495580acb7319136d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0566365381d52fa0802a281aab197758", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1e322966593eaab986d886d8cc36461", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d360809208791bc034e8c20c9744d73b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84c39e4643758305b698c5ccce8921cc", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7462990e23702ce0aea251fd9d9d4be", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7cf342845a038d28c9b5b6ab9833108", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a141a83d57c421afb23e5920ff4e5a46", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d3db0875f4cad0d0ddca71b415ae8bb", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3220df6484c89f208493e47c0e1cb85", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7f4ba909c421c1a8289e30097e93533", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a396332c9627135e7d46e7cf8ad3196", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b13db8097112fe69e22c2cf3e79f8193", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "452de7c9eacea388185591c11bac979f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52f7b992af9ea0e5190e066b49a33d26", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7df0eb768e15188f552e6f3dfd4a8d2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a562db295c4d87baef4891df9201efa", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fec58f850c9678210e9f30298ff657eb", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a620aa4284af2b287599ba5492f208f7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f05414da8827e287284c1b2d0d071821", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b7eb84a7a69e1f840d7e4f43d3af95c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c52013b2b42741ea4abba7befc829e7", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33beb7899be310d5ca7ed53779f8be5d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c068460905599de51299d7ac5079c8d5", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_5 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff7ef47f87e6c36f91260ecd18d2e829", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "247943338c0b63cbe63c36a6bfc86886", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_200_6 = #4--> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fbf5ee83881a2dac689db02e1f4f371", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c56643e49b642e5c5a4dbf13a1f0a5b", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f47429257c83265ad5fee774f8f4e139", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a737fa0444aae436ebe6525e88910bb", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a41f77a9dae987144b98fc245367454", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "631ac36d8daf17d06ea8d82bf7d44166", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3192e5d66b7791a7feaccb46f0814dc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd93d373343a2de31852c5ec75f0b31f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6234e009853ec9f96c26237bde702469", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66cedc9ebe08a15787815e2ec74d0282", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b31dae95ce07a1fbb2aafae0395abbb9", + "notes": [], + "params": { + "message": "--> Wash 2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "870515b2e7a0a2559c9131c29fbc6043", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27b1d1cea4bcd19b0e562485856d0778", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "949b71092696006e764d1cc4ab805ca8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "daedb789f9fc4c8b03e205cb7a245fe4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f34035f5aa639174efb57f600fee704c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27a1c43dffe86fcc53357c8390c5461d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6cffc9124ad7919aeb7893e63ee57074", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a44f6a0d4918edbbfcd6963973b63f2e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d18e29801bbd8f4503b4bcd3cd5c665", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3752bed465f614b2df09aae2071ac580", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af06c0b969745afc6c363470a191f996", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac6a655d82c61ff1a05cc8c47e8d0413", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "723348218743ef2c6a029b420a4417db", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1768748381e6e8775c47c3b0fb328291", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b16f3890081d367c847157bccd2549f3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af3743a4047b7ac9864fc9ce3ea30d7c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "290de1e7c895e7f06009e917d339a621", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81e01cddf5bf7510ea7c7a24061021a1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "458a06818eb842d014520e5cf71c79e8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ed564c868ce3b387bc2521cd833ac24", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8c80da0b33390e56ec287629ae5815d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9a007eae1830803530c603ae38bbde4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b107b374ca0e7ac005b6448728a85cb9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc4cdd4a67d8326ad3dd50f0c8ea8d80", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "251657cb3848e25a1c0339ca9b8a48ab", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16e93f8e00bf052f2774be883fa10a43", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d2c3a8604849725e6a055cefdd4bb76", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f6faa6451873536536524c0ce4e6476", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2d7793c59062e33d833660b83b1ca9b", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_6 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44209e6552d7108940e65c3a86c3ffe5", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2e08e126d8e6d8c07506637f76ad643", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_200_7 = #5--> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b18cb761cf4cc8fb4f2988e16c988aae", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1f8a44ad72649c208b6a84da00810a7", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14c14012e77405f6eaacaa9165d4872f", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fced5e2c10e4f3cc62009ec2f1eda4ef", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0e68efb367aceea9291d37ea3c2bf17", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "405bba938130c4a38cb79e7d6a5bad10", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55d431ed76a3b56a0078b640e66943fb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "857375584e429c8f7f867ae2eb2160d7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2e72a0fa7200c4e8fb8f93c9e4a48c2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "274f19298b3a0f4cf238f996e2a6a0e5", + "notes": [], + "params": { + "message": "--> Wash 3" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99819380b56849f20ca9ffd55cb40170", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "138b85970199bad2220a321335d648d4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7fccdfab3dc3b48484ff7538438a6e9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "020abf52ec3bb9393ab4ba23e36d3ab2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7661df83ae2d5f14f749b6cf9754f9fe", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6368c78defe3d81a6c3cf86b6da93985", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16c40155d3e2c8fc45ebacb2a0dc3904", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e6668e35c7e35eb6d2f0b2ef138e39a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e86a5ca9945a68538218baf82859d16d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89b4aa04c88b6cf5ea9a2d04a06d79e6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d8c988313e4343690a90df22eb10148", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "664b568d2eb39ad6b05f74ae2c933a71", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8a8617db48f7efb4f685c8dfe0c56c1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f8382ad584aa80c4b98d99ef2e29b2e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a86a865bc8917935abe07d20cd319d14", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd2b9efdb0b89713dfdeb713969c526c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd92024c848ca6d9c141f7a2673f92ab", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c63f24659f132836f851c5e95d665c3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74c79967ee13b77f81dfaef3ea3390fd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f87ea1482232d98ebc1e281725dab8f5", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8ab2edae3b775e6a1957dd1054b9cc8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e71fa3564d3c32b4918f75d1688aaa39", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd7994244cd9b54052a039f2b0bb4d0e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 180.63, + "y": 290.49, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0297b57d96d958afdaf73b4412f7c5d0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ab22a63ba866a0ca182e9705a8c00a4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.6500000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 180.63, + "y": 285.99, + "z": 12.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a09f52ca07b780162939ffba55078029", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c77cdee566505a91d4e71e009932164", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b28ea47bd5f11907669e5bb8c1287499", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd92fd77d4c08eae16699eff80d1af32", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_7 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "018e0786be01ff5dc0bd4635b4e35730", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e472458fc6fa652e0373ffbcbc43cc9", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_200_8 = #6--> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e13369abdee4d12149dcc9f052e2e54", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f34a7c9e30e8cf7f20d92267be45420", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a43c4357cb681821d52e60a05c630baf", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b05cee1f3c90dfbd31f7b6748c8c2a7", + "notes": [], + "params": { + "message": "DISPENSING: STACK A4 now EMPTY" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4255d2d9ee9df9f37c536aa81b86e25", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1beabd49a9bc99fc18d7c1bc1f79325e", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2fc620e4e4530b531e7753d0bd05b43", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adaa8bb99256db0590f268cf37657428", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3500296d878784f9e10006d6959286f8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1390356a955f9b449eb2b7cb09d0526", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f5842d5ba5d50dc65f324886ef9e55d", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_8 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f52fc7f066e9982db8b7c8cb999c3d2", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9de35be98fb3d822f2f99b3359a42fe3", + "notes": [], + "params": { + "message": "MOVING: CleanupPlate_1 = D4 --> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1009f56209a3c894010f7b01187d8e2b", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a4233d875ab6ad825c4857634437c77", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_50_7 = #6--> D4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b49071de46454acc5d20e24632f732f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c4532e898cb79e93d7d1342e2572988", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b41750c275dd316e0eda25cdcd89e374", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_7 = D4 --> tiprack_A3_adapter" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc7fe903b1d1a475eecaefc9631ee089", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4aff88626b2ffcbf56b7d4f05633b7d9", + "notes": [], + "params": { + "message": "MOVING: sample_plate_2 = mag_block --> thermocycler" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac60fa3a4e1252f3d1b8df987725aec2", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c8f213730a0e29654ee4fe3a86372e3", + "notes": [], + "params": { + "message": "--> Adding EPM and Barcode" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "608ab071525b4e6b23509a337e35b5db", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbf62d64808f4a9a2b44e3019db0d2c2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e53dc514864ddcf3c94afc9978a7b5a5", + "notes": [], + "params": { + "message": "--> Adding Barcodes" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17866cc9ad2dd161348c627205132b69", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.3500000000000005 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 176.13, + "y": 285.99, + "z": 3.049999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a53580842b4fbaeb383f7dd0f95770f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c8e49dc9699d3aa47e3401fc362a134", + "notes": [], + "params": { + "message": "--> Adding EPM" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "583b154fd05792a1dd9bb395dd85852c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.63, + "y": 178.99, + "z": 12.049999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49040a764717856be35d188aa57a0bf9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d4afe8474672df9e992ce5f01411028", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 75.26 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bacf8d61f77e64296016ec198464738", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = Plate Lid Stack --> sample_plate_2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c8c5f2461962d3b0590b4bfd9217250", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bc2d8b166208356618208c679da7fc0", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49ac568a8c7f8ff7b717855c58434add", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ee79a565baa0675f70f8d2515341c1d", + "notes": [], + "params": { + "message": "MOVING: Plate Lid #1 = sample_plate_2 --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3ae40261a905e7e24bf534045f47dde", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec5bc8b9e413d60c296b4e5e97dc13e3", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c73d0af97d991396d382559440133202", + "notes": [], + "params": { + "message": "--> Cleanup 1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29468547c1cf31d7c8ad6f94e15cd3c9", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df62d6a5a9e290953d98df8561d13e49", + "notes": [], + "params": { + "message": "MOVING: CleanupPlate_1 = A4 --> mag_block" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c83e383a6c58a4ee911e120ca2b1e9a0", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "510f47945ee89e7fa883f318de3f2e7e", + "notes": [], + "params": { + "message": "--> TRANSFERRING AND ADDING AMPure (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ff9af4eca66ceda70343a524bb92b6d", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4dc588d491987a293aa916856a915251", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0290522b275f5c8a780f2c25da001b95", + "notes": [], + "params": { + "message": "--> ADDING AMPure (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de0fd53377ec8d360eecfd582fefe6ec", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.3500000000000005 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 3.049999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9b009b52c2baa3de6f8b169129a84d6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67de6c4c049332dfd68ba32277cde524", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d6a1d5740601852b32c69c73d01abd1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 3.3100000000000014 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e876d7fc56b57ca6c22b4ed1bf9a1e2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13ffb42627df61a0ecf4c760f83bf128", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 75.26 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1711710f8a731c37bd3b546b13188257", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_8 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdd7aa48cc58c5c02878237d0c6610ff", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8032b59e561db69d1d264f27ab7696dd", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_200_9 = #2--> B4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1023764244f0e7111a26f9a6bf9a307b", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "381e16f0b6555fee7e88b262b8f7ebf2", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36eefa5641ceb4ad136dc69538e0650f", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9cfd6c3c86dac319b9ff3c48bb6927f", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_9 = B4 --> tiprack_A3_adapter" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8e1085d80b2923543aa487960fbba62", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "444b9914de240322c6bfec6d14239034", + "notes": [], + "params": { + "message": "--> Removing Supernatant 2A" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8aa9e476109b89aaf0e1c36c204190f6", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3124ee8d95a68f1168d6ca604ddba5dc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbf717778ae42ad079f8a9cfd5b16a85", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c03c07e5e6b9a8e0692d95b6eb541aa", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6cff65cd06664e23f4254be0162e8824", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b11976c1ce694a8d3ea32c18050b272", + "notes": [], + "params": { + "message": "--> ETOH Wash 1A" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8bf627329b4171b69d7e857c722171f", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df1237196aecb7eba1b20fb0e9545d49", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79b84ca9d4a82bd5e3b8cc4e1ccf24a5", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c8f90a00c4d7a9607d7bbe8860d5456", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b761b9d875cb89588b948b089b4fabd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47733d42e80920882f4a9adb47818898", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4fbb7a94d789b2d0b44c46962e81c4a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79531d7f81249912038cb461e7dee7f4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7768484ce5a197d9334913f50b0ed354", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c2dde35f6157f69e6b2debe1f7d23f0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71fb9cb661fb1e112d683d612acda742", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27160f812f48c2f5523a645a1024c616", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14528f49906aaf3c70325455cd27777c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afd8768627d00059a9399c2effae9cfb", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c42a9a173a371c7a23cdb715aac620d2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "847a64c658862d7c9036c5fff7c49971", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47d4300b6bfa1da77afa2ea660a121f0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ffb0c84cb61d3fea84c4ce7ca5dbfa7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "092444f7dcfee3ac568c09f2433cc8c1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee44d06a2b5cb6e5dd7584c985d294f2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d3473fd5e769de45dcbd4e6ae63086a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "030282d16844d1494fb418ccd0a06b67", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f084c444c9afdc45d09694f85cc8ed18", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98d22e652e7dc99741a3c7ee1cf5d59c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d160e6760feb94e14c7dbcca8dc68eea", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c4d68527e0cab13d2aa6101b8fe5036", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c588e6de900dbe0e59e431353ebf48b", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5b6c1103232df1776481b41c4b7a4be", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b03a7f4a38b1448a9a684bbe75df8ff6", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_9 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf509c9595232ab8f859da9455ca6933", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae2d8b26acc590973c0cbed633c1fd1d", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_200_10 = #3--> B4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6efa0e1922e7f1e073f42da927b141be", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1050ae04af24b0b81056e14ce8a69091", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4ab29d22c3263db76c91c563b1240c5", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_10 = B4 --> tiprack_A3_adapter" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "232c93afbdf6f20b9370a2bbb414fd42", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4b282a4218edd5ecb8abdf0ebea3daa", + "notes": [], + "params": { + "message": "--> Removing Supernatant 2B" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbc24a2777f007279e962da76c8d564c", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76753657dd9d1eb0c247f25f6432aca2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b27b5fb327f6ec06055eba2543f56d8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8db585b512623f23a41dcbd4b88cd9e1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3899554b5ca80cd986600216ab835e02", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bce59060585a22954b1d1d4ba987f04", + "notes": [], + "params": { + "message": "--> ETOH Wash 1B" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21761075a35b2d6650ce721ee2094d28", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "764a15cae5e108b1f3d8a2610a04b55f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62e260736237d8f6862b397a9e00aba9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a60ee382942c8c4bba35d568713257da", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "160373b6e65a61a310602c198e0c7786", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54ba3ed87b2341fe98fa7f3aaf7e92ee", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b41f4c7fa7b4bf6e4b6481c8673ec42", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb63baa99ec2a9fa9ecf0dca8f619324", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4882f7de8531664f7a9bc49bad99e29d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f0d04117499c31bc6571972e9d2dbf1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40526869150a11b0038f20038b882388", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79a25b48aab60d6c4c7ba4794646d6d7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f82691f0b12020b8ae43540a53ddeab", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "286f89c890a1983e5e65f85ef7ea2b52", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf64b07fdb475046d264dcf90f04fe2c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c4b64b17f023eb6275490205bebcb51", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eceebfef421394407bcae09d8f5f0a48", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ef1995f0b44fc6ca21478f7e821bc6d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a43e27eb7ce795f0337dd5e07a1975c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de98b64c5ece9aac6e3c49b25ba97f34", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c96c7da36d024c2bde742d31b0a85c7c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "677206b5a33c167564f963226922301c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e182b4a87acca7c725b7da5c55d9972", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1e1ecad2b9b92bbdea928fd3d5f12a0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e79a3be89018512d6f0b4c054f3ddc26", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 5.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abb1333fdd388d22a77f082c1d5a28a6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5be537118071aad21c780db53e2510b", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b256164954cf325a1faf372a64feaff0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d5478f2f8660c78f91e203bb48685e8", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_10 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4c7c8a636dfa19f4880c0a699749f14", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52b1940b50aaa34cdb45d830f261652e", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_200_11 = #4--> B4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9804de7938897787347917f0c85d797c", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e6d86a4183a9eb6173a1d726fa52f35", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a4386870274194cac3e22df863c4edc", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_11 = B4 --> tiprack_A3_adapter" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "757de6167fde3ca8591ef7b49f8c2d81", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db8ee5c44ccfe314179ab3b0a8816ace", + "notes": [], + "params": { + "message": "--> Removing Supernatant 1C" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3daeab1b0a20cab948317616ed8a00d", + "notes": [], + "params": { + "configurationParams": { + "style": "ALL" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55d4684c65392c11c710a07e1e2e7fad", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 110.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6276613437a7b67156c4f819faec6cae", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f7c73c04b36dcc5a600a783d585de59", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 43.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1af7c4689c6652620a73b123c7e5b7d6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": false, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 74.99000000000001 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b6a255849fcf5f4add229568da0961e", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_11 = tiprack_A3_adapter --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43f699f9b084d37c4c1ecc767f5fad8a", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fda4186412eb147dece3c716a890c38b", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_X = SCP_Position --> B4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "289a4f2ee5194dee5c1eb56589184a63", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98f695795f3af3f663e8db3d5577e048", + "notes": [], + "params": { + "message": "MOVING: CleanupPlate_2 = C4 --> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "161247805259eef3a7a83c9117aaa615", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba2340a56c2c85863bf1529e1fd512bc", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_50_SCP_9 = #3--> C4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ea335e13c84a6639981a5fbb8f3dd21", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ea232c2882b1b1e2a86b5c8887104df", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8b86df1e2d57428812520fb72ded0a8", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_9 = C4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d56ff8f687e23324c8e161cca5d7b416", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a688977d624f7438dbacc46c863b4452", + "notes": [], + "params": { + "message": "--> Adding RSB" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f4a90be9aedc6aee4d7b8dfde3aed59", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0c7b14b49b828f7e6c11ec7ca11641f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ce0a6b0d291b4db8ca187d10d1b45c3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d951bba19e85e5d454b3d8f79943b88", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43e1f587bd521ffeab7151f50a2a405f", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4e98353d54a99fabd88598e4aad068c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be8475eedb3a6fab6b7a1c1e18fbcfa6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83e39b081e033986257bde288173dec7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "caa78469cf1250722a27293136f8b401", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f370d823f21287ca5e9f0cda6be4b0e", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d0ec2ffbb799548d0591321775acee1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bee913b78047f41c1450da76212aca61", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a08b87d63ccf04050bf3e91a2e3d6fb", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f43e451d4ec29f77d8c0cea7a43e38f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8f7e10033c6a2cf76372885f72ce967", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b54458fa5d8ecbb169becb63eaca403d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80dbe8fffcf7cc6c25926c1729161dca", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6731a533972c7f0406cabdc4ad656a2d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "546f0b04a203074b92a841057117fe36", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "588ecbee7e26c4e09b3c70e0a0831544", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df95d30d9d4b417dcc9c1d949ac30160", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3220546c439ae78e43ce4f48c63529bf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0103147fdec74585628a9f888d450d9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90f27a34897482d92dbe7de9eadd8868", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f6912a6940d87d760b2c78574fa0f77", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9305293e2ddfa51cf5b8bd96385416db", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8795b7de065996ccc6b33ddddace8324", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3180554e36db34f45554a17376730ae4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6746b9672643783f32b5c3e81568fec4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33d326b49e47e6a28902352196befc5e", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "418c0c5db3ce7e64076b5a7ca8c74325", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aabfafcbd8aae57f603489121fe7fb7a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52b617513c3504022a36eb61d33355aa", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2bcabd6599ec02ff697a35494d26d99", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87436a40bbb2d3a3be02892f34481019", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6242a372ecec45dbfab649a69f651ac", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a02a5401880eecc920ca9353950f0649", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f60f838fba872827be9d8cc8694259d5", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08e4fbc70e4128810a637d1e16566836", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fc3a6f1a7d9eac3712cd328b7aa2442", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87519be2ea5cc0ef39292a6a33edfb01", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28c75c62e83a5a00aa1643c2f5902c92", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4859b955b5c97e5bb66361c300215f52", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37076184f744323acfbcfdf111c37dba", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10832f28b5a48ec4af663c1add73a597", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ffcc68695bc591e9260962ada282122", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f0a7179c4ae12735e00dc1c4cb9f739", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8668828bc86e19b638a932e5a686e61", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4628ff7a3987114df82537cf3251059a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "355f511b095e40267d0eec465ea2aae9", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b9a18477f99c386251727c3e9538d11", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0617ef018637f23643342c5f29d1922", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a43b5d5441d36b6381943d06c817be0d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 39.13, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac18fc153c86669cf90924ebdd172cdb", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bdfceb0b287fe3bd0c2c7dee73d8c5f", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6519025e6194c1beb65bb09ffaf1e64", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3079fe17f3d324492c7b5771120f191c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8f80fdf7d31d94be83e03372ca95eed", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 43.63, + "y": 183.49, + "z": 12.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d85e5b7992f71421a0373362c110b646", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 40.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aebd2ba6b3ae0a3536d4e0b541bac165", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e7327037bcd0cafa9a2b6242cd26a6f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7276fcd8a4e87fcd2f8ff4a3fff137b7", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_9 = SCP_Position --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07728020145cd7802d5ecdb032455cc9", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "389a664ddeb6d5e420263b8b24d1fde9", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_50_SCP_10 = #4--> C4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24209c008da30535faddea3338caff7c", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1D4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb1db0226638e2884751b2c7f060db5b", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c6796c9b2cd392a971a3433b4ab52e6", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac32dd028237f61807718f07c23fe7c2", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_10 = C4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40b368042fb4d9645f507162a369b1ab", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5221dca29e1745df3ec5cd5c2b1c6a45", + "notes": [], + "params": { + "message": "MOVING: sample_plate_2 = thermocycler --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "575f7bf234861b734e7afd83afd9a4f2", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e10ea84b254348d3818433a91adf54b1", + "notes": [], + "params": { + "message": "UNSTACKING: sample_plate_3 = --> A2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96d5e28128ca3db17f9bfc95d4a6cbaf", + "notes": [], + "params": { + "message": "MOVING: sample_plate_3 = A2 --> thermocycler" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "606712ea3085ed8af964db2196105567", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79598481983211837ee301c71e8914af", + "notes": [], + "params": { + "message": "--> Pooling" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98eee4f78cf3e25a5280822630608e10", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_SCP_10 = SCP_Position --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a96d68b2269b23c307869a351e7b8ca7", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a5703f7f3dddd299d174aecafec67e0", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_50_SCP_10 = #5--> C4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33417917258b71119a88bcd35801c30f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d35fa9f1499868a732793de111543810", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ceae6484bcc4dade757e01dcce385ef", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_X = C4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29d44baa542bb81d047914b669087f70", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "039557834f2d80453c5f1e6f7d3d09ee", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fa982da15aef9bc41365e714aab813d", + "notes": [], + "params": { + "message": "--> HYB" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a168b8f6b8599374ce17d85e01133e23", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16c489cff884aaab9029187299f0131c", + "notes": [], + "params": { + "message": "--> add NHB2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7c4d57e00734d9d5beeeb731e0ff2d0", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fedef2c882ffd34a635437dadb1b8433", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca51c1ce96136e1cb7724062cf2418c3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.05 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A18" + }, + "result": { + "position": { + "x": 88.63, + "y": 183.49, + "z": 10.35 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "219ee0273126d6eb155476b07a88820a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8232ad3e157050edfa98458e40d4bc61", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cae27ea6c157cd78779e488a2da119ac", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a99ee32e18357c957e3c86f1323e6568", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6a76fbc2f1b738a26540e0f106c4af4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1dc0ceb2d07e7883dda2fb54035c671a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.05 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A18" + }, + "result": { + "position": { + "x": 88.63, + "y": 183.49, + "z": 10.35 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e4e1332eddf2bc83e39790312005966", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41ba0ac0633541cd25511bf222cf96ff", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2db54aec7a563dc60828bee1972d67ba", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80256cbb027e8a39210c4c1a44c0f0d2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fce913989fc97f6bb889499389a66c57", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1e5b42b3acff42e72f1987b248a9aaf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.05 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A18" + }, + "result": { + "position": { + "x": 88.63, + "y": 183.49, + "z": 10.35 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9139542bc7d8debfa11bcb43aec1a394", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d227d04a6ef5a49f34ac7663b64e9919", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1ef6f5ba9d9188f93e87d48f90e68cc", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fee8a6af65496039cce0955a1e62a5e3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f6453826e4c4d9d8e7a0dd0d62a1892", + "notes": [], + "params": { + "message": "--> Adding Panel" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c02cd1c94c0eb48fd1a3e350f0d7b550", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a1e45942f3cd777f5f5b32bbec16cb6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a732115d2b428397c687658152963b4c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.05 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A19" + }, + "result": { + "position": { + "x": 93.13, + "y": 183.49, + "z": 10.35 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb591615376e362951b7d7a3a4ba7213", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d76f240a4f1bb828ebf4490041164016", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52c83d11fa6a0f64aad878b785407546", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4e486d8c7398021744f17ff52d76a79", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c710b319fc784965dfa2edfb22df911", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35186dff57d3be9563fbeff03e290bf9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.05 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A19" + }, + "result": { + "position": { + "x": 93.13, + "y": 183.49, + "z": 10.35 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e19dac6a3af07567aea148b1d8d3bb7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61bd61d4ffd3bbe095fb6f8cd2bfc3af", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36e65458dcc5b0534e58f0aacc05bfe1", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5059c0880620825537e92560292c522", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab9f956a33c9822446e6ff092ac4c85a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "497159e5a8007d532e2f3076785e8fc8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.05 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A19" + }, + "result": { + "position": { + "x": 93.13, + "y": 183.49, + "z": 10.35 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee90048a158541569aa7e6ecff6be201", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ded969c05996bd7209b52eb637cc27cc", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef6f6b568580b8ae7a0c902680187305", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e40c5c77549b604a14a7bd4f4efa22b9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a858b7b8478a742f60d249f61b519b85", + "notes": [], + "params": { + "message": "--> Adding EHB2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a917e17a8db9cf5b23d6afe6c6de99b", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cf3b5c929c3cf257624a819e62bd47a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d41cd3330fd3786fcaaea94602e3a7f1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.05 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A21" + }, + "result": { + "position": { + "x": 102.13, + "y": 183.49, + "z": 10.35 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5a02917837406c3cea713ef4f673fec", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f815daa695fd93fb7f12776edb14b77", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "121a06ac58cfe87d8bbe087330cc82c9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.05 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A21" + }, + "result": { + "position": { + "x": 102.13, + "y": 183.49, + "z": 10.35 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7797b911db78965672994574a0ba8386", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ab001de05326318836e82ef10474662", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a21c5dfa7a7212cde382de81434bdcca", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.05 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A21" + }, + "result": { + "position": { + "x": 102.13, + "y": 183.49, + "z": 10.35 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd547d097c098061f333e37750718e9c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e97cfb96dd9c4d8e9343d7cd3b383bb0", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06675983ca15b4fcb6a26aed0ef3f781", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b63cae71e1e300b0607a61caea6a4ee", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5051cbbfbc4d93391dfd99f692e89f34", + "notes": [], + "params": { + "message": "Hybridize on Deck" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54c1a7a1ad21e6dad5bf87fdead12715", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ade14487f289f19250bc108bb94b51b", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4dda6865552b7215cf1ac4211b0d9e1a", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cc5bca86f4050f91c31bed818182655", + "notes": [], + "params": { + "message": "--> Capture" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8820cce95766a1e6e0c6f1d1c912f63", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "374a7e9649ea4b1166d5ec63e6facdf8", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_X = SCP_Position --> C4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad5e6efaef8556154938482c1c57bc9c", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7889236aa1a6e5be4c51f59f4dd780d1", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_X = B4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bbd1142ac69f2bcf2186fab81760eb5", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb74fe80f90b644305e6f12f422402e7", + "notes": [], + "params": { + "message": "MOVING: CleanupPlate_1 = mag_block --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63dd7476bc90b7242221a761d4c81be8", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff774c84092c3372a27e9e7b99eced92", + "notes": [], + "params": { + "message": "MOVING: CleanupPlate_2 = A4 --> mag_block" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb6f0e649c32232579ad52c6659abcaa", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2737888b9db1390940b339f46a98659b", + "notes": [], + "params": { + "message": "--> Transfer Hybridization" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "141df58ffc5edbc3ad6d934f014d4afd", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a02d51586a055d0d1d3ecbdc28d90f42", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfe220e9522d82e075cf86cb59ecc465", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.65 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 1.6100000000000005 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c70648c43d4f3b034880b3685a823276", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 101.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.65 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 1.6100000000000005 + }, + "volume": 101.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b2b8238f7ead1bedc05364c113833bc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 101.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 101.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4779cdfd32d85dc6bd465e3632c0f59d", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f78b03f94a44f63c7289afc4d2ee92f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8535eef14be7b4ee4d5ca1098ae66ea", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48e34b55a83a6e3531b89ff5d05d36f1", + "notes": [], + "params": { + "message": "--> ADDING SMB" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aed07b2e170d1e5b7f506245bc96fcfb", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02f9509dec02cb96fc4170306c138488", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52675b6134c0538eeeaa0c2e21e606e6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -8.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A14" + }, + "result": { + "position": { + "x": 70.63, + "y": 183.49, + "z": 11.049999999999999 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "575e79848f67bf4610fc37b4c8a0f143", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -8.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A14" + }, + "result": { + "position": { + "x": 70.63, + "y": 183.49, + "z": 11.049999999999999 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24d1089f6b208f4681e454121f4d6b9b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 125.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -8.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A14" + }, + "result": { + "position": { + "x": 70.63, + "y": 183.49, + "z": 11.049999999999999 + }, + "volume": 125.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d88a283da8a0fb344c5b750a62e050e8", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 125.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 69.34 + }, + "volume": 125.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78bc61aa2257567e0b61bc6d35eb5933", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 125.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -8.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A14" + }, + "result": { + "position": { + "x": 70.63, + "y": 183.49, + "z": 11.049999999999999 + }, + "volume": 125.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eed14123722d41a46196ce5175492ccf", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 125.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 125.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb4eefbd06289b6df547f85ac6662e18", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 43.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f2b48b1a42cea1ffb3da7f5135fca9d", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 43.34 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40d49380994ef70198fd4aacd89521c8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d72e4e166a2306ee8d57c00eb290b1a1", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4d31f917185361ac8f63eeaf4ef23d2", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7850ff37aebfab4378d87dca012af87", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 43.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e967cd1d2372e96e3185bb5b7e8ad94a", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 43.34 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f49c6cf8195c3957230149e3b77d621d", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 43.34 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad8ace7b3d6b0f38bfb69c260dca7da1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3f5765122f6ab97768a9261e47afb27", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ae40fd71a92df86228922b0b0f8e83e", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c258cb772545b5799e61c261b749290", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 43.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9625cd9de2c5ffd99f6f46da81283723", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 43.34 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51dc8714b9b0b27687e89b61d4eec060", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 69.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebcc7602b0a491fd325aaa357ec4ba18", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e68e66e0c5270fd255b139e6498b1f3c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3067bcfff057d00090c874372b496d50", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e03a2934937313c4cb0b521fb7d365b", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b517c536555b1b6d2be5fc85aeca7bd", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fcd9afd82b984491ae89393d5753980", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21a911d050e2caebffc9941984e75a45", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6bed44600c58fe0078339388d927a50", + "notes": [], + "params": { + "message": "--> WASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49bd916553eeafec9940cf2805503e30", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc26dc931bb6713653ed2a12b38449f8", + "notes": [], + "params": { + "message": "--> Remove SUPERNATANT" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e9bd82d31a6f97d376fc9469b1281ba", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b93cecf5ebde9d523cb7c42c12ab573", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a35e7c2499645f0a835cc76d685a801", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 42.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8575f990030a27ea35a017129a1c67a7", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 42.34 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a324062edbcd1a6bf0734249c944dc1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa89190467fbea23b800389a033f3bd4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7452c52abd1133f4b39da8eb0944543c", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13b57ca1829c3c2e53b3e61d7b3a3b4e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc6b5ef003203b95f319d33a4b187c41", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cbe68a7493e7a579710bc6dcd8252b3", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9be347f82629921266110555a37fb42", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0c4c1523ace20b3e2aaf3862d4f84a5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38d34c68a430ed6342b073b379356f6d", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e967bb696fa90950ea250b6019c7fe1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d17bd2cf82f04168d611ae91f1f91102", + "notes": [], + "params": { + "message": "--> Adding EEW" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4f7e712e2ba0c98a9d750401aff775b", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0ef8f33af4c8a42e7edee05ce002394", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02e65a732c9e3f5b8d9570ed3ec55d2b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 10.049999999999999 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "323e6dd982318636eaab97f97057debc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.34 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "369dc54ab4c420f920e4d7d3104465df", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24cbd9e769704c1587158b776b4ecf29", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "162ba53336b4b6ba986ef08e42455690", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c901e6dcaac49f2aea9e23c63d48c2f", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb30e88484fa5fb4da6947c0d5033f1d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a5eaf1d79032f92108bce2ed23d2831", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60102c7dfb668724f567fa3adc1f6c7e", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9d547e3b71da9e7ad442d8fa5b76d95", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fde5ee8b61fb5e4abce4ab07903ff3d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9244fe85bad80ca3c0bc75db1c449574", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "929a188194fc25a2f5ee0105f00a9894", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 76.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cb27873bc62ce034844ad3f3415a5f0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6feef03144631358fd7e3ee355c0efd6", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c5db0219e4cc167d7952f5fd869cea0", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c059b1ba28a72bc98eb7b8c5ecd08ad4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b61c6b1270a476bbe013f2710ead24e2", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6cb9e59d6841de19bab0367b23f80d6", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e65004ec69d3dd682ee5c3e1c3397404", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_X = SCP_Position --> TRASH" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78d952c0fafdbb905e9c2d75ce01dd7c", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5346535a274a6a263077a9a3ac88d8be", + "notes": [], + "params": { + "message": "DISPENSING: tiprack_200_XX = #5--> B4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "flexStacker/retrieve", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c238ab901e5ef7aa3f8fe33784b39f4", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "labwareId": "UUID", + "lidId": "UUID", + "lidLabwareURI": "opentrons/opentrons_flex_tiprack_lid/1", + "lidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originalLidLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "originalPrimaryLocationSequence": [ + { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + ], + "primaryLabwareURI": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "primaryLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70b4bbd933fcda8760313db6827cce44", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID", + "lidId": "UUID" + }, + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20adf75c90f8c8b2460c426e4afabc86", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_XX = B4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8758f09c0e147733dd7ef2db5c7f1de1", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a704b5e3e1e4dee8604adddae70ff0e", + "notes": [], + "params": { + "message": "--> Adding EEW" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67b0ce2e538fe55870c2617a91e88bff", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e147eb060b4280178cb3b0b9b4120fae", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9253eb5ff78dfa869a6ccc3fb2180599", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.63, + "y": 178.99, + "z": 10.049999999999999 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d925f42f49ef159a6b3ca939cb2cb36f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.34 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2a1e521265dd2a16ed4afbfa63fc694", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de0a68c88ed6989f0c89dd4c8d18b9ac", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3815511b6e3bcb18676f12adc1e204c6", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "567a534bf9ff35b2cb9a6bbbca01382e", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9ccf90b2e027dc52abcc11601426497", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf6acc6abab850db5aedf478be6d6dd3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c2463cd70d6deda7384dfc46119ce64", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7c34c4dc806ec95f91835c7f6c39b72", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c03e5faf52ef0f43354808128087e70d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a72f3df7e9ecc9e21286e3ebf42393e6", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dee1eadf64e70b2505c11bf3c82da074", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 76.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c651b510e83967b3924191b23a934a95", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5671fa8f4cf4cf9694b1878e1c27c2d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecfb4395551e694526156ee9da221572", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9431128befef585002c11100d30531ed", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "776476c0301329bf966bfc31666345bf", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d8920f6f36b240ed8d0283eaeff1460", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5ff9c90302cea486523012c567ae5d0", + "notes": [], + "params": { + "message": "--> Adding EEW" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f47042cc2bf876a95cd6ee0982e22965", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8ffb18687742f37dd2a4cc151740ae5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d73c90931fc62ca7e211299bf02d5c8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 16.63, + "y": 183.49, + "z": 10.049999999999999 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97c925a50536faef69afaa980f457880", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.34 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f29435978c05dcf21f9dce0eddf68b60", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "288af55bc459c48a1872a9728d06083d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47715282c2fa0115141224fc6c366544", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dae1b0a9779a3b1a408e3cede2d43ef", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c117800c2c4af0ec0d2689c9824d201", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2939e902163cf6c8325eda1a18334e28", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0109e437b665a7ae014a3a062476d91d", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40222c05092999522138132e38dfdff0", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74ea57a8b5921e27c666de2d2f142bdd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4ec3a340ba36267f9750ccfcdea1ad3", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51f056466e333fc7ac16d15a6e76e8c5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 76.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "033442b267bdad16008244dfe9e8489f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d4593e9483c2aa727e29069801ea015", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "febc7d2ec554a2cfbfd4a723620557e5", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca968bcb9affb835c41db70b58f033d5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1db17c82775299d0d239729ebf8d0be6", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ed7f0b0e1ffe8946d3b3b49f6d1ce1b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8776ef16adf61d6cc6eefbf8fb31a3e4", + "notes": [], + "params": { + "message": "--> Adding EEW" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6decb7411d4048c61b611994c4e4848", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "086c4b14073cc4c7e67bb08a4f61ee7b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "653be72be2e95fdfdb04dca92f961dc9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 16.63, + "y": 178.99, + "z": 10.049999999999999 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "816b4382e3bfa1b6194cb1a2a1bb6f54", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -38.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.34 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6abd05e88064c7c4d56f00988f542505", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6e6bf80b975dc69f42fa915c80b9f4e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e07416f5d60d9b490917b4735fc255a0", + "notes": [], + "params": { + "message": "--> Transfer Hybridization" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84b2ae821dd17bc1963358e691404e81", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "faab1d12ff6c1c7593e671d79d19ba24", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fa203f5f77d8d2104a9eb61d19b56dc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.59 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "275376711cf6f4d537113f2cbfd36ece", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.59 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b116a9b97b7c63290050444eccc8791b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e49f6554e9fe4ea687953c6171ff02d", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51a52bdcb25fe48e65fa33b47ff025f7", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb2099e0a4caada3c95867a42e64a39c", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bdb07d57f1e6e176d060801a8e21761", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a08ba787192cb0826defbc20a49811c0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6f60f89c6338406da38453267cedfed", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01b2ed9f2b7a86e9caaa278c5b81e223", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cab4ae3dd69df7a944cf84a82882f00c", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f73671d12b956a325137ca99a7394b5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3158bc67e989ed310e28dcfc8b9d774", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "777c1629d4c986ae5a248821ca1f16ce", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 76.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20aaa0a72c104f7434dd9fc6058c86e0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51da3e09890c4bc39b415ea119b5ec36", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "385b0b627859349fcfd2a1ca3597fb93", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad5dd598327fef096daf972b886aed19", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c2fefb436933dbe80323a00f4c34b61", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1657ff2fab302f2824b6e77d9ee19db0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90f20116101040f2228ea5f7b46dd2a8", + "notes": [], + "params": { + "message": "--> Removing Residual" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5e262ae4b581c90fadcd552d0ee94ea", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46ec533de9e5531daa98af8515b9c4ce", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c90154f1880c3686b7d846164852ac04", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.64 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "873593d6116d4bb4c6fc7f4fc9143b0b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.64 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75f83808dffa831b420c4e9a5e574068", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95b4ace04e575e8a4cf016578a9b8851", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02545ebac92d500d5a0a1014d0a07ec5", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efb87be0dcd64f6a71b75df7c566ac3e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d714903f00578ccaf147b5351c304c4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76b34e15378c120e345d7f40100514f1", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca9009d234ee1b7c3670ad3163981577", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fecd84b1644402c70408eacce0d2abb", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5106ca48ab86231588961ea52f2be4a2", + "notes": [], + "params": { + "message": "--> ELUTE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "758c105f07287faecc0d49ebe57da256", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b58647996ade91d7066e91c1f0846d8b", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_XX = SCP_Position --> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9d68c3db46f2260cc82a5a4836eff72", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ecaacaea0eb7f6d94ee7ce1b265d964", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_X = C4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "642f588132e5d2822e958943c50939a9", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1C4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28c40b4411386fbac78d569c5d8ff74c", + "notes": [], + "params": { + "message": "--> Adding Elute" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98345399bb18662a25ca98389301b712", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0fdfadd88601b1484d2bf5da070ac52", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02903c46c0e14180eae4120b7738311d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.05 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A22" + }, + "result": { + "position": { + "x": 106.63, + "y": 183.49, + "z": 10.35 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae06dd6295d9903757d96036a69d1275", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.64 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ff785e9c3aece79bd44e5510fa1fc5b", + "notes": [], + "params": { + "message": "--> Transfer Elution" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5286e0df27ea5b3085c33ce1d5057ac8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.64 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "717583b40cb9a6df112daac317543072", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.64 + }, + "volume": 22.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68131dba01d661f1472c4af32dddac83", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 22.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 22.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e631ef77c4c28144d346b9dba96d909", + "notes": [], + "params": { + "message": "--> Adding ET2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d012826801a88693dd5956f5183a5a3e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 4.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -9.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A20" + }, + "result": { + "position": { + "x": 97.63, + "y": 183.49, + "z": 10.049999999999999 + }, + "volume": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb58ea6db80641a6889b8a56ff3608f9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 4.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.3100000000000016 + }, + "volume": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "318bf3b6ea108c5dee0608a31e2ce948", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.3100000000000016 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f5122bf3b4037a3dff8949b1ec40675", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.3100000000000016 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02a1c6c18967228fea33690f53e71f97", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.3100000000000016 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0dce7b614d358159fe512ec13b2a9ea8", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0918ff096865ca78f173ac1e3914d42", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f59bc33dd04df7bfa88fd4250752af99", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62045c9bca10b10fb698b9d8f9af3d90", + "notes": [], + "params": { + "message": "--> AMPLIFICATION" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e455dce504bde4414938b47374b55d21", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b38333830d01ef4608c2d13885f5400", + "notes": [], + "params": { + "message": "--> Adding PPC" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a768ab7def4ae433aa54409c1f656a6d", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d437f920a45db293ca677272bdb05068", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2391aa5c5e74ec3870508f4060b210d8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -8.850000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A23" + }, + "result": { + "position": { + "x": 111.13, + "y": 183.49, + "z": 10.549999999999999 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e7fd26b59e46c2fe886dfc07e8a1256", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.8100000000000016 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f391c05b0e80d72533faf64d9e3e4134", + "notes": [], + "params": { + "message": "--> Adding EPM" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca6a930bc8da3c96f42dd8c82b824a9e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -8.850000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A24" + }, + "result": { + "position": { + "x": 115.63, + "y": 183.49, + "z": 10.549999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d649627280d9ad31bbbb5d8375f7c98a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.8100000000000016 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f9c7132d7b47c55c31a340002fe6e66", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.8100000000000016 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e9b5f99d3b11925b93c4d783c73ac46", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.8100000000000016 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd7085d8da4c9739e6842b07477dd8c9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.8100000000000016 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78667db1c16d872c47027ccbf5792c32", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "446925c288e5a313f71e3fb16e304a83", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b64b2b2508432806f221944100b6800c", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f9114d346cbef1ff0b40b19b28dc680", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8970b08c547af8de57574c6109bc7235", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "524f50f3fbf3bc1be83e2f11a572fa67", + "notes": [], + "params": { + "message": "--> Cleanup 2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "945d03737f7e3f9d4b0bcbe9ddad14ce", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8d2010a29947bb91ca2882764dd75b0", + "notes": [], + "params": { + "message": "--> Transfer Elution" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6431b9db1db3fbccd478e9438ccbda36", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A1", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9eae1a5db2d443736b1069c932adc2d0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f95ce9e7ee9cdc2b68bf28ea56f716d6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.8100000000000016 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4383745605f09f0638e628716160a240", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.8100000000000016 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33869aff4b77e66fc8155e1bea97a4e6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b405dd86835ba28c65f225d45200d297", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6b3e3757c1364f70f6b95b8fa63589d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b22231ad3a09b499a9406d8d997ebbb", + "notes": [], + "params": { + "message": "--> ADDING AMPure (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18569a5df3d73ca1a4da4de81a0a8616", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8caabbc231c49bc653b1d902e42fce61", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b02dbde87c42aa1b0a269d88f08fe19d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -8.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 2.049999999999998 + }, + "volume": 40.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "078fec89fc80aa8f8c383d3fe05381a1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -8.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 2.049999999999998 + }, + "volume": 40.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3b7146077853be19de4c20d8688a7b9", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -8.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 176.13, + "y": 290.49, + "z": 2.049999999999998 + }, + "volume": 40.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d1d4ddd2b5e04e01b08c9fefd1e1fc9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.5, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 40.5 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18bd55eaf0c17d5128900be9b66b74eb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 43.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4220e325d8b7d902e9f4ac59857b0b25", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 43.34 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2a6131f6bfd55d609092d69d8ebae27", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f7956a361d2770f7f411d2e4b93dcb7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec37893ecb40c229ba698cb3b9425763", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7845050408f6b0b90c4b74ee1cde5a4e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 43.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6781fab38692446b3f991384a823f363", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 43.34 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf3931d2f78a84e81ca1b87fd2d4adce", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 43.34 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3dcb57b2b970ea910be115403398f37e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c46c6e590ccbbbcb312c119206eecaa8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4119d433d99d408bd16eba73c3f92c00", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46093df3a2650b963a5b2f69456124aa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 43.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e1d3df31e7219104124cc7e79359335", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -33.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 43.34 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9155fd22318ad604018bbffc9cb44c45", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d2bd78b11866030876274ac7187b6cc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5786d0d984789ccebb22241374839c37", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e967941b96bd30835f124e64bad8817", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca59d1457a1ad7c7cdb72d205466e24c", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b640ca134a7e1c2bf4655bb788ac856", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b8b87eece61a8e351e1a4ad52572d08", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_X = SCP_Position --> B4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a894680a7e13ad019f411bd457f246b6", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65a79c2f8a0d1a03337aa050d5e329af", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_XX = B4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c8f8b5a24c997e9843d000ce2acfc63", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77e852e25c2d4474947c61c35ef61aab", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d88e1ce3107be2abd1d525853ac58de7", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "869188911152eae1884c9cd53275f8b6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c991d9fcb940faf17a12123098a0c43", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70df9fb5ddcecacb506e7fe571225680", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c0e20df80a2286c11c54658fe4db209", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e86b9cebe959e1167b7fe28431f9d9aa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce0b37da0bdb7e8c6080eebe8fdb5f6e", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8531d1670c2bf7c885acfb69d86d17ba", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "240365881183e2149a9c1f27e75631a8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d99e40c9b00cb0b4405c296519f4e323", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc65128c3dc2542aba1d0488402bd06b", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4225e4ed8a87a820d7c16b8df0cdd48", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8937e449b4a4ebd47f1bc80c1d662b5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9a94be1a2626e5009ee19cf6723816b", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2391f6a333e27568d827eb4af923b773", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee1efbe84f57002d8036fc09704138cb", + "notes": [], + "params": { + "message": "--> ETOH Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "980064900486bc2883886cddc333c9ac", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bdcd564d2bc32603a8d68edab788024", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c16036a83216f93e2783b8b13e07dc6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9bc8eb6a509c286aae8d0c4734f683c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b3f155639d3a64bd4baa1945a6fb391", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53ab33949c62bb21fc0e59000b5c4ccb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9eca5997e8af057cfe4b5b43a6fe0c48", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf128aa421a0cc02e74c8d1461e7b746", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 74.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57e1b773911a6dd9e59a4802ef41a673", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d8a197ba01ff22fc459a90579b40971", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d11468ffc41b5b06bcb5d23d13b1e0af", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12b4df8193d3601c0a24c5fbb1396cf6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41e18edfd7384390794b0959f78aea21", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7042efe19167ff70108e59c4f5193928", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2c4fe586f9c24fc4ce3c79dac91d7dc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41163772e68f110a0dbce352851d6c13", + "notes": [], + "params": { + "message": "--> Remove ETOH Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d10e06bfa4f73c486906d68e08e2cc9d", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f11ac7cef7c262a3cb2199b2a1bb9e9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58dbf6c8dcae03bb4cb9f54da37461f4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a19a03d4466dd51799c7df252bf3457", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5743507893acf88e48a1557fae4d6fea", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "983b4327b341306cbb2d9909b3d5e5cb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9c1b0cedaefc61d66a9b2a93cdbcc93", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c05a6c3f2012065f939e06f4e5c3816", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f68db3514abfc41f92c967d3181293a4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1051f1bb856d3ae591825d194f6af4ea", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81ec689157ab8dd8137447fa0334bd2e", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92ef4430937dbd6d2a0b5b1bb67a47a5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48363b846c9d6f10993bbd1138ef29b7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41199ad684bbf67e3d986bc44b51dfa3", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8380ae31801d1977e3069b6488c3a2d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48e3697a6d46c83388f02912ff3fbe6c", + "notes": [], + "params": { + "message": "--> ETOH Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3be6a1f4fe87f38e8bddb966fd2ec5bd", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a991df2175f5d6bf119a9ceb452598f0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c197cf7110317be407338369c7910a31", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af0693ab7ee636eb1b05a18459e2e60e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fab798dbe28f7cfe142a38bc99aa552f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d76862a390bc0a0eee659aced0b21be", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d48d1128a314d74c7086bb1b92a5e522", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f92676c36d0720e6bc8414d0c99da9c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 74.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa243732afc12ff56c22eb8fe6887bec", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d606d493c9d40b4f770060c8391bf70a", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae6c83b50982c8eeee33b956d73fe2c6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fa175d1a979b5cb3682005cbbc97d77", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f516016381b943d4c3d1677b1d25abd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d78e27007f074e21f92f3436dddad201", + "notes": [], + "params": { + "message": "--> Remove ETOH Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a290586716e9352718c19d38676ccf7f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a79e7dd55247691aad2a827e89df0a8f", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d016b69e6a7d2bc89a19075eda2d931", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d34dbf565858a04b393be4d6f81b943", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef7b790631755c833a742e38a4240e4f", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "657289116711f671a21f621f32afea59", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74b6e223e6cfb24220241ff8e44742e0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4dc9d7a30dc1e870f59725afb53af84d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34eecc902162e8123c2979ea6cf7bdde", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55b322ada8ce2d15846c32c34737750a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -7.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 34.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a53a1bd96642ecfcad20d25eb2e20a1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6e5609c741b4c174df212455b2c6a86", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d47692abb4463f0e8ec26bad08fbb682", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d82c5237108125bdcb24d4f1ac139d82", + "notes": [], + "params": { + "message": "MOVING: tiprack_200_XX = SCP_Position --> A4" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb1275efea6baa5868fc35bf79ab3b5e", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1A4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "617fca793cd1b704e94ec78324beba3b", + "notes": [], + "params": { + "message": "MOVING: tiprack_50_X = C4 --> SCP_Position" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10aa5356874b9cfaacf285a789f7ab78", + "notes": [], + "params": { + "dropOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "pickUpOffset": { + "x": 2.0, + "y": 2.0, + "z": 2.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "flexStackerModuleV1B4", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "flexStackerModuleV1WithMagneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1550c9ee15923a9e578b3b668de9771", + "notes": [], + "params": { + "message": "--> Adding RSB" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "configureNozzleLayout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21f92b35ca36405688e5f005890927be", + "notes": [], + "params": { + "configurationParams": { + "primaryNozzle": "A12", + "style": "COLUMN" + }, + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35247b381b52390d6badb34ff1bd33db", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.4, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cae2b209399a1792a54d36b55e7fcebf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -8.350000000000001 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 34.63, + "y": 183.49, + "z": 11.049999999999999 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "245c5012174402390f0a0215ffc413b9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.039999999999992, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 188.34, + "y": 74.15, + "z": 53.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19f5d0ea128521f7f0dd49ebb6b8a1ef", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 1.039999999999992, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 188.34, + "y": 74.15, + "z": 53.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02e493bc527aef6a1b26fb693361041d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c448a11f519d6426f76953c8a39fbda", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "429866e65edbcf56df73592e2f35cb9d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 75.19000000000001, + "z": 53.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf639e0b7136bbeea5d8695143e37493", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 75.19000000000001, + "z": 53.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1d6d9bde8f350dd6daf4d2e0d62c527", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f6da34cee8ee20d628e98bdffe28e2a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed2553789153d41ba428f4d768a71a96", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.039999999999992, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 186.26000000000002, + "y": 74.15, + "z": 53.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52a21f07425877dcd290d413ae965d2f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": -1.039999999999992, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 186.26000000000002, + "y": 74.15, + "z": 53.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7a19c363830f00c10d8a91f344b9900", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9e6f33d95fc4a78a09b199e1bd0115d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae7c77c2b7f573259ade13aec1bbed65", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 73.11, + "z": 53.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8af1f25441c628aaa62d0f24face50f4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 73.11, + "z": 53.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e3007922b53b6b0e8b3288e20bb094f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5bb30c80c75ca07e1ead37fa2ded07c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a58b1fbb7faa50e68fd63434b6cdcd7c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7eb3395edbda462c59bb6bb057fca6d", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 57.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5382a3b847192dc2f14edc1965f8ded9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f877cab90ac547ea157957e803b3013", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27fd0de2ccab1c1109ccf80f3c2228db", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6647b0d198a51a59d7ca1e51f534dd92", + "notes": [], + "params": { + "message": "--> Transferring Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35fb775a57918bbb7d070748a75b3dfd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "524a3a83a98e442e184919aed9919f6b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4a5b238efe6c18427837daa1371f82d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9192af0629b19d005e73998eea8b538", + "notes": [], + "params": { + "addressableAreaName": "96ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 391.945, + "y": 10.585, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1798738a4eafd06c315dba5e481a73d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 25 + ], + "protocolType": "python" + }, + "createdAt": "TIMESTAMP", + "errors": [], + "files": [], + "labware": [ + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/4", + "displayName": "Sample Plate 1", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "custom_beta/stackable_opentrons_96_wellplate_200ul_pcr_full_skirt/1", + "displayName": "Sample Plate 2", + "id": "UUID", + "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "moduleId": "UUID" + } + }, + { + "definitionUri": "custom_beta/stackable_opentrons_96_wellplate_200ul_pcr_full_skirt/1", + "displayName": "Sample Plate 3", + "id": "UUID", + "loadName": "stackable_opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_adapter/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_adapter", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/biorad_384_wellplate_50ul/4", + "displayName": "Reagent Plate 2", + "id": "UUID", + "loadName": "biorad_384_wellplate_50ul", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/protocol_engine_lid_stack_object/1", + "id": "UUID", + "loadName": "protocol_engine_lid_stack_object", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "custom_beta/custom_opentrons_tough_pcr_auto_sealing_lid/2", + "id": "UUID", + "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", + "location": { + "labwareId": "UUID" + } + }, + { + "definitionUri": "custom_beta/custom_opentrons_tough_pcr_auto_sealing_lid/2", + "id": "UUID", + "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", + "location": { + "labwareId": "UUID" + } + }, + { + "definitionUri": "custom_beta/custom_opentrons_tough_pcr_auto_sealing_lid/2", + "id": "UUID", + "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", + "location": { + "labwareId": "UUID" + } + }, + { + "definitionUri": "custom_beta/custom_opentrons_tough_pcr_auto_sealing_lid/2", + "id": "UUID", + "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", + "location": "offDeck" + }, + { + "definitionUri": "custom_beta/custom_opentrons_tough_pcr_auto_sealing_lid/2", + "id": "UUID", + "loadName": "custom_opentrons_tough_pcr_auto_sealing_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": { + "labwareId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "lid_id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": { + "labwareId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "lid_id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": { + "labwareId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "lid_id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "kind": "inStackerHopper", + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/biorad_384_wellplate_50ul/4", + "displayName": "Reagent Plate 1", + "id": "UUID", + "loadName": "biorad_384_wellplate_50ul", + "location": { + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/4", + "displayName": "ETOH Reservoir", + "id": "UUID", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_tiprack_lid/1", + "id": "UUID", + "loadName": "opentrons_flex_tiprack_lid", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/4", + "displayName": "Liquid Waste Reservoir", + "id": "UUID", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "D1" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/4", + "displayName": "Cleanup Plate 1", + "id": "UUID", + "loadName": "nest_96_wellplate_2ml_deep", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/4", + "displayName": "Cleanup Plate 2", + "id": "UUID", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "moduleId": "UUID" + } + } + ], + "liquidClasses": [], + "liquids": [], + "metadata": { + "author": "Opentrons ", + "protocolName": "Illumina RNA Enrichment 96x Part 1-3", + "source": "Protocol Library" + }, + "modules": [ + { + "id": "UUID", + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "A3" + }, + "model": "flexStackerModuleV1", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "B3" + }, + "model": "flexStackerModuleV1", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "C3" + }, + "model": "flexStackerModuleV1", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "C1" + }, + "model": "temperatureModuleV2", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "D3" + }, + "model": "flexStackerModuleV1", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "D2" + }, + "model": "magneticBlockV1" + } + ], + "pipettes": [ + { + "id": "UUID", + "mount": "left", + "pipetteName": "p1000_96" + } + ], + "result": "ok", + "robotType": "OT-3 Standard", + "runTimeParameters": [ + { + "default": false, + "description": "Whether to perform a dry run or not.", + "displayName": "Dry Run", + "type": "bool", + "value": false, + "variableName": "DRYRUN" + }, + { + "default": 4.0, + "description": "How many PCR Cycles to for amplification.", + "displayName": "PCR Cycles", + "max": 12.0, + "min": 1.0, + "type": "int", + "value": 4.0, + "variableName": "PCRCYCLES" + }, + { + "choices": [ + { + "displayName": "All Steps", + "value": "All Steps" + }, + { + "displayName": "cDNA and Library Prep", + "value": "cDNA and Library Prep" + }, + { + "displayName": "Just cDNA", + "value": "Just cDNA" + }, + { + "displayName": "Just Library Prep", + "value": "Just Library Prep" + }, + { + "displayName": "Pooling and Hybridization", + "value": "Pooling and Hybridization" + }, + { + "displayName": "Just Pooling", + "value": "Just Pooling" + }, + { + "displayName": "Just Hybridization", + "value": "Just Hybridization" + }, + { + "displayName": "Just Capture", + "value": "Just Capture" + } + ], + "default": "All Steps", + "description": "Protocol Steps", + "displayName": "Protocol Steps", + "type": "str", + "value": "All Steps", + "variableName": "PROTOCOL_STEPS" + }, + { + "default": true, + "description": "Use temperature module in protocol", + "displayName": "Temperature Module", + "type": "bool", + "value": true, + "variableName": "temperature_module" + } + ] } diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6c599fcf11][Flex_S_v2_18_PL_Illumina-DNA-Prep-96x].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6c599fcf11][Flex_S_v2_18_PL_Illumina-DNA-Prep-96x].json index 0b9d36937ed..b50d85608bd 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6c599fcf11][Flex_S_v2_18_PL_Illumina-DNA-Prep-96x].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6c599fcf11][Flex_S_v2_18_PL_Illumina-DNA-Prep-96x].json @@ -1,3 +1,141848 @@ { - "error": "Analysis timed out after 120 seconds" + "commandAnnotations": [], + "commands": [ + { + "commandType": "home", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50c7ae73a4e3f7129874f39dfb514803", + "notes": [], + "params": {}, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8511b05ba5565bf0e6dcccd800e2ee23", + "notes": [], + "params": { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "model": "thermocyclerModuleV2", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9563ff54d4bfe61c469a7da06e79f42", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "A2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07af6536632377008ed92723cc8c5072", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "A3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8eec906a29ce38c4567cc9831a24cd13", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8c3a9e08a3edebc1bf4357cf91f0858", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e4cba10c2c36d91ca0add460e16f29a", + "notes": [], + "params": { + "location": { + "slotName": "C1" + }, + "model": "temperatureModuleV2" + }, + "result": { + "model": "temperatureModuleV2", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "613c9d35964aadf8f79e06bda11db284", + "notes": [], + "params": { + "loadName": "opentrons_96_well_aluminum_block", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.16 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_well_aluminum_block", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 74.24, + "z": 3.38 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 74.24, + "z": 3.38 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 74.24, + "z": 3.38 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 74.24, + "z": 3.38 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 74.24, + "z": 3.38 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 74.24, + "z": 3.38 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 74.24, + "z": 3.38 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 74.24, + "z": 3.38 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 74.24, + "z": 3.38 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 74.24, + "z": 3.38 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 74.24, + "z": 3.38 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 74.24, + "z": 3.38 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 65.24, + "z": 3.38 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 65.24, + "z": 3.38 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 65.24, + "z": 3.38 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 65.24, + "z": 3.38 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 65.24, + "z": 3.38 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 65.24, + "z": 3.38 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 65.24, + "z": 3.38 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 65.24, + "z": 3.38 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 65.24, + "z": 3.38 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 65.24, + "z": 3.38 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 65.24, + "z": 3.38 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 65.24, + "z": 3.38 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 56.24, + "z": 3.38 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 56.24, + "z": 3.38 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 56.24, + "z": 3.38 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 56.24, + "z": 3.38 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 56.24, + "z": 3.38 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 56.24, + "z": 3.38 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 56.24, + "z": 3.38 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 56.24, + "z": 3.38 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 56.24, + "z": 3.38 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 56.24, + "z": 3.38 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 56.24, + "z": 3.38 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 56.24, + "z": 3.38 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 47.24, + "z": 3.38 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 47.24, + "z": 3.38 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 47.24, + "z": 3.38 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 47.24, + "z": 3.38 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 47.24, + "z": 3.38 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 47.24, + "z": 3.38 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 47.24, + "z": 3.38 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 47.24, + "z": 3.38 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 47.24, + "z": 3.38 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 47.24, + "z": 3.38 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 47.24, + "z": 3.38 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 47.24, + "z": 3.38 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 38.24, + "z": 3.38 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 38.24, + "z": 3.38 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 38.24, + "z": 3.38 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 38.24, + "z": 3.38 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 38.24, + "z": 3.38 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 38.24, + "z": 3.38 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 38.24, + "z": 3.38 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 38.24, + "z": 3.38 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 38.24, + "z": 3.38 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 38.24, + "z": 3.38 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 38.24, + "z": 3.38 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 38.24, + "z": 3.38 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 29.24, + "z": 3.38 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 29.24, + "z": 3.38 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 29.24, + "z": 3.38 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 29.24, + "z": 3.38 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 29.24, + "z": 3.38 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 29.24, + "z": 3.38 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 29.24, + "z": 3.38 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 29.24, + "z": 3.38 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 29.24, + "z": 3.38 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 29.24, + "z": 3.38 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 29.24, + "z": 3.38 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 29.24, + "z": 3.38 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 20.24, + "z": 3.38 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 20.24, + "z": 3.38 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 20.24, + "z": 3.38 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 20.24, + "z": 3.38 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 20.24, + "z": 3.38 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 20.24, + "z": 3.38 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 20.24, + "z": 3.38 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 20.24, + "z": 3.38 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 20.24, + "z": 3.38 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 20.24, + "z": 3.38 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 20.24, + "z": 3.38 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 20.24, + "z": 3.38 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 11.24, + "z": 3.38 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 11.24, + "z": 3.38 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 11.24, + "z": 3.38 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 11.24, + "z": 3.38 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 11.24, + "z": 3.38 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 11.24, + "z": 3.38 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 11.24, + "z": 3.38 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 11.24, + "z": 3.38 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 11.24, + "z": 3.38 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 11.24, + "z": 3.38 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 11.24, + "z": 3.38 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 11.24, + "z": 3.38 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "temperatureModuleV2C1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de7c62a4b7e4ac8ed37a08894d0e1044", + "notes": [], + "params": { + "displayName": "Reagent Plate", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "labwareId": "UUID" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "temperatureModuleV2C1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e093cb1fd5884dada7ba5ac1b02aedcd", + "notes": [], + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "evotips_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 102 + }, + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + }, + "opentrons_96_deep_well_temp_mod_adapter": { + "x": 0, + "y": 0, + "z": 16.1 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "931ce5a456d9c2f69da65754cb58d053", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aebf549a818cad67ee9a329547696d2", + "notes": [], + "params": { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "model": "heaterShakerModuleV1", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b9478a749b422a21e1bf958d9cbf6fd", + "notes": [], + "params": { + "displayName": "Sample Plate 1", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a05e330eaaaa67c8c16bc22e1de06d2", + "notes": [], + "params": { + "location": { + "slotName": "D2" + }, + "model": "magneticBlockV1" + }, + "result": { + "model": "magneticBlockV1", + "moduleId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d32780a270e92aa1e044621690566ccf", + "notes": [], + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "evotips_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 102 + }, + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + }, + "opentrons_96_deep_well_temp_mod_adapter": { + "x": 0, + "y": 0, + "z": 16.1 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04c39706fba3125a302b46efbdaa3aff", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "addressableAreaName": "B4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4696f66d1cde1470d7f62c944c556bf4", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "addressableAreaName": "C4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97d3c4be99fe566631455b7067ac6775", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "addressableAreaName": "D4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterCovered", + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8c9b64f570c403ea1c3a2dc153329c6", + "notes": [], + "params": { + "liquidPresenceDetection": false, + "mount": "left", + "pipetteName": "p1000_multi_flex", + "tipOverlapNotAfterVersion": "v0" + }, + "result": { + "pipetteId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fe8cfe9a919dba6495c6f300455d6b0", + "notes": [], + "params": { + "liquidPresenceDetection": false, + "mount": "right", + "pipetteName": "p50_multi_flex", + "tipOverlapNotAfterVersion": "v0" + }, + "result": { + "pipetteId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63124a620bf56afa0b14ee2269cdd576", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "466f761ed618df3050889c42a5d8aed2", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": true + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "378eb2ae394a5f6f225011ea0b6f50a4", + "notes": [], + "params": { + "message": "SETTING THERMO and TEMP BLOCK Temperature" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "502731193807925293117019de01a37a", + "notes": [], + "params": { + "celsius": 4.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8afa46f24c58c18a204dcda6ed1ece12", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3fb9e5305f0f5031f9e385d6f787f65", + "notes": [], + "params": { + "celsius": 100.0, + "moduleId": "UUID" + }, + "result": { + "targetLidTemperature": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1afd5a2bfb292cd3b6da1d119cbf604f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfd549b7e8cab87eca2db1ca9669e1ca", + "notes": [], + "params": { + "celsius": 4.0, + "moduleId": "UUID" + }, + "result": { + "targetTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9208bb9865aa117d7443d3b2380af75e", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63a44ac27b8f2fa076489f918e8a6dab", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab1135ab26b90649fb0a504bce933da2", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d87547fd7211cc060b1608fc3ce628c", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f32d8265e14ec0ea8bafe1dc44fe1373", + "notes": [], + "params": { + "message": "--> Tagment" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7f36e5be661a4160319697f23b71349", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bde01bfc4fe919784e58e14abc36e53f", + "notes": [], + "params": { + "message": "--> ADDING TAGMIX" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cf6945bb873b2ff85f2448e4ab50703", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36c208929e13d8a6be97c9bf5718017f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f24c2b7630be14e31bf3a03082e175a3", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "696044f1abe181f80c940584d7a1c593", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c17febb84780019437dba248ffbd5e3f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "517709317dfd87f11fae7a5449545354", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "618d69ee125ba767aaabc038cdf99e96", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc96913104419168c9684c4defa87533", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3d95db81c74c09b4cdb325ba3e72e95", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd40172c7902238476989a9ea35b624f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b90eedc57445a5626128f246608598e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8800532952bbe3bac4fea21cff79a9bf", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bbfb2ff1ef4f6abd930d10f649a1a91", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3888bfc5c987e1deab10b970c088055", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65bcb33f172237c005710768a7d0fa5d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d3cd44b140bf96147a2494da9a26b2c", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae5c3bd794e2e1e02d7275c2d361b87c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "154bc50da08ef7792577716719bbc3c8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2dbc27bfbc6db401ade921292aff95e1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a3dbdfd1ab4cdfb03b10917d6547703", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7d58bddea629df1d810cccf64217d36", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86996a243ff0fb97580e1c972f9162ca", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6b4265d7318315af37602c73fc0301b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87554faf482a7c56520c21ff111d3493", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "594f82a2c7a126b81512542c842f086e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c19178decb213c7a69b7e76da9357963", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33ab4d3259d77fc529a73db319971401", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66f852f5d9206ef714f9668b5f497707", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "642df6c2fe8b5dda9ddad7a877db3b64", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01eb54faaf2e94284193e5856c82c68e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6965cc7ef694eb273e7cbf17bc3239da", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8b1c808fc1591c71940eaa4b01b5dec", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84d9f23579850376ec528ca09aa18edc", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "665bb95ec76e4262ae1a7ac35277b716", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af6c8b9c42050954518c727a03466eab", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3fd6e850021b60b9c5eb28b898bc1d9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5af44c94c89cbe82bbbe8d0dd5b40f6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4c63e08959592071f3375d9d581c28e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b6a7678ddfd608f5785eb24f1b5dc99", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb68a4e5ca6743fb296bd5c4f8f96c1c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a73cbc798abb3b17211b724ea34dcf96", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6fa357b1ddbb1d90f5a5d716784c341", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a03a384279e2bc5e0c30f4ee890c54a7", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a55265349b25001d5040cf3859d947a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d7febdb6f748bcb855b6c5cd1a611a0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "753f95d29f9d5591abc556d33e11c3ab", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a9e55ea1d749fc81951d623ff3886b4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ac7fd5d85a6701aad4061560dd5a9ae", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1555e1c421f2f79e16e144c86479779", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e61a5e590331e04b632f4e088ccd2bf", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56fc91eff6308c924be6c53e88e8c033", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4f8406808a1754a93bd28cc7f007e78", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a07f62668c0f4ae6d32c6211b2f2bd2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2234fa9ce3cf0215d456fd11135a3c1f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fec18c97a49c03d5accc6caca2767a77", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9a4aeaed225e933226efebc8fd0b6ac", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36ccd96dba95ad1a8477d4b5c6e321b4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9680e4eb304109b04ccdf873e0cfe56e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f71caa0e3d9393c0d316e41e099ffd7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fa4bb73a42200b571ad4628d941a7f8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77b33f4f1c391b8a2f74fa82a599252c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4008277f69f6629e06a12bfccb8dfb25", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cca1671a87ca2e7fffd66ea9d750a7c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a105ade44b9c11c8c1b5cd736854677", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "484e428e46f31398cce03bb2a6dc357d", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91e21dffa9e66d35264fcac2849fe52e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3a8bae80712500c671a8e4fa2fbff75", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0e15f66582ad41c14520d6850b74ba6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e06fae82cec7223be534097eaab42eb4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3716bbf38b758ff5593b4d4fb3a34621", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2fb6618f877976ed42a0a51bd91a17d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28e9f67893f91abd7bbc33ec9e7a40ac", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a6e3bd07a4c36d14cae37a125dac1d6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7de0421a62bb13c7ac5328a21cf9a17", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "775feacc6d00e0a2e35022c506aafe0a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7b87706a707bcc72718133d3fe8c188", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1cfc2f8bc92088e09c16bdb93b8882e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcc8b4c99cb048409b982f17ea8dcb1f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb2dffa7c31f5e2701f7f6a9140406c7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "783ee866dc36073d412e81d3452e2974", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21dfe55a5d3ef4feb11056a067fd0d7a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c5b259d588ef29a7244d125cfc69135", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4f5c6d82f60cc2d51b29a097045b924", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3fda776b3136ebd701d8df3a13634cf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0909938dc60472baaaa3a70a4613328", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78efecddca6fa8a1a982f77f9e458471", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8aaa2536fad715c8d4b5a1dd17ad7d1", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98e4b3fb8f97eee8a957bc0f6fc15b73", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40b99d1fffd5bdf0c17f64803f3707aa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe7f1a94a2f7f589b7694afc757323ec", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10ef36dfeeaf46cf4eb3e51bc40ded0b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "572d95f53a690b81a989ec58391b0032", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89873cb84722d013f822620f4c039642", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94ce9bacc7f83d1436d60fcdbd2bd54a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2db743cb2e711ee2be1d4fc9b051c846", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e1ea549ca62479001c70d5c629ffddc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c3feb1cb20a37f78e8d86bfcee65b3b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16a578238edc1b8d39cb376e74df2247", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8cc3c1911027faea0ae07e500e54060", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47f1f1f27c02d9476326d63fb7e4fdd9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c94b5d8ba1c3b15f92667dd328cc3ec", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce9972223a093186f2eeee759dbf2e7c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d54578279eeeed0bd5d90cd332b0053c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7117479e6023f2ab9be725394a1b2a34", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc9762eea6233277f9f1abba32ee1f18", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1a66353ff0e395924629859d664e803", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2072fe33e10d4cecd3e038bd534b758d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2686a85d4b20f133dcb05381ff15ffd6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e632e08ec68e0d9e4b5fdf079c977550", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "412487122dd61244414c6f9ec37994e8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dddf09127d7dfd5cbcaaa40ada430740", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6731bd946fa592b11e20d1e8c5c7857b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a8dfb6acc9c05691e65af8b22a31ecf", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7245dff4efae6ff957b2e4c9e3be9091", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b7721e8d5ed4a8bd6618364740f219c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "214a33a00be9814a4a99ce2c196db38a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82d8520a07ab007395cec16112983787", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fdff4e25be7cde5990c3e4220f350ac", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fec444a914c1b6c7cf843d09ec314168", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47c14872ac8cb71db332e10b90b1c83e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "050607161675112b5e9f66ba062adb7c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72652813df852f1c9271f6d2f3285726", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a43a9945027eb085f5959ccfe1a829eb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fb3e646b7e76a926a7e23455653bd38", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b0b650505240651f4dfeb6a46b64170", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a430250f1b285f212a6f841a56aecf3b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76de50130df359f7a27615b0570c8edd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93761df36e9f5e8eb1bffa97ca3f144c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e842e70705009b1f7d505196f85129e4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1388cff46b910f14d70ac26312c458e4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53051bd108647a9620cb87034d49df1b", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fbd95c30fe41aa7bd0be5b976d3766a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88646a8306a34ed5d7ca5eb37374aa31", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77845360990259efe00a6499aed67a06", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d54b930fa318ad9246d00f046ecc0ff", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe14b7be957c8e998044f6978492666e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f270464ce7f3230f4ecf74c57a27abb8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bdb1c1ddb073b555fd0bc076ec4081e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93e988feb4ba0fc5887a51e147c932b2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "063e5d6c7d69ddd31c178b1d0aa70fd2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b432b4cc6065f3701095f5bd5c6caf6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34841fd8de77ce32977818da416302c4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "327c0ee1fbca24c8cf558e859e40affe", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9eb3023e709a194fa716d4a32ac7149f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d713bc944d393734880ccac734adcec", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "466ad7ea013e4809edbc47943941f9fb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b61ef89459a6b3ec3b3ddd0be018ada8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfe225c3103e8bf3c470bdd3ceae0ab7", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ac6a759b30c4a7ba254b8eb06240e54", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0040f70f98c61ca9fd9a6210d1c5e84", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5219e220f5e9b57319ce1ce59e21d193", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52516b37f902e749f5f89e14bd553f74", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e56130e25e1cfd5a24515f1c4a2303da", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f8f4f960903ba58b3dc36491f1baa69", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "169408b71dc138ce87680b9c7ff5dbed", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c87ceeac1db0dbfd9dcc9fd231832420", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fa7f7a8b45886542d914e9426d856da", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2188cf4a2465be182781ad3285e008b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b914b29948dd97ebb2f94932b369359", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f3b9e623000af5131b79446e6c87dd2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e36d41911dcf8b30409d6ceee1cf4a5", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b9e448f84d245a185bf8314f2f3a80d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e42d1acf58f640c1df2fbde252cada5b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0a92891ab6959f75d8b9f9cb208ca09", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05e67fb1b6c11667a995d645de5c8634", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b9f32f23d7d329d61bd3717e7189319", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8743578e8e94ea726ef4eac250926ecc", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58c8904d3c5b849ceba3f2b8a9471440", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6f148297ccc7bccb7b49803f98e60c2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bd268e88a70d97337cf1f6b62b16ccd", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f687d4f088f99995b5cef2638ce817e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7383ca8580ded4d2a1d4f151b4265ef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2246a38f4498847e3692fa91e0fe94d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89789a530bb856cf3fcb96cd371f667c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6602aadacfd2ec55b7b4493193734138", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ec2f028ea147890b552615abc5d1a9d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "298e9d029fa78664690970795de98da7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27dae9448a985b52fe88031b721e0157", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84e9f1bd4bc1fa633b485c544971ddc6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28aafabd220d08667f4df3e4afc33fc7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a964879aca404c8be4e206e36a212904", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16550d889167d7065a5802006ab9ee61", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7677d7fd2592925a07a37fc9567bfed8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2119e05f7cbace790089716b564e8978", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55d72a50c19fd211f030d935cca89333", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcb869645d666966771a111cc6d02b7d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b775b0e4bcd8cabdfee7c95b95f83a82", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "728408ee5e9d9dc0cb57c5293c44215d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5cb410abd4aa0e15cb4708b83bb456b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33899118afb6f0be9f666a413a9af914", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd90cdee19a18362c9876b4f958be31f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69af79a3940d83fa5802a0f46bc08f53", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3414ead7a515f7a9bf7092c5f1c870f8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35ed504e3fba90b3c93b7b8633cc1862", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f125a01f8aa5449892a36ea1e294c40", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4e56d4ac5221f9e0b8990aa6bb2332a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7191199d91e99a9cc00a3c4f008bd72b", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82ee91f35c3dfdd5ebb3e3856ce3175a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1d3f196d76a04f41d45c908c24dd76e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9c11a38429c427f73f415d7c180c1a0", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "381434295204d8bedace538672a354bb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "098df2d70e4e501f3a6deb85e3854f00", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc060f73d5ba5144e86a05c10455097d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b1121328950676c3e73c70abea56dcc", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21d5019a6d5acbee0195b3f02fcf5a71", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67ddfa8efea088151616cadeb557c71c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8a2b5522abf9ef337a6b8fb5c7fa09d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66bf2916f39f26c18fd3e7f962713d97", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ef16f847a29b9667ec54b6e0067dcce", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfc432462cbf87f656ddf41f1de99d45", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93f7ab7a3883f3a31ed39a22bf7416f9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b42e488dae8d3363e85bb2c882badec9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1353b6b5fe0ebe3914997a713ac9f4b9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cec2f6efcee84ceff38efb3d23964302", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b6986ef24a14c9b950484a659a77ec1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87357600baab55e2b43f258ca7b4e48d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b27bdd6e102988617f88bb700ddefb96", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ce9cb5b281db13672cfb55c36e5be59", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6c24bfee6190ac4d51ab650a35de40d", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc680538f1c477da35c0381d4c3910be", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96a50e27408a7b33d583e50ad85eb6a0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed61f5d8ff5ae36cccef7be39dbb248d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a0b2efc833e6c378e084ed482d79f3a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "551a73be5d3c88786dd277af117a16c6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5858fa51c00a44955d184df7f114bd2b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad552d322d1f049219f92d7bbd618da9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b843c3532e4e15cb3418234960bf5c3e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e98c35a022605aff0f245bfc2497d65", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "896333959298aec1e6746c93c224a5a6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4467a0d7880fceba8cd3940bc3a84d8b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4502c0e7f875923ea43607116685f57e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab3820aad34f703cb53b2fadffbe1c7d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7944aa4e18253b4ffbc793b0e61012c7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acb2390e35f8e9ab0cad628b93411f5f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16cce724634d2a716d3f3f6af0d544fb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a771e98f89c84e57b0e044d9fb17ed56", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6aaad9a671ea865005669dd51baf769", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "106b4929aca6b6f2281323d9cfc09c8c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7397d0896004b9a11298f91fc5ed56cd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c73580b973fb91d5007bd545705b745a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ffba313a25dbf814377dbccd5c55007", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2042e4936caf67d85940a8eb6def4b6", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16df0720ff388a356ca1f36b8802b228", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "524546810dd907c2994b48476caae2d8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcb80da20730df82a85abf57c89ab74d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d287e487becf09690b5f8f79b9c3f9a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcd0f885c79cd07f1007741770e9e148", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d184b4b8b94e9b9583cc72247185dfd5", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d47665dccfb885aa0baf667a61d618c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "665321856057c1287880ef2f7f5c3312", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.45 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 16.8 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a231e6c26bbf0bb920f93e81670a063", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ec00219ae1d3d7d22ab5d833bae3b3c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 21.000000000000004 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45a73e1ce112fda3dfa2a958574340de", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b15a9ace0cbd1cac48b901e0f6dc345", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba03edc87e01500dcfee032c3bbed313", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "757a506a982e4bd452d813f6111fc005", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.199999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 20.750000000000004 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8378906860955fd6206edca2b0b5f8f2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e35fca1e346176f802bcf59a6f0c802", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "104d3f7fc42aff88155662ac127e5d61", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 31.950000000000003 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec11fe6cabf9c69e1949e32af508fe3d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ff776784c9e03f1f875033d39f39380", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 34.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "556d5744cb5d4e4effd903b7d2552cf2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 39.949999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d88fa84a56e635996023d3f133ffe17", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c23ef2acf859838cfbdb66ea1945859f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a7faa4440fa49631f3d833cc8f318f3", + "notes": [], + "params": { + "moduleId": "UUID", + "rpm": 1600.0 + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "903fcb0d8fc9b91bfa4d014d986d9e87", + "notes": [], + "params": { + "seconds": 300.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89b03dc8bdc55a3c6ca39a0ef5cc3142", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90ce0e8bd33320d2e61dd63e616fd1c5", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f140a51d12531e4cd92d682197ce5fc", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b602a7fea3c281cec5b0caf05d73f8d6", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05e614891189d4110bda4983cd518952", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22bd5bf7c791b787f9a69aa1f106f51a", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "moduleId": "UUID", + "profile": [ + { + "celsius": 55.0, + "holdSeconds": 900.0 + } + ] + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62b25791afad844348479cb2575c834f", + "notes": [], + "params": { + "celsius": 10.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc391cff46cbbbec7d64d0c928f6ea94", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ce3918dfcc6beff22b8657c6f8df332", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3aaf72eb50a44664e4ef6f87c2fcedc5", + "notes": [], + "params": { + "message": "--> Adding TAGSTOP" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "561ba2595fe15a35cf2c2eefe3bf73ec", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33793af724c8e0396ab6250074057cd7", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0677d41949925540122d62abaf3013bd", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa2cd27e21ffd85f6a3ba91459b0f584", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "390719f74d33bde4c7b2ff5a5a87b761", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90480c3d3e1a5b805ed7637e8d8ef930", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d09ad5e81584f2ccf281540c58d850e1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4fc23b16781faee22e5e251a0b4feb1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97e1f2d2c31551ba63163856be4a37a1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2d76966c0fe4c56ce20b0d2e93a7a6a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7144e1828b7f0c763fd776797e0da6b3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41edbd735857f8fcbd0d71e03d46db8f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e64b36c7e0f7e1ec041ecd92a7c0ff91", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6905a33492561b7a64d9758708879557", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "054bcf93d89a2ff0054adb23b3e668c7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65addbeaf18b1402354c0cb396254c53", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1a62a0b83aa3f556a2d989100b47aa4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d175e02cbe118150ca8a4b02389ddb6d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa4cf68bca352c3f28e895631dfa7c61", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e66df44c83a08dbff06c4108dae7bee", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4635f25c33ddd10df2fe8d3fa22b1b7a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "239a9d0414b41c43dc3baab7462b2b24", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c00293836c21ea64673058dd6ad9789a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edc88c0787fd329cff88f3c7b959cfcd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73f3b8ad2267d7e411d109e18c82771f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64e9662c8a32fcfac8bc9106b987d106", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12eb912c49552b3ae562e28ba8f342ad", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79828a5fbb4d778dac499462cc6a5ae3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a825fa2bbf97ff868b142bb6c93d66b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91e24346c1e34ca5a11194ec629c8956", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e51a4646d4a03fee7e4326701a4c88db", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26c60671c8b2fabb732fdbd58fedd9a0", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a62dfc96f5f9d3c12ba88ad5c5917b6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44c9bb58ee61ad121ed4799ed0470454", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5db384926051b540960796eddcbc09cc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68395acee7dffc89c1ce65c657146c3f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d6c1cbdb778aa5ccedc0a57845e7ec8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33286e74b2cf504ce5083ac234335174", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee29c55714bede46bbefd07e3bcbc756", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "149b2581c2a4073b3404c84ce449a402", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d4c85ab00d980bd675f5d73f228065f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e709daef95559598e73361c86db249f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49bebc2d6a6509dc4f3c6a5ba09bd516", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db656dcb3d79f9ee495734be0a02eb96", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09d16a04c720d46f284fa380ac8378f6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f024b9c35ac1f06b63858028da66c9c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac9721ba229269746859e759c5ff8cce", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e44756d7adc45ad800f5b7eee2df9d5e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "343abaa745a872cd4914963e1323d944", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6946cc9eaa7d5071e767a9f39190d0f1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a18c3024949b013fae4d02b2b23b15a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9af40864fde3ff1761625a9e2ff6218b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c8f0b479d873c183e68070eae880935", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9698e3e8042d80295770de30603c8dfa", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aae172ce3bcd344b5eb4f773eec821ee", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2d4cadd1b2bea8adb5695587155373a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad777cacf4d851e5154ebdf56ab0b136", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b9496fbc850fc29de266f33e22af13a", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac2c39ef1ff020774cdd4dccf762a80f", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3ebdabac02f9940120290447628ba48", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e76987af82816ca187d68f1c7093d569", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9aef3c6ce81dd143425db5580e349707", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f5e4c74c1bed4bd8a01f7313ad1a5b4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "407311afd82a73f22aca0ba5d829a95b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b887ec83e7b6085a5de2ea8f5e47263", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c997c6be85e04f2e62274cb5c147fb51", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8a6db209318eb0ff7be33407c3baa88", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8c8a15731e1ec9df66867af0d4ea197", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b052efc23a3fc511c0dee1aedfc79aae", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd9911c608f03e75f0a417d4c698141f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97a5456524ad5e1c817be8125f055acf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51dbf9f57b03546ce1eb7338a9edde69", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8980777dfe500869e4f29723caaf2774", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94ae5788210f851680a84a63ae58926b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b42a53cac9cb4eb798d51ecd4bc58aac", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9daaa81015b4df0a1728e659f74d6c48", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31fc36dc3b0793ef9c273527f9757332", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa5af326806ae583c03d22f1584bddfa", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6171921959c03d17600dae371fd4e32f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0801118d7e7b967237fc400d233c472d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cee805e1cfc46e109dd5c6dcc585181a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b891538c9361ba74d023195d5c88f2cc", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9f563c634bed07366837ed589e680d4", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a06be40d36f13fe98180e27c820f2c70", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35d32e5bb1377911cd76ce2807044533", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83e765a1c0753cee4970df436d0bd24a", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63e6ba211d46ef6d8985a14d36279366", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e582adc3e04dc0a3cc018a39671a682", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2f1ba78175555c45af24c3c6eb4ca10", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ea9796880e2afb10f245b2ded3b8d07", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ceea4e60456bd6e40e46c1c96c852a4d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e947a9f621243ed400f9d1994beaf59a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c14e0758fac5f6adc59c21dcdf3449b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b770183daeca2280185f1a9c1112c98f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4179cd50cc234f866103aaa73b1b694f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "122c15affaabdd824e8879acbfccc8b3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00d4b6fdb4e636ff5254760f37c46d46", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "effe1e63d6f79a37b5bf38ec72f8d373", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "078fb959d75d549778ac3800e7326e98", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81a15c13d2d690480f02cab518b36fc9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85d16a77e8cdbe65253637f736b5f0d7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f462732f80731d9e8dabd7d4b692ee24", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c43d4323f18b11bb70ae4cea4d95b96e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "313610670b740317569892d1465186de", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "353eafeae4c61eb14628076cc49b1126", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "111351cdde907e17ce171177027467b0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d226f6da9ecddfb088e9cab4c04ccd0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61d1d94523db5baf9515e9c082434436", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e96c688d0819366b8d69abc6bbb0f945", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23c3efc2f157d7a6f028c3db371de576", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7b4fc6ee7822494093f76b28e467afa", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b266d0cab4c7426e1683bce148413ee", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "102ef11c4e2df4064319ab0cd9ae2b6d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c84e3064c65736da1b58633b72bd9dec", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77fb954bf0b684b130c36ecc09802b17", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46df4c5e77c839c706d4f6319ae58abe", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92fb7e3462d562ab72a2e5a986e055a0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b2200bf6f307a73b2395319b473ca7d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9605b999b9284847c6a9d4eb638579e4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f771efeb8f2f9ef1016dd65c33619b3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a272d22ff252293d99ff8e09ccea8e65", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b7c842f1f297b4603fa02244883a98b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e56909ba66e989664ff5041db92b5726", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d7b57bb64afb5924f5025d0e9ff2c11", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e19fe1a46bea57eedd4ebf12b84df86d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c14c878617b40143b0b3286ce7c4cf7a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6fe1603c8a99559781e9ac399955144", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b064b4a14e43848a5c82771199a6cadc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d65c86bb9eb3f162c5c15ee3d9f53d48", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "520f5f8edd1ec04d8666ed5083bdfdbf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5780dbdf799651af2eaf03a2fb3da857", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "827cabc7df216812384436fa484219d4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc6a09a39611e0b28a2880453086f6f4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60c313fd6a42379089aea0ce8ac2763f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb9b896c7fcffe6d5a729b7aba05c50e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24d5571f933e26db102a3b06cba4627f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "511c594ed1dcf00e447e6b2c0ea4d277", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eaad716f7188c73687c437cd1480e18e", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab701485e02404aa861c2ca277c44fa9", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2596ef3362cdc3171b88a69335a9b76c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f358fa0315c373f78a5095283e1dac23", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "527937b235048e82d7868374f5357ee0", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9f787837fcc96a32b72567806cbfc0c", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f3f5574c26e2fe1a4451dee8a33d6d3", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63806b19e32f74a88f3552d8dfe190ea", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa8d2a236ac98ff0ef67902cd7e92d1c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95bd7c1d4c345b7dda12dcd21b0059de", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8473ef1e13492177f4f89dce2bb339f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b81956693ea092efec0d6437e98c308", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c868be8b6f5a4940f33513c7114bbb0a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8406d30ef93fb7056e9fbfce6f32a861", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94f32933e6da3c0e2c7f8a13606c5b6b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0ffdac460678fe56f889432b6f6cf81", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c17ef5cb5cb4eb78909895b277bd889", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06a2bdb3842e934175aa78d9ec9cbc27", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04e009d608a654c31d0e16644256eb18", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7929ea647bcfff388e31ad4a47af5bd2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38b2652c01c44f3267be65151796e33d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "070793cfd5782036f39f2e99b4fc3407", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef2defb9ab4057c0846f18f25a4fddcf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c58a6aa0846d8275a1e0ae19004f0bce", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b9262e6690a3464b14dad75115bc374", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "556544354142bd5b6340565df21f51ab", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "112ef6b76b533f2ba72c12ef5912a860", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64144d09123525f1399de1efa8e88fba", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8382256ef4388c316034420fda6afef4", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "248ea4524e1d487f011ef17db100d782", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e62b6f4f87576f48b824da40293878b4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b2e3443b70b1798a27e9e6c307b2157", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ee4bc68b72c4d6ed6e22588bcfc0525", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5badf57ac8501af1fde3384df2c421b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b8ee7aebc57eebf4f0eb8e4f8079a8b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d75b315c81ae6c74ee6a678430d929cd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "370b1f679effbd9e94827b2a1e5aa693", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36dc3d8b2276d906c323d2555fa62412", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b54d75a0deaf35f618c1706c32c82e7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30590d74cb22be8acd345bb06770e5a8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8df70c57e6f4552efcd9b9c83fddf78", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab274d69a4ef7075495683ab6f7653c0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bef470e4d5be1d16563684dfe38b845", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "865721fbd777908b585f3952eb21b232", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1182ab0f68c1c5e42bc9cf5099ce3c56", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "130279bf9835dc794e95772d0555d1bf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9252434cca681d33cff1c22941e6ddb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2397916593b0de30c92ae188f12a4ba9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13cc3c0aab321c2e1beeb920b4a46b49", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1a4c14d60fac0ab4cf2a1fcece3007e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89c2016a5018525bf39b1e2771620bfc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "413977e230a40e85bc53e8330fa28e87", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "925fa17c2292d8745adf049aedc3c0b8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79d318119fb30dac71b3957d207b71b2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f850248b3e6b1f5473f147003320ebf4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b346d8cfe4493264a2f1e0d6d5b40a38", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ddca051722937b5503c69fa1571d425", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6c6ee5db858065643d1725e0148e8f3", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "003658cf8cb1f0cca007982b68cf4cc9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2afeac6898248df60a54303b42b2eaa8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f09e8ac2d3c7fe73fd01e4ebc0879e9", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "987c4db039b8427a810c886d3e12e03e", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b77681310f38d5c6fee998dc758aa26e", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28ce524bca0a0169284e8a904c10b730", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0f97573447bc32a0aeeeff77e437b3f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2123fb2de8e2b79c8509f004646261f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "733f8da81280b822b58239c8cb0f75af", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c583128928c67ae328a84857251526dd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b6be40973c5dd438d4b4f6d88f5d8c8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38a85c3dabbcf14e2e478690bed765b0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66f981f1bf28dbd1022d77e173e5b9e1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79624c334c78cd162c08a8aea0861bb6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ace8944f338804e86c18a3dc703910e3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9b94b74d80615f057da06e67587ddb0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4d78dbd45942496696530588543649a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "703dc4d421563a84aae15a94d2681878", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "102a265735e5a5265f1be37b59f6e158", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d514a5f5192d9502ef09b18fdf40cd40", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "090361ef14ecb6f121030eeb02889422", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69489896e108e96fe977df5111be21ea", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0d7852f57e954ab721b8046646436ea", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3cf22e40426a14e6be7b43a468e1a4e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c9866eb859f2be97f026c6ac8fc1f48", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4865b62ae4eb553f99ca005e0a81e3e2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ba5bdc83d7fd5851b5036d22f1e58d9", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "278a8f03ded375f3020b64256457c149", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4aa755a30f88184712365aa72d91602", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c8ec61229a10e7a72d108ab54307ec2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d2cfe983f4b6cbaf700b61bd6037f7e", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7f62eb12b2d937f70d773f824924d49", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b2f76f49d1e0a38f7ba9ffc31680cc6", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0559e1fceba38db07482bb7c820a2be7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0fb29b28e5a5b8d2cbd64b5a7a6da4e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cad912af8bdf9f57198462c41f32d1f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9c8273091363fd0ec9ee2bb83c11233", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a060c33977c33fc1eb483374bdf5776", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4eded7b5388af0c67b1efba5be0642a7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e76bbb006bb77b55d5b5b2f19f4dbf2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42a64ae5839d7b084a0eb304cd43f9ec", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "160e3ee147510f49cedfc4505fc3ccdf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f642e1bf3064773e7c2217f4ccd8f5fe", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4244c789ee4a9b7263ee69d1b2b78954", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7e9407aa46e2d8c30f3524327f3a934", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be9291bf4ab11b9ef4600fda052d512e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a0b8c714f5b0d5f57fd3a99d7d0d3f0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcf3b087cc83aad1ae0867c235a4ef45", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "babf893b6de88aaaf46681febf495521", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47edb2cdc80021498ba0dde70ed8f886", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7951d8c1073dfcf1107973cc8587415a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f5053f98484a18c1270bb7573e51255", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3538fbe42de1f13fd70e5de3f1759b7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d4bace13a13ccc5b692acacb1b4f2d3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9778aae7cdd2340e50e5925eec0766d3", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06e6c43a3a9a9b9262ea0c030a846249", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83c2b363055025e696451916a041edfb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "268a2d863fabc4ca7e10c3a41e3333da", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd4d5e03a10091e92c27411f781056f3", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa37f83d5226d40fcbaf933c2ae1228c", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96392a9e35694c6ac59d155e18ff45f6", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d65f50950cc530e95a7c5f786a1778e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6308a88ec377af5a454d5cb765f0d160", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd47da6b8c5026a68abcb20e7c7c008a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c4fe0ed5bdd4ff68aa5d932a10e590e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "202afc65a82cbc228ea5dc7e68626110", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c7b645d2b57d25333d540f833a9fe3f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecd3cc868043f4081d6c378640490ac6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86c32783f1f157d6a5a8873f8f367a3b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a16bba624ee37e467a538b8261f66715", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d49d0f8a6abc5396068ef0ed728eef5d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24c4495d8a96aa125aa2b4a3d0ff418a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "373f66666e662d73bfebb3944c2c7784", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "177d5c5af4a9a96ad298988404b62ee6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3262629ecb9045aeada9f11b34fa567d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2474f3e9a2563583655418c71fa6445", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ea656a938dfd2590517056e351a243d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "638c120c6258ae60be66a0740552e891", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f6236a9b5ec8b3ec8a903d30f81f05e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d51ea047ec301fd760f0d706ddfab8d2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fb3621025a441673dc5dcda3428ef18", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49df4f22e34a68dee381f31e5bc2fc89", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2deecfe0e184b3f8a6ff65d34449a7e", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d6c9c706cff9d42443ce3a798db8528", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8a43f0b22c813714fc39167ed367a55", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e80c4af0dc6862ad96b280c87cb35fc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "981387bc1468c7096fc85e9ec514bb0f", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcc127af707ea528975de9c1f6f0d873", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d4df9e67ece019f787ec50507a921c7", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "619abc3abaeb6347286566c227725ac1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fa5146732ac9322b5aeb00207e74b84", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9667f58ce1d3c99b3404d4953be2e7c4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29e514e65068f71c7386c360586e51ca", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c571f39403b3ef363ad1f012aecf9e59", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec0c0b6349d952221c3f8e17b3417622", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc511154f14f750d86e8faf6b4e06ba5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d30c868464c2d5b4468fda3620079b44", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4aeaa0c8fcd0245493b5c8be10f08219", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e5f59a210598f7f8ccf21181fc05728", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f66f64a105fc80e46354bc17f71c2a41", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ad058f98c67d3ecc7608fe884665c16", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23aa020622b37d415caaeb2428c7af9c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36249f581c29cd2052b519365ec08ddd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50847e531c939f61db18b6079b7edc53", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e49b1eb81122c3b07c611a93c018e585", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d041dc780b374e97fb653749d2f17476", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90501432901b1617fc02f7aecf3dd394", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a25a9872d8992c99fb84c6ff91a55ce", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9745cc158f187db335ae4e36423e52c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24f512635e49b2548613b4e81ce7b5d9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2305c88b768d21fd6e67f8e65164b756", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50011ac735c4b2d91d333486121899b3", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fe6c37067716bc03146549e647fc36e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71c80d77917b1e1e5aaeb6785e849646", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "411315788912c840107205d21c3a495e", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 13.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 13.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92012f1c7169cc84f04a2e0f9ceb63b6", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 181.15, + "z": 3.5 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4a96e1c0716a6872877f93a6e23095b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4a351cde3d79ca3c5174d83e0d896e2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7042ed018dadf5509fbe4f0f5eca0ec3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0413f3f36312bc00d7043221095259d3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "407c656466b941a697e1110320bd710f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70c7b94b6a31bf9ef458102fa281a0d9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff96b5f8f852519dcf643ab934d5e531", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2d6ab35d74751cc826f84a0d2022ea4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba4ade7f6a04ca4b9a17d5fd10a93808", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40f626da243bcf0141fff0adbadd01d1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "265ab2880feb6752a2a1040a2139bd67", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bec439acf39d4c5bda42fbc8ed5f7b74", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e38448f711829f7798b4f09cc945f22d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33e826b9f57bc578b2415d65cc18a025", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cb56789ea3e3d92ab303f3c011cc096", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33cfc7c03b039c3bcab471beb64be511", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76ecab2aaf5df74e8b02f5cf5362960f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95a81b88ce677fdbafe71bf42e39906b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6bebb3f3344311d6cfedcb90393a5c2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a7a99abde88a072309150766c834ccd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81acfaecea5c34562d47fba4962e34e9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a3b5cc808d830622ff02ef2f2cd770e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0adc465126a4bea92ab4000585c2086", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 14.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5dc00138210d20bb466915d7504c38c", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6278769afa101462a1606efdc3e825de", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5e235368fee636e7e478418e1440974", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7b38dd3e232cf6137d4388cae96121b", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "moduleId": "UUID", + "profile": [ + { + "celsius": 37.0, + "holdSeconds": 900.0 + } + ] + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d48b09b1b66eb1aeec381964a426bf72", + "notes": [], + "params": { + "celsius": 10.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "586981d355e087139e2f76cdbe3de8ee", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4b2d65f6dfccaf5ba527e21647264cf", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2533fae37d69a0543196fd6af07858e", + "notes": [], + "params": { + "message": "--> Transferring Sample to Deepwell" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3ea8a0583e6d4f5bc34158c3f9a1519", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "112dd48f06218d8ad8cd0e1b9ddb0cf6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1802b5658e4a0fdc6e8a49cf097b2fde", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59bc80e8bcf40c19354d81893b9abdaa", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1ea0e32b4ba29bdb4e6cdc7088fa47a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e94ef88f55bbb09dfc483cd58c7bb24", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e92fe7c5d02ed5ba985527814eb26b1a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bee89c773f0faa954870733c01d678db", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30690aea632b583a98a23b44f45eacb1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b9936ca1d2a2e6bc3d72deebffb8113", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c554b110931da840aaf7b3400eea8112", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5d50aefbb611fb332cc7e31a3dfefbf", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffbcc8d063a78514069655304482a0a4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb6a4360d6d0b3b21af86b08ea8764db", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a480cd531da5ab09c4a1fa0435b22af", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45618e03ebe47c372958440a5b5eed6c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9becb52d566eb226549309da60f62f0b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "844172dd51a277daae83e206f0ec47f7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2976b9caac462c6caaa8e1c53a3060ca", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a7294fad4402bbdd31c9a36fa0e2f37", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "602bcbe850f945c3aebd490abf9b02c0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ca8f79b649dbe14600624ced11a7fc6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b25ea2322b57d92d6d36c140afc1c3d3", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d00adb398a54eaa599dc28f62db4345d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "747bb061efdeeeaabca110aa25038080", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51c144f39636c159ef1a06c6e04b10ff", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f826298c11f84738e8b595121698efb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0e94c40975ebe924dd6b165df6fe037", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e520de19324c2ab18ff145a7894f6f4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fcd9bef847ac2da02a17b09b5f32157", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ce3ba34e6b97ad069fca2140a3dbb87", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92963344d8a6c03456dba9aedef15dfe", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0c1ce80b2d402604dec0b7bb1725655", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce16ecbf7d666e1a5b9a2fcd3d0b56c1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2235af25022274a5241806867ee50b7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7faaa95e7e658654c55e01160de1eb3b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e47232ddb97f6ecf3cd18b6eb50147fe", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e32bb79302fd68b20347500a6614acd8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b02deb51fec8180a1ab50c7b92f55fb1", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c01b9b147c0092bf1893aea7b64a1401", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9533a174de3db7936799a65c8c1bf568", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b41f8bb48195b18422004053dbc419f7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "faff67de0e3f8ffd3ef729aafdcff8d2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "461f01a714c396473bc352d7833883b9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d4b77831e15754143767f089897142c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "406ad1f372f9b34d27721a046aa466da", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.75 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 1.510000000000001 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad1989df252d831508993ed8f98ea7d8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e09c04e81697504bde1b0eb379da530", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "567312776728c510ca0f70bc79beabc2", + "notes": [], + "params": { + "message": "SETTING THERMO to Room Temp" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8ec730a4365926eb4fb3c621e4f6ee0", + "notes": [], + "params": { + "celsius": 20.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63547ef0e45b067a4acefee20ac64c75", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f95a3aab146ee999ee0fcf1f75d1152a", + "notes": [], + "params": { + "celsius": 37.0, + "moduleId": "UUID" + }, + "result": { + "targetLidTemperature": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "000ce08b8be00167c50e11865207e35d", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf957893531e5a1872d42b2524e99be0", + "notes": [], + "params": { + "seconds": 240.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d03fc0d8f51ca4b650b625587ad4b057", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76dbb379318a4893505a342b70e0d850", + "notes": [], + "params": { + "message": "--> Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e2d6eb26b847661857699d65d0e33f5", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ecc68c3125336d611ad8295280786a9", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d627e020bacb87a5dd7ee1dfd139433", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f30c22e5838191a747f7a81fa05fb636", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac5a6ea1820160e1847c4804537c45b3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42d8946fa7bd52306458b6e3c7d85fd5", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bac125258d842893eb2b867a1e3993f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a8c5029f2ae3867de7039e9934abafe", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f15cf15203da981cc336acc9ffebae5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35b5dbb82be3ad37250206e4669f86e0", + "notes": [], + "params": { + "message": "Adding 480ul tp 480" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dea4496f5229e88cee65d6b48a475c69", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce7382a25c86754b4d9e1e2d61a38253", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e280a39558572305c53e85faa64e4771", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d27691647e03ba0646620c0abc084662", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8640f1b5b043e43e7dac9844b320c86f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80b2b7295a63e5f2717e5f9636926556", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08a1d6ea072dd36b4c8ed5e5bc716035", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a13695188053eb6b7733ad6510b9ef1e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f10ff3d5d84295ed8ffea436ac24003", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "054a9464f747d355e6b7a4447971a35e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ddbaaade0f173292e9bfcc16856af072", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5ee97189e81910a1fb864c702828e13", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b744fcf8aeac81833e75f08ed9614244", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a94a38694c7ce005e10ae074775adc8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f80647c9ea52e584276e5e1aa12c46ed", + "notes": [], + "params": { + "message": "Adding 480ul tp 960" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bec15378c818be30b7337ca484623834", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bcf36eef41e45074624dfaef8aae640", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "041f8058b272ad0a74eed65c80efc1b9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca8fea523e855df2ff6731730a5c2436", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32d5e7c919049e1d65ff309c3e20a481", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2f2dd1c8aa39a92a3aee6d45c56e485", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a83b053b72f705bfe54a7ce03b32ba0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8cd13a9f0128f2e5e2c1a1fbfea70db", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "251d7603b1dddebbe858db61be606be7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a5df53a373b104e60ac2e3a8f9b0183", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eec0666e18146efbde572a140b06cc12", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "129bb4e077592294f49d414f90000222", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d32287a3ea3b7c9b3e44bcd1915712f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d25fa076346d053fd74b6b9be5428558", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d368da824b8d0345856350dee37c738d", + "notes": [], + "params": { + "message": "Adding 480ul tp 1440" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "156edd2ccee5e0fd61e30bd206a3501c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2dab3c7691ceabc775d5416bf25e24c5", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf0f62d17a90cc2d004e171ca1258143", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e84d708ea7c22cba18e174329591eb91", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47dbff7705ae475613f38d9374f2c354", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27492e91f637436f0f7bee4ea6b3f865", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63193728772b06b4e9451fc35a49e37a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3edcb06ca1515196a4d701cbceaf4c3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ee3400b7f223d160005c7cefa1eda32", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d88811cace0e91888fced7befb8c6961", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c25a642d77708c6115f44c044da8771", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5962dc16ebac14e2a336b80559c9e574", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d825086d84da142b4123dfda0de739f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4576a3a44a8db9ad1740bcf85504377f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e79707a63d60602fd067b2758161c57", + "notes": [], + "params": { + "message": "Adding 480ul tp 1920" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06005483c4da01810719e006391b81b4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f4df2c491c7462c6b6cdc29ec54eea8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bd3e8b721f690e66524d84421a09fa2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adab6f137b0425f79cbadb79956bbb3f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c184d6a03b25dede3eea7d411512623", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9456c6bf3d29cab217ed20239c02883", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b3223d0609992b80bbab18646dae177", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05f926e0829890c7eed6cf5f814348f4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bb3c99ac4f5a4778f62db62ca8c5c65", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a73d77089a0dc1f4aca869493f0408bc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f5c404efa9b4ca23bb96a42c817cd2e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db383b698ce4d35ca2f9e03a3b93363f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa415b830ac77a673ef5a432914cd768", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ec47e62fb54ed4a2ac600c52a393be4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7631b6689122aaeba0c7228789b8c56", + "notes": [], + "params": { + "message": "Adding 480ul tp 2400" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17b1ae9f1462943d7f16e21b06be9237", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92808d4d20713621d328de4fc458ef84", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74e2ceb0d3d0d4646cfda1dcdccbb3a4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5edb393d33cd7fc6c30228587eb05620", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93fc6a57517bf008976b12755b4aa9b4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "765673daf72fe8ba2417be2cf5aa3cab", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5984704fa247ba0bc8f64e42ae3df6f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a1f63848e819ab6a729b45fdf0f84a6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bff98eeb707635237d1a2325ccc43acc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cbf4a5e22a428c58bb855f6c71acc0a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ac1002fb2d8ff21f7c3c99637b9cf95", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "580bd5ee532f3a2a71f210e69afacef8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7bf9abc6b13e601f8f2002d0812cf50", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f93902f368874dffa156b9e40252c17", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9db4e4275cff164acd718e4d8b44e09", + "notes": [], + "params": { + "message": "Adding 480ul tp 2880" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "397a9a497d323f6061265e71f9c5c05e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f440d65a3a0377151fca2eb6b1fd44f4", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "916cae023168d8c8fe194cb0185f4bd9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6178a1cab727fa3fd3c9d76b4f4c5d2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd208914ecd3446a57dbdc869354b7db", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b7a6f2424ac6c21deef1acd171d49b8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84241a04cffd04abf95b4281fb400d57", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f53b229e4fcd713890ca2817a0311e4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2712a310a662c70a5df80ad0b2ce995", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff269f6ec5fb197377b999c3fd48968a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f96f89200cc97f48b1c57590533641e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f346719e353c65658080bb00ec0502bb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce30ec763ff052c38471fdaa65779365", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2fce8b0ac61a68ee16bcf295e8aacee", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "844f336eb5dd75f90854f37b34d6ff85", + "notes": [], + "params": { + "message": "Adding 480ul tp 3360" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a2bbf70fef9f99d0c41647ac72c3716", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35378acb2cc7b7112ff87636facb4cec", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b59e99b32243010656b414406dc95870", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74e3c86f255dee16ba18deed0b1c6e5d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5da8ea775fe1644ef4a790308fea4d6f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "099af073618ae9caabca46774e108e5e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f72ab49225f1631ebdaf1aa1d0117fcb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6fcd6f2d5ede58bf82d8ab58aabe51f8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4ff9dbd8d8487acbeabf6492f64c126", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b3f4e7472c374f8a438442488c794ef", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76b9ffa28df67f277a3037ca1910a806", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4d7dcabf2fab362fb79782815fd1f48", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b443afd5b62b6b14724060c5db8ef5c2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce35ae4654023cc65f018c25e0b01628", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c850f76fde0f93f3c85a3559cb27a4b", + "notes": [], + "params": { + "message": "Adding 480ul tp 3840" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17163ef520661c38072bfda33ca1bf88", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac785a02d1ddfc9eec4f76bfc0689570", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c6b22d67072fe5f19d14e64d4f2e615", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e557e22b4ebfc4efa1267499c29096e5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5613e3f9c1069cb58407275d84c599b0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "187a37a7a1b2453990654305822b53fb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "201334ed269361835e7308f93b49697c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7095a8a8cd51be15f33b2060e6f041d5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa4c06600b4ba6352ce11e96dee940bf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bd6954831e38027e90554ded8dfc340", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "346651a6ae9168b7fdae8bcdaf8bd734", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b71d8ef716947f48e5106d9e45a0f38", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d88c7bee3e9fbbee17615bbd0f165f9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f6754b449eff0c57a74839401f1e289", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6456df4e3b4be0e45eeb0ea045a7355", + "notes": [], + "params": { + "message": "Adding 480ul tp 4320" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89c7875dcf282546d042f797c40ba83e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df42ffdb12063835888b30331e837599", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bcd63dc3015c0f109814dce38000cc8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "693bbce042fa765beef4ea33aa62e580", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a966541ef61259dd658aee3f54375082", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2889d9066085a61524d87e3e09a5e80", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72b77e1b350b892d25c4148c4da56881", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3825a9d17ec39060907c89e1ae2cc7fb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cdaf75749fac85f3fcb3f0b01ac228f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47964e975bf0a7a9dc7cc6b6fc63df2e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ce3bb2558d04e6da397dfde1dde48ae", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c910a3f448632a1942cfb3db5cd6eee", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad1e037c23ae482961371c1934c16668", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c1b6fbc2367b92cba3a7cdcc29abd94", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b5c686a33bbaef4c632f52ff2f0ad19", + "notes": [], + "params": { + "message": "Adding 480ul tp 4800" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58b59363885f8594155f10d0753ed61e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b7d4f59c455cd9c4036f21fda43a99d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d362ffecbff3fc93694ac323dc99203", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62b7c3239057935229afc525f9285277", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "908651b4d10a063dcf25a7e6a2d50f86", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d07a8ed85a0692f84f822833a85c6bd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dff143c252b33d62a3af8f795c2be441", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6782c7ded7ae82fb2ed8d496a0d85620", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87d3da09d0da714ea06d1a6962d465e8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f07601c8dbd21bcf5eef8fd313d69bc1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9144132a660a45afe36c335d1255981", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61f85bcf6d085f856f8e9d108bb102fa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d58d1e10461560cdf3eea865290115ba", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "874e97ff0858db71047502604061df34", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19215bab2f42840f8eed527c7c07f391", + "notes": [], + "params": { + "message": "Adding 480ul tp 5280" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2c10dd36699fe97b4884a6eeb535463", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5aa8d6c79bb13bca59f33117039baf85", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4461c499734729a083b834870f9bda8c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1687a8f13055d89e7b349867c12f9dde", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0233c58263060a5bdececf31cd991e3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9115b20154f6f57436f8921247ddf584", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cab99b4ff85ae2154da90790be2e6dd", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "208b2f11a4fa43b13d29e15691332b4c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afd5ed7cb816fc4da1036fe1537eda6e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8f64e99b04df63d222129e80ab5e663", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ad0f0234a9b7de7500a69ca1d517717", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "783462f298003aa80b251a84bc6cfb88", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2092392b49fecce58ff9e8f945801695", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c5cbcc81130ff29efa86a758ea7d0d1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 74.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49dfd69cc30305812c46bb5c8198d4e7", + "notes": [], + "params": { + "message": "Adding 480ul tp 5760" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b019e06f3f65b0753820b9d9f80f26cd", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1af14cd08a93698547e362ae5c5c64a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e661e69e0be62e87e69737dc8d3e9c29", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7962dc97c08bee4f4a9e39c5053517f4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2343386c446c5e4cde53ddbd0fe97fb8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5227513136103d7ec644bbfff1d30783", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03e1a5fccc4c1de891db26d8dc535de9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55471814b700e766816dd87f47cd24fb", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9223c52a7e25de7ed94dd5b85e7e3569", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "837f797034c971482551d62eccf1281b", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3d3b7b95e945f77ff2e874646ea0a12", + "notes": [], + "params": { + "message": "--> Wash 1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36cc40399b5a052fc4c2f54d80c13440", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06a1328e1b4acba09ee983ccef62dee2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b226cf40040509cf506c4a7f148143c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "830f6f3790cb8e4027cdb6cca79a4cfd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fa7db8b329016eac4da94ff23c957c2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "300c1e3c9e81afe230cc0f10374b1b79", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "122eb6c0923541ca5453790dcd724fcd", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "987fa556a87c411e6080f13ed6779616", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8980aec6a209bc0946e7fbf00726da9", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43c177adb39b3a9a2c7b9d87d2674674", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13dcaaf8ad01d524233370582a9347ca", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5983f7f01bb77689c40d377fd88565cf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0db0c7cf5dde5a6e24191115ec4b9fd8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a0694da316767df53cb9e48e363ffd5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53c21f20b42231c91180b60dbb6d41b1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cb6e8237f9e1e441574315cacfdda7b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2987bf4446fdf57d1238c6890edc6edf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae144cc3b2885843bf52214aa650354b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "408ed053db4af623d76ac72086a4f5b6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7146aa0dcfe5598065c7cd0dffebd925", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffe6f847e90f960218f2005d4956f389", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "298f6968ec9c18595430a154f40b05e0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7dbef97b07d00265b995977d08cc50a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6cf60765e2686786a76e53bbfaea920", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c3e99c03ac6d84d1ee0b4163122977e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24da03ba9b8d2b9bfa9f7496640422af", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1461be634a51fac9bace7aa556b5589d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35de4b46467a401862fa5e85faedf99b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb9788dbc1428e406f5a333c82e798f1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c54e8fa329725a6ccf838ef21b12bcdb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bff285297847151ddf04f3d902b0dd9b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "949e82208ab2281600d37c6066b767b4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d5c4f083b61959a5302be524dded8d1", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3994ac9e9f845f90a719f64327485645", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c902af3c03653cac924105d35fa53f4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "064c4f7c0c83363e4a8ee5f52893311a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9b5773c514647ae6d7a7cfdcddd269b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5db4816c680b1c16477566d03c063ce9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "488d51137bba6cda64444450b2ab117d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a99f5405a3b98240fb337199fd836666", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc3bc498ceb6939ec5fba2b768a05737", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f52faa29daf963de36bd9fc78fe315e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f653b04455442b73ccf5f56c0880aa3", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e10a66b271826068621f8fbb8624148", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9215d8d8ca7721e7b06bedfcad15d679", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c026d1d491487b57ff1bdc323090f13", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d78f2771981b7db36a7c631c1eea3af", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0e922f0853adcea635610399efeb8a2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "002cec8cf2ce6149d73da8fcadb5f174", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58c6807e6b76284b6e3eaa964f16cb96", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "914937ca5418706cd4d67d68645c5edd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d08b06ff354c21ccd4f94eab4a9e4ce4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2eb89946ecc2184d22c8fa420272db39", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a8541a40b211b2d565a6652e51df3cc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41a86fa97eb172afca24085f92a0c5a8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b61a1e13318777b696b0cdf0d18e3099", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "659af0727bde515b9e09b698413d5cda", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ea9f9063da203c3fe743a298229c04f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbc08e9be2d5b00a796651009bdc0213", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13c29e82759216abb3242340b63fada8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20e03c3008fb2834ffd3fae130ffb0e5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "054df269f5c87fa49ab9b8b2ab37cbcc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f5830eba8503d5bee9e66f4d3ad3747", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f45613c34568c7348385ff2c323b3efe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f7f184464b9cefa93c0edf58c0de9f2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f33d2ccbe966bbd31123109df5e759d9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b871b9c0aa9d94c46032ee7f57cdb779", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7872c24c5553cc026f6796c04527553", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0b9456f8197566b60adfd6cd797aea8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c455b0a2ab4375aff2444ad45e16d3b1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22cd4008f1e87137d8ea4f88fd186050", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd74265abeeffbeb0a95ae676a4d22e6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4b3c927c5ac8235333d5e564206ed82", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0e3401995cb4225afa2d9d1592f8c8f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba22ff34ba1d235925bf7d6d84941921", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d95a1c783b5d19fb20b299fca35ac78", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "132ef3da6fbdb6c839b41cd8f659e3ea", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2161a18453b8c77b26d6945badc0b36d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d961cfa1d2ea1ec38c3fe1392a30870", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffbfde78243da3635ef7cdeb7ff4772e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98a4355c401cda40ba5e18d740edbc52", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5d92828198b0dadbd9d19ecd85a3f8d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e9e2acda930463ed87bc01286d232ad", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ca7304afad3e44ea89d1b4dd9c58aec", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4f9c417f8af5cfea818a36c5cba4d65", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41df223360eb238850f7a7201bf19dba", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0c3c366411f2d4cfa98a7d5c92fa490", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7c233ef51129669af74d847278cff8a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "060d03159a36f6a7c6e852b57172a0d8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a23f3fe315533f83dc300bfbba196b90", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55ea6329d9dcc87608ff2e8f05fbf81b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3ec723d836b5aa7e5558c89b2367a08", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef1f2a096dcb4f843e39409fd3ec6f77", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbc8ed0dd1a624758882f4e250609f0b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "552885a1756354afcdf25e9431b1b100", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06105b1fd6ab743bcd1195d477ea4cc4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfe598faf8ed1b10eae87b00b437de60", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf578ee788e720a1e1e297a43660617e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "918a522886e9d065affe0ed78a1a41d1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf84157569b4a874c6c36b1c78204baa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6a4c53f45a71a23263e2d2d67f0f4e5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d0a6ccdbbf5699cd2895cc341513daa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "613c3fc5998ab589d67bbb4af1c78203", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5f446ff6ea97e8e0f506677359488aa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d2501e38c96dfa91608419a6f0f4808", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a33e403be3b9fbf26351de8fd1a263c4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "050cb877e831c27bf2ac0ca21b630a19", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47691951f634acf91cc6f25019c730b8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54b596d3bc795cb2f0d4dfec354c8e0a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "479800c04cce8d12f51c3d187087e1a1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "217f3753f7fedddd324bc836f66dc0bd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "835d5e963cb10cc9e7f66b0309882156", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c9b65f3c7a4c663a434a5ce7c8ff365", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3188ceadad5f1231fecccb6e52b3060", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7432fe8b81762fa5d62aaeca51656ab9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03ca2e518b0c3199429d46457f1a280e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ed9eccef4766ceecb04179aabd543be", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e94ec26624c406580e9cddfbd2c3fc76", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f685fd775259096db1b8c733c1e131e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6946d32a76d03ffd48e8a0085cb05cb1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5db84623de03a9fe564bcbacc216c7b6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a11bcb714721375b16f510b037c04c6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "780750ceabf28dec3994f2e4284143ae", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f203eb2bcf6e2fe09c22d99cc54fbd59", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "943a18d5676d1a4b17ce138e8639d536", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67851b716afef312f4aff474b0aee89e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bf38f3752438c314757c839b7b2b3b8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7b23d761d7a20c3bb38246bdf4d0f20", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39bce4ef8c7cec250cacfdf0b6459765", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b97f91bc9673cbd2d7df6710722efe56", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84b9c16ea285ea13d67fc16503ae1e3f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86a33098dafd499880c735f2c6632993", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6f0d4dc4bdab783a74bacdcf7ff6ed5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d09ad873bb37655448ff81ad02ca94c9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e7b2954c9cd7abf48e3fa1c09f2c348", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "905cff7805d9f9a41ee56df53b999d2b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7376281c7fa87b85082152a2d0f23215", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cad4d584c07d9e582d949c47f7751025", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dea958ec18b29c1565227eb079b368e1", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23ade919be98bd7663375c0f283aeb62", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ce40717982efc057594168f010ad0b9", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0640f1a72bea2aaede4007764c68a1a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15561e8adb35e976e4965df848f8f212", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e5862cda34d9c9cee389705e062de17", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bd99e67998c6cabc615db18f41c115a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bddf65d3df13f2df956475e46198a45c", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "489c3e32a55df9ea3148fc339e4bf94e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b015b9a9e6c61dee9241c5c3edf30397", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d1ff92597e58c6115d585bd39c0600c", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04413b6ee747d487baced7c709190e8d", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fcbadcccaf09fcae745cfa8629d2599", + "notes": [], + "params": { + "seconds": 180.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66288ac2785f6c357d4a65be74f448b1", + "notes": [], + "params": { + "message": "--> Remove Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b13327b06092d6a93e5c315a85f9587", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "321a6383619702423b3d7f919bff29e9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bddb21aecd366195fd3271e38463d375", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "761474c3a43fa9357016c782e7c420b3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efd386ba1b22c483d216afeac1a7533a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96dc4fb495fe31fb8827da6cf0e37597", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09026a655c8323a53fadc29076507d4f", + "notes": [], + "params": { + "message": "Adding 800ul tp 6560" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e521d186bb2c8bfbe5829382830b07a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1e1ab1d62eb5e39e4a57020d78f38d9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44cc0087313910e8d54a656728404cef", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b0758360b430776c8624cdf04a69cc6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2b907a250cf4bde4952ed65997ecd56", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "166365a6a7d8cd2892efa1a702e9af45", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d98922db302f4610c881c8c614fe811", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aec4bd132d38f3024fb9bb8a54a28a25", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9e9de539c20d7596f27693c786910bc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0982aed5755da278cc81e15a558c6f6d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "435f7080d97e4f0017a4250176b131e8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "304f2d2643890a79f1fffc2a15abddbb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ea50592185142fd3da02cc9d7009593", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5e92527e3fd6fa24226c036c76687ae", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7d60436cab221767e7cebee39e8153e", + "notes": [], + "params": { + "message": "Adding 800ul tp 7360" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74b6ff3eff69d32d9787e9f6d376d6b4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00c9b9493ac8ffb089bbb158255136dc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecf141cb3813895523819757d432cd25", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27a7fc1191172e10f1a60cb5ad5dfd66", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfcfaa8817f9627f5320f51e19fd83ee", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a5d7448100806725cbad02bfb9d65bb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d2e449ea21dac1b594a51a38bf645f9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8724127b5a99b84a5bea2c0e68a80bdb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac17e7eb11e39206918ccfd3c7352a4e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6717b2e71568b219b6fd7d93e4af5b84", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1ae304edc8332bf25626a8128ba6fb1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ca5db528eab328f861714bb7abb4ee9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe25247411534337f83fc5aff1153ce6", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96c66dcd4915cf0fe75714a8b15599cd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76b118e3f1eef5d4f8882f0860e0c017", + "notes": [], + "params": { + "message": "Adding 800ul tp 8160" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebd23ca41eb9fe47019cd5233c191947", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92446a240d21c8507ab967a39be54eab", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cb54d773559b8ba005b01f27643501b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d77c9797da113410eb5bdd47d5d21bd2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0aaf3e666042f899552bd63778e0b5f0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00d9c9bf4d6faf39d361db2d5f6aef1d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fb1882eea9f1b471fdeb938dfe89844", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "deee635e7054a51cdc02bfc301661762", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c0c2db09b31e17a1a23af81dba25ca5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a799fee34fdfbe04399b39eabe96a1ca", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3ea105d262ae8cd4f85db184175fb5a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6bb11f595a804e1797a69c66ec98f52", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3029f04faa83fe233892447d3fa60ea8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b84ec65b3e305bf7890f0cb311a77fbb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dabc5cd6fc17c20f51e777a33653f99", + "notes": [], + "params": { + "message": "Adding 800ul tp 8960" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fad3aaea5eab20590a470270fd28c077", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5088ef0f8856d098fcdcd1b09f9ba05a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "150ec6d91dbf47a82b56ea1f795e9652", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89dcbbab1cdfa3bd9250c7be6f81c820", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fb4512e5521398151d03460ececee5b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "627888152198a7ff469b52ec06dd97d8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aca0402a090c10f9982d457271d496f5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e6a0a58d0d665f4da592d630d260b74", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82549b0f46ea5ba215ccaed35d268ddf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab9059282601c4a213b4e7181a65d9dc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd2c496d4e77315f361175859ad2e2d4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90dd66ef207341603c9938e217182f17", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ee1909a1c1fb712aff9fbbf8e8ab13a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d7281025e11a1ab149041ba98787f50", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b4576de0da889a536049efaca6fd2e0", + "notes": [], + "params": { + "message": "Adding 800ul tp 9760" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c6d9417e42189231aeaebedf0e6c401", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eca46b498b6e2a984332b3b3d972db82", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01f243cd193e14ea0c1dba905532464b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f3567c48002eb85ea31df8e575f70f6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b19c202927809d33e7f6110662118e0b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e7977fc72f417d512bd57e74ef61d73", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7385b6d3d949013f8bb5845ee577ff4e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97a29db6cb5b6d2c485875d6d7383903", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81ad0dfde76e50ca9043d557ed668fd6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b74da47f04d4736346334eb0c46b94da", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e304a6c917c1af1eb2792d369de22bf2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4dc953894924dba302035e96d2f18c68", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c76b550a4dc546d54795955b4c3240f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43e404d7b093a26791dae87e42850d8f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f5d39059fd3f7b0cee11c42d3c4ef5f", + "notes": [], + "params": { + "message": "Adding 800ul tp 10560" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74515535b7d15a1fa5035d0667dfec97", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0525cb2eafefeb516454824a31d2f6b5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7eebe51154a0f8d3e55fb7dc8e37bfb1", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f1a65c2d88205a149544835e46f50d2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b95d5aba68014481c149ac1aec71a7b4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9593cc97a9f7861edfedb96c8da63f78", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ebc7ba79553c0c832eaf9535b236829", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3cd2e2b09ebba1221866c873d79fbc1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abba70c4bb502153af0217f2d07ab5e5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ba92929761115cd01fd1c63b6326905", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aff05a7c72c0bf8d18fd4568cf7d7d33", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c33ed90cc28ef295ee9e1b17c292a8b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3084956080d1a2c19e76ba776c7031b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d17e4916c2c118122a9aa14aea458734", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9520aa1fa5fa13af619600fd9469e4a0", + "notes": [], + "params": { + "message": "Adding 800ul tp 11360" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3544eafe575e99cb43dd66f09872ba5e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9be5a3bb4d6938fd56b1dbff6f88accc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35e8f046e60e06abd0a7c4a21fac422f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0de6ac4e7adaee939f07490296400ba3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61077e81ad7cf5b6ef70001072e95d50", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ddc3f0f6681168ac5fa98feadb95114a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d5fcac87d2b25b4b5c2726b50fd05b0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbfe8649d7f0606b63ef36553537315b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79a7b13b079e0184e7d9de68e675ef60", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ccd919592ab5dd8e47a436bca8e6a59", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0cce411ba8e7e1667f510ac7df6dea3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d37adc35d8f2b4dffb646b4cd0568ee", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f15354c6251577932e60e8400ffffaef", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a84415b496510d6af7398129e5839c71", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "695756028537b36b927e5693cc3de8fb", + "notes": [], + "params": { + "message": "Adding 800ul tp 12160" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c80c57ad6d486b36bb057a230f3c6692", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5a43bda11dfd13e251da330e351f04f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "243c4215ca106e07bbb26fbc2f069d83", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a012f8b22a7d453253d840ba2cbb812", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a78453f9c09ea76ad88e49cc1d7a075", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "736471fc2114b9ace3744b0a9805252e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86d33041c5ac3d9ce4ae25e424a5b0b2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb153e0e7377a27349c508e5c49b2a3d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb98b28844558dbc60920c408ba6932e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b40add03ffa57352d2c5727e120094e6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "261be628d65a57c90c1c638612575dc2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2166ce82cd0da5ec0e2c85f9136c346", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7907af38a91e79f045c9350201b5235", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f4ac7da2320597c085127215acf9dee", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbec7242837cfc4813b1ebed67a4eff9", + "notes": [], + "params": { + "message": "Adding 800ul tp 12960" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a74c239d6be34cc0637768657e3e490", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "037b798b28825d50733128b22b3cb219", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b21f070e5eb140bf229720081550b7ab", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c98559d107fe112ee533ff0bd8d12f8b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b6fc59039a7102df986b6bc7618b067", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4132a3c3442a7bf4b93da8fcacfed328", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adbb797c5a4d49e09d6213bec08c5d62", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a29ca9bdd923e61f93616fbe102adf84", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6a9916f4470d3cc00864a0371f4e0a8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "504fd41831a367f0e9bec834ecea402d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac6b5c47296900d077ebae05b04558e5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e363a19998a62ba7886852234f64a1a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ad2546f0c81e864d0bb19b94f4cd684", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f78ac51ff23836ac8c9762f23c8b64b7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "210a7b4e585e7f8bfb5b5bd702d69653", + "notes": [], + "params": { + "message": "Adding 800ul tp 13760" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cc45d5130e43de3add61508406d2179", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "487a2cc972e8c712401117a9dbb511c7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8783fb94087d077220a438000d168fe5", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "651d70956750df7b9f5e2504111ecfc0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e44cace576bc5b23a2c0f40fbcd68ace", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81919b0af636cd37ce8ce8a922a6eb4c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84148a32bb82250822f5ddfb2575e9fd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4918fe93456dda5dcda25a2e32fc11b0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7881a7ac019b1149d6a5907efaff4d3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a214b39144dd282c99b673bd7cc1d9a5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e4e5c4aed000383fdadaefa0f1a3855", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6a04f16322bad4006cf4be0d2d2e660", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7a3dd5f40b06a163f3eb2bae5def023", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6e96e8bb1bd58d7220fadfe20111d55", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "041f8b34e0140112283c22a00daeeef2", + "notes": [], + "params": { + "message": "Adding 800ul tp 14560" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c623cff3b8741130b6d3e9be49dbbe4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03aa28fdbef7f841d34668e931cafb20", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cb0c89d60c96ec7b5d78483c7370848", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be84b813725917967a92012a9abf1f35", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "432e9c85727caf90f5fc6b18b4fa3789", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05da170feefe53f90888e674513dcc6d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fb5b2aa228ee6e31baae41d8a6946d6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e457f1da2518c45229966216f38d5a62", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e14e75e80e682c8099565bd0ff62b02f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f8310ead39e75de42e56657156aa369", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87e3f9c9250b1f79c909991537457697", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4724d948913d201ee06d8707810f10d9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e765b812a129e4f7a1dbe58114715099", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a90ebb93e511cd01892e553d69071fc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cc4950325f075b96df9d748856abb80", + "notes": [], + "params": { + "message": "Adding 800ul tp 15360" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3ede9fa6c8eb9db21f5f41c03cba427", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "279afcb2b2c92e65c4b19f072f1effa8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a831b777a8fd6851f4afcb4cab87f1e4", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a66d00a1f53af2c7d7f89a9c6ef5d9d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "036aad789f34799c2903747a2a2de802", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16393ddb48daa6040d06f3acb58e9074", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1db31aad01bbf47ae622d655cc5a178d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31753791d488694b542700e324a3e131", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e46c7b5f135696a01d48d1c0fb3e6a80", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a86669c1eb28f8c88822504141aa866", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6cf77b686167e00f3703cbd855f63477", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf6bf51f51fa3c9bd125626e58733744", + "notes": [], + "params": { + "message": "--> Wash 2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de034cb52ebe205294949bf16adfcd15", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6f7cf3375a7eb9e9985b71c1730cebe", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d299e3a546118c4093e969f78c7566e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49a5c49fd8a102fbcd6f643a5f5cc1ad", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d4d29ec95cd276fd8cbf605874d19a8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdbd573a838db3022b1f7509d3b030b7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f53d3000d324a584ac1416ac4e796b38", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "102f6fc2875b1135f4ac8c6cb8a7b7f4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8828ba589e945af8d46bd7c93eefdfc", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2742df1a4817cbc7a514d5e32c87ab9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16b1b852bad491c0a8a634c075d417a2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "519340618fdabb94f1c6cef6cc58f8a8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9010a2e37e86071b1bd2ee9bcf41fca8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a2bc874d844afd7c78467d7d9e8de13", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b94d5c10033db5f437255085f4209e9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c572b5b8889c9468215dc0ffa43c0d7c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7601a209cb28f274f4abd14754ec1864", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "134f1b76ac0dc135a03e23e6058b0717", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eeeeea6be0875a87edd0603965577d77", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96fb533f6cc48bc677e1edfcb5601336", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e66ac7cef73c5d6fd01894e2a4001a1c", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8290802eb13897ff6e794df8d1e1c7c7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e4edccff8ab99044cf7131404ae27f7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2db2645a8b0728ca38d6b3d7c3c8ae4b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bd0937865aa7ebdaffaaecc18dc8525", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d841dcbf5bb287ee9ffc19f0764431c5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "488dfe425792d56643f56a23868a30c7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f3917e647f72526dcf1297a7fb71663", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04f2437e63fe95e2a67e2aa17743badf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fb297518bf6d7a601e2f1bc66c306b3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "409e9e21f9f4becdb654da66844ddc20", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfcbd977488bf59c165471420eaab02c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afe980ec7c2b5bc9c7c797894c5988e2", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73b2099635f43bf916936b41872e3989", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69aa6793e3234612ccb3f798a2d03fd0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec1c4bc53171f3c82027a0b9ae89b163", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "280254761e78f3017e4c642393cbe475", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0aa98f87f65a906d8cdc931684b8a010", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5423fe11e7c7227813dcff72117e1ab8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bda1eef8dc30866a2eb4300866de2136", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b8a117e7032e041876c6beb2c14a875", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb6c014493f3d0000e511084d4e84a77", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5649885eeadc62d3ffd7904f16056043", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "872ba61e56ba624e1daf4c488cf4e011", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d01cd131ca20b5ffb3eb6c06316f6c04", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b9c2027f854cbca5beb305750aaa9be", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f27894eedeb671918a4bbb5b60c13626", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed92de059e129bb2b9b38a3dfab7fb03", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6919f85418f28cc81f4439ea95864392", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94f7a56d9ed3d5ecab1892e984f9d183", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5e55e3b0b9d1676f4bc2e4255dd260b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6bc776e1575dec0d6ea44748ce91ca9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a85c704b3d2d9bc6c48398385474ea71", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a04518636344ad8cff5a5dc8493fcb2d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b3639833863cb13f02ef27002c58dc4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e071359ecc96756520cd925accc5ba0f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07777a4de5ab3ae233bb4002800873c7", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b9f768f944bf06a2a98a6ff8ac7ff8a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71bfe041fe7a37d694bd00146b534874", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea9d6b490c062c99843af9f1b2a60472", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5723ff35325e1de360e3e29080cef02a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc57ae14427e7285ad88cc7e05924475", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1e054396edf1e385001b07a30820859", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17fb735b10c05519a748762d6f5ce328", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "caec808dd6fab9b25d4bcfe4fe0ea056", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "beea9fd6fd0c62689541f5f121dfe62a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d16da5ec390526f8d7f48efc119fc66", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dbda8edfb81db946e4623143bbc751c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bfff7bb6a8d3967f8efc15dadbe25bb", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "995bd74c542ae7311e0c6ff1f545b1d3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c78eca52201161dc7f338c3b6e8cc867", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40c01fc3a5d4848f848d7094337ed15b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3683a2f0a070551c34cd2dc30a3ece18", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b1225731218663a041aeaa77203a00d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85e725c6045b7e9a88cd52dad2aa4d7c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd846971ccb8e0ae4bdcb07a53639869", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30569dc5e338dcaf1f505f903a65aa89", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9924cc267e6a536156f2267a15435562", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5d5cdd8175c0c26b4a5c4734ca64719", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffe40c97aa73fa718ba52ac32fed51e2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d7b5fa4e24f185bbd071b935a332105", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb6fceca7499d81a393128a8c54ca51e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6b955d9f43c108e5b93421c4c9bf129", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "006f447031a3b29fdba598791e659acd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "702f2150e29f4ad92f0787971b82207d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "955194e69f03d00b74abe1df896b9e35", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22a0d451ec6db19c5654f7fe424db84c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "709b82cad80a6f1d89bfa576c2f1e8cc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dafa071fe035b93ee1239dbcc4294e2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3137d5ea258a90c6ef4600edf38cac51", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4b45b68aeb7e782097061b79fce8139", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5166314d8892a23b1df73d520dac4fd8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "857f44af2681f7357902bea7afd41e0b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fc2bcc5680d2b3d962d3ce4c50f6f58", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc047ff9fdd7a4af623ed89a280559da", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e074ef1b5cb3be43af4d2064f8d88651", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fccffc7f7977d44589b83405709e2d8a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc31bce318b20c08de3b4bbefad03646", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eabe9190941614ae0b4795c5cffd4dbf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07ddaea37ed7b0f51e36d56e72fb4956", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f22178c89b28a1981fc974e70b727cb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86931cf3e4aacd95cbd93e326e65b481", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26d3a4031b18ce9ac53de811c7c885cc", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f1451962afabbef5c584dea7eadb5cd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92d88720e6834d2b546a8bda536a6d6e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "447856d8702b29a4299fa6e0c054634d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43af0e19bb53247f9e271ff10d3e17d2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "761d9630aba74a0950633325bffa4b0c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b77f56c640919b10c44aca14fbc1bfe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5603f6afb1f4a346634970fcf1389a01", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e3a0ed128af6a3864dafc9f3440b99b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "939dde5be4e942ea386f920a6df99576", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01f71c9a22afca52bf71286944f4fdb3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c435bf05b19dcd7140c1ef93e92cc96", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad378636debbf684c8ea519a35cd01c9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a465be2720c6f766a99ca4418967aebe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6608f3251b9a929619747f74e43de2b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d2feedda484c9d51429b45356d27854", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d70a6983c87507ee49fa0d67e5db1c04", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "267725e11328aba109f9ed9d29638f60", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e49f19e25a52d0c5cd6a57d1e2a78b27", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e22cc3c667df17ab81260e8ed1c23a6a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc60d012c91a854da82eae46dc828f3b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e8dbbbf01b24f94aa0a391cfb1b0121", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23d53a6282d9b4306e315e6bc4f974d9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "910086120060bd914bb69d71b8fd8fae", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2572ba37e7ca15dfbffd6e79e6213bf", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a7909849485f985992c15dbafccc579", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eabcb76a7dfb8a3eec6a4977a6dd8395", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e28ab3eb3a1a59de04441ae1e9a27d61", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23c0398600aaa0e47b359e33ce3c4976", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "019809aacd3af7d2b7d7480a27aaf721", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77472fdeada7d67233d72b73854b3097", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a73cb05cea3e4a8e4fdf3725692b356a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35e6b1a059cbad725b8ab7872f705643", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28b7803fd206c489d03953be017688ad", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0440a7aa9d1b286443fbd307f6617d2a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d783dd98c147543875be51a43d820888", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "265711ea94d74c9a3990fac33a52437c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18986e90255509fd05d99ae5dbdd4a10", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c169ed4820118f411d3abba9a265ac77", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "518595a181e836449a28a8209af21a2e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae07086addeff8acbe15fddf03bb7c32", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f5905bc25018e6369ef7bbaaa212aef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcde61c59e88fbeafc2534f933f15879", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93f85eb39ed56dfb5f8463bc9fbf6b64", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f9bad93c7730183e13a6e6cba1db630", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5b6086f12c62cb380f8152fa8c28a62", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c40c2fcf7ef213ac34db72e115d0fae6", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45835f53cb61194584c6a8182696e3f2", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41923aec808cbc1aab6af3cd2e2648b0", + "notes": [], + "params": { + "seconds": 180.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8da2bef3dd225a2dc1c5cd6753d61cb8", + "notes": [], + "params": { + "message": "--> Remove Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ef6984ae2f89e4719972256fb940dae", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a79101db21600e8563b1afce35678660", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8ab3a7c995b0b1ed0996d5344063e68", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5c26091392cd0244e41c13c087a110f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "687ff79842c547ad3c9bd8a33455de53", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e811876ed2d4a981c168d3d1f89c0ed0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cdea46173d8ffcf25f4b8f1d889bce0", + "notes": [], + "params": { + "message": "Adding 800ul tp 16160" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1fc1712a3ae8329cfe3188f48ac51f5", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c9925f82d91107795265a27c6a1a9d9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08eefe9fd55ef66332440d7d724c4cd1", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3991f6534eb3ee452dd1613a819586d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96f3aef9511ed71ac41a354e54602da8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "521096fdc7d44a6b47ee4fc332f4d9ec", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "686d890e702efe564c24eb88dcf4e6ac", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dee91fb4135744dca48f7859eba8fd5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80697d657224b400d25743c2eb620e77", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ce0cdf67ef2c4179cd86b082145a25e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7236f17b819ea38d285ad555fde2f392", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad5ad790b9b039e3c792a2be60de2617", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2df78f08f598fddee6126225c11bcd88", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "422ed5daaf5ab3c3d111fdc0715725c2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0ce883bba8df9e8a4115efc105b7512", + "notes": [], + "params": { + "message": "Adding 800ul tp 16960" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee211ce6aaf2047672825859e3e8ad86", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7813c5e8c76376a782dfe911a8c7d5f4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5601c372f196c944da98c2f3e007907a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7d41bf80736c3ac851325ffe511ea1c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46c64682b6b4b75818742309ab0c9586", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "433c4700c0780e8c5659135354ed687f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37c3870b8c85d1b4383761c1255b54ef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87b48aa270ad4bb1305cf6ce7879c900", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "154d07843783d83174cc3dcb2c9463bf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57c90865b3ffcd2a862d0b72c7ef9fb5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd3b4647e4d8ff9e25dec574fae623b4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "322a831ff3ba74c4c12e3442d82b87fe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8de2d4ad8e07224df365c150d40025c3", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "245400c865e13d752d39d373002c8862", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "898d15a71838e0e0912f3236303f35d4", + "notes": [], + "params": { + "message": "Adding 800ul tp 17760" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7b786df3a009e1af86930653b613820", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d45c0868262bd34904e3c4bc61b3bcd6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac952b978c8de52026d11ef3c01949fc", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78a9ecebbfa47756e3a6da22dfd5a725", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed0a4e3f98016da2fe4e44dd76945583", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afab29095d0809c6f92106a231fa1aaa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe9a54154c70f4affd441ff829d5a1ec", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00e345ceb3f3533b7da99a8795e12b66", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c26f45178217930ab6b1d0cce5afef73", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e003e4684a37e362956958d6667bc76", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fcf6fd078dfb6aaedea24cc47818e88", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2abcc5ff49c4f9cfffc116a236031939", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f52cbd0d207547a64da0506b9ba1245c", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecd367d1dd96171b7f5ac454ac449ded", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba808cbc99a7f852e1d4f0a7f3ac5fc6", + "notes": [], + "params": { + "message": "Adding 800ul tp 18560" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e77f4dcb98ee2ba280f013308094402c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8381acc0642a894e7a1fbf314a335d9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37db39027b75b4a6a6cc39cbeeaf579b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71cbd3a2da6aa33dd46f720793d55da0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b665c7b47cf50df4429b08bffd93221", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ae85371e8020c8af2bea5db9a59cdc5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61b4d3b0982f68c31a309f3cfdabff7c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7d95773eb18d5cbe13ca834f7723a52", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5d762a6ff258c6f0fe475d4a7b597d2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58c73dd62f341acf37f9e329069f2bc6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cf5be7afc82f952340a962fbbadd997", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a39b3d7271f4a6ae41ca3ed47fe56e2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "332d10ed778b1511c6228a3d4317c2b3", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ffaf0f08b0a6aa382c38f87f7c4abbe", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87eb6b7d48ea8c5d57c8070504c8d377", + "notes": [], + "params": { + "message": "Adding 800ul tp 19360" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a025daa433b5ce48413abdac62282f16", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43afbd7cf8c1d8f98509e1eacc6d5a73", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47fe5c129fc25c63343e8e4df9d68b88", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0eabc551695cd124a2dbf0d2d8bab20c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c56e4167e2de27e8732bcd4e5c4cf30f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "468c0d83cd6f3717cb0dd3a3a13c0b47", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3841d65b284c570a4c133f8fb8de0834", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36d108134306cc810aa655883402478b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "879139c3ac5502add015c9d9ba1804af", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b90935afda50fe3aaec2c32ea346db38", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc522fa904cb287e8b713add29a07beb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf7016198ee29c7b0f2eac9f57fbf6c0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f13fcb5ef23a7ce4bc8c7258c24b24f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9df4dca163c8c4c10de007cf15f2bf5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c7b17aec1e9ed1e565880661f405994", + "notes": [], + "params": { + "message": "Adding 800ul tp 20160" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53e39516bee2cadabe35aed8fd3b8a7f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22597dd143e74432608a0ab20bb18b0e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2b5b398ad0cd61fe879e135fdbd3b83", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7474872d7a3c7871bfe1d889b7f07f8d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1efd3056124aed5b346e87f7c76f201d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2280a85e3d8f7f8f60825209cd25b075", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e3bf1c33756f3ba815ede60e75c4f7b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a5b4a3e53296affd065a2b7376bd3c3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "344be05f06396e5946600fec6df6360f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f22afee8e977a62e266ccd9bd5a8413a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b27b26e68118b462611da00555c8eba0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0652b294dd8e00cc115f7b5fb313a07", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4ab178cb1a4e7071f29b783305a9b71", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cf01b32693134ef52c787ff7b071486", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6fe4c88cbdef267d2647d6af47dae5fc", + "notes": [], + "params": { + "message": "Adding 800ul tp 20960" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1c7585f8d01b43f7413c90ef9c50520", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39170d3e824eedfa4abcb1800506a9e8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd812ccc77cec7ece1997a9353388238", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bba9ab09a357e65ed9a25bc05af576c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c19d17bff0f124c123ed80de3c7f1f2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dffc7887e95c3b432e1f8bca21a0761c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f983ca46e57657b1738f965d87dd5dc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eaafb220cbc4eac0ccdcff16df2981e9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e89f35bbfdfb758f87b782fc78fda3f0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "327bc1ecc252ad9db994be910d137894", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0eaab6b13dd101f13fc57107cdd1ff1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe6c6693465806b63e44f28a6da00139", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d63c58ee5966557e4061cef3d120ad6", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6599b31fedc7a5cedf09fdda3e265802", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b71d34bc9f9ea013b0daf5f9e369d52", + "notes": [], + "params": { + "message": "Adding 800ul tp 21760" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0476a69b323f290df72d526061f8d71", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11f95a2feb12505a3a6206759395d976", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a2853ee598af966c5cb4d6fd095f4bd", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c9acec88f2fabedb4ec0c48fe29ff8a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfb8b1dd1ce19db5943287142b20964e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "758a743b770d4e0a615d2e0a52568a2b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f49195ad43fc48a84acde3c68600cbe7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c935d697394d34d3031dc969e0f94933", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6d01aab2f22364645010a3caa4bcd77", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ab749e14352acde1edff6bd48389a76", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46e89ce542791e05dfb2888b4add8129", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3feb5a974708a1a669aca7f79b3c0544", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d996d0bd9874b5e8fb75564ebb49713", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cdf47e78c561d598fec7abbee8a26a2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c69920e01e8e9afa8868ddd0e90baf92", + "notes": [], + "params": { + "message": "Adding 800ul tp 22560" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52516515a7f696b3bc841f06e851d1d4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2db45e33521fcc120ad3d47b797b5b2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2946b713e7e19b091155fcba7b7e5c12", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d08fa8c3ae46048052a918cada3ef756", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b4daee9b1a7b54246d0a9c2a174058a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eae15038c490ed2f4c1ed8f138075895", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7b0de3d16ba8d380779b28dde0eb09f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eea6443e69c1ebfd09e4e43928bb793b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0218ff4b074a6ff473e0412d48a49c5e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8dde97da653ae5231931338ba9794e64", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9848e535d0d8b73ee4fbe5622bbc1350", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8db50116d17570edcba9bc79a0b931e9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2f9e6104c9643a13d694ab9a0584e81", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d7f9404be2c76ad7e41ddb1dd9ab802", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c10f35fe492ede7100f767f8ba2462e1", + "notes": [], + "params": { + "message": "Adding 800ul tp 23360" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7d89cd348c2c705b51c081cff9a4018", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8538500aeb355be830256baa5289d100", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aa74f505599479b2ef6f9a6798441eb", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cbcf8aa76b0a2380d032c3cc841fbbf", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a97dd89b7cd3a05c0b1ac0bd3c4aef5a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9545a5cc8326c44ddd35498fd2ae164a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00a4c203d54e9f048ed3e9399cfdb82b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "992747902dab83aad6141169f4b1d8c0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc7180f71659e15eca6b4d3aa31d78b2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33537de4f4171fb321d0c3fe45f92f08", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28d83150cd5554d37d6839f62ba19efb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d38348d893b86fd74cfd542a75648047", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c2ab1e5e7107610ba424a9e79152d12", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84e78b6970ab8c3b1f335233896eb3c8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e8097370a887c0cc403592d39eab0e6", + "notes": [], + "params": { + "message": "Adding 800ul tp 24160" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bef7221d9af95996d3a279b038a1326", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "597b2935e0ef992b6a0e590fbddd4986", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b46359dc44c18215fad55dab5602fac7", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d49b6d2f76aab4644368317e1204645", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa306c5da329bafd6d251a1a6e05266e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "296c34956de22aff5f7828911bea8994", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49e54c80cc57d770d0bc1d6c6eee6ab7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e887ee98e540845248f6b663cdddc2c3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38274ce57365d80b02653c6d6368cf31", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9aac55402f1ea8b6c1000adb7d85638d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7eb53ec58d8c179cae9e139dba1c12ab", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88c76c4625ff2d25555920180af63b6c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f77bca585c6daf6cc55c05da204fbd06", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03847b446347034ab527ea51f7bd5245", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72572d1868d019a79977e2f93544a2cf", + "notes": [], + "params": { + "message": "Adding 800ul tp 24960" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "759697e4885567a7c771bf2138f3a146", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00e64bdbfea885a0a6b3a243e8183102", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad4213da64d2d41e7304ae7ea1851c5f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a5a842b40a32cb6b03ca32c795c84fd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7096a3c73e55cf2b36025e4ec8867200", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac80a7dc32e1a2a832ac470d196eb021", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a37e4bcd1d32c08caedbda12ec241cc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "058ced2c5407ce7b6783143a817f2490", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10db313668813738fc72d8a5fbc5386c", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee23c9e11584c44a8018a891d527786b", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02ed05946e460286ed4266dbc1a41df3", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b20aa0cea20737af2bbd9bccb3dbc62", + "notes": [], + "params": { + "message": "--> Wash 3" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c9561a3cb1e267d147f8bd8c0e3326b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5295e311c122379a53720c8632bff381", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29bc799f35b0ececb0164d4855f94acd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee803486ea88c676a165cfd7e9f238dd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "453a7ea8a772d3a091db4dd39f74987b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b51e080320f3788dc06c46b3774791cd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36e2cd056616501b9ffd3303a9b6046a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c65b20ddadaee55b6ff45e2c7cdedb57", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "004f5c8c3c5a88aebd4aeec9cf811850", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbff582be2fb375ddc04121cdbd5bfa8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d6f5ce115500a6b4786c594636c4307", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d868aa656c16119b83dc67d6c3e7f5c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62c7a7a9069291a85278c5ac1db8dea8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74a0d69b85990e5c6796740eb550486d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0dde543e8e8cff61cc0e533b8cf02f81", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e577264e399c11f3d8799cf4cec9254", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52f224059ec60f43f64498d5cb00efb7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35ae1ef337ad6554a9f95155cac2b469", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92695dbc94b0cbdef04b77a7c91cac1d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ebd34b668ed732902c4a845c46fd7b6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a626823b4ccd7a146096a4f1c98cefa3", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b104fa9a0d7704ac8e85569ac3b9d87b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d053c14874613a8052fc0690c416828", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "595c014864ff8dcdef85c1ce22daeb5b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa41971939f0227fa3b1840971013dc2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "825a49a190cfe4749c55a5a6bdf3c53a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec8ac09e873192cf20d33b088befe4d8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0786354b16c4ce899adb2743c31e419f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d80ba8bb887397dc5ca24de26f78b92", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19b7ae87d911f5d18fd39bc765faa38d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0af1d3ac02bda0412e2b49535ec18abd", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f90de7025f8a94d056b6ca8007026ade", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2bdb5fc364f6d5797dbd891194add39", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ecce916933ed98c635f70666ae15559", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93cc88ee27bee0898d8088f7d8cad9c5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c7ba6b8accaad2b5e737b46f2b8d288", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ec3feaf79884729f174232d25ac9aea", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da6afc8890f572b8f8501e03ddc87707", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55a8dd7583377c89dbcce5a13d471fbd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "833e7f6b93dc138d6955eb454ceaee79", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51901123613c3a1b6942e9cf53e3ee81", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd250d89bc20df5bdd680e52695131bb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ce96e90f369b419f643da5f835a97b8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b678c05a15089805cba79c35a08bf0f3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5554b7735e9bc4a38f78b5c3cf97a43d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c9195a3f369346c0c00d18d2fa5b7d0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "769c258afa501d4aa82374eb928c668e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "031607f459d8e54f88568ed2bab411c2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "809a48da3fd1712ac782463b63796468", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd6bd57f72ac31db9910644e46a0c225", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edde1f5c15ed8c144bad1eb12f223f81", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b25c754758c6ceec834f212e380b7174", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46124be79fabd1b3cb059dded95400ec", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b973fd2642ba3c2a092a33da49578f38", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41a7ef7423c778c499e3afbe7fa2be64", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "033982853df2c09a8477d78232beffeb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68635cd228e09ca2b50929793a477cae", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "204c177f27a5b12753634396e8a5057a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6fb1254deaf86b38bf525b46cdb29764", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e56efe3252333c76dd68059d3e5a193", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05de4571f05621553421c54a747b7482", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fa0c48c977d8329e5f92cd079b27200", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c341d02099f7a9be29d38f130aa11f6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f50213c4da700acb75cd030ebaf4a15", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 200.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7240ade8664122c67abad956e200e9b0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 192.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9ff424643720c70e627f2afb73d7f76", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b10dd4fad150f75ee92ae5c082692ba", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccd6d96b980f2bf8bf66e8573d344c5a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f36f62a0b571df6000fb489c41b7ba21", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "684ce5cfb669171af1715f9aaca890f3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7033a61dd5d7fa7b58252454a7d99cfe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf80ae3b9c262cca0e48ee2a547b37f4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5feac15667743ef525ca6a9b32da019b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cb5d4344058296a98c1bd78744c9b10", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "469983dc79623879c692ef2b3111aba3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6f2cee6370392b77a2f9614276784a3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cd955a321f3405728c993b9871d57b3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4254f3ebb9a1040a9647159b1a7b842", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9642abe5a059127479e16e86e95f3857", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e999710a5e30a2b83b47813ce35abb3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8aa77135dd4fe94b968fee4907b152ae", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "956210e204f066cb5ac9adce820e0692", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd24ffc780b52ba45926432dd79a445d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72b4d86d1e72de908bfa13e1b5b7086e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c584de7510d8834855afc79d17825677", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29f8a163b6a73968097147ce9b898dc6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "939cbffa8e61ad8a0ad576fd19a51c83", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd45c00986de957a00080f96f5263f37", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0cbc5516a635827edf6e8308070504d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d405589cf8a7cff41ea9bcca77f2706e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7bc345dba2cbaae9bc5fdb3c095ffc8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da0b143b4e650d53aa3edc9577109b2e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7e6526d6760895382530afa510311b2", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "127819dda4e1e454f1f90970cc56254a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f771c28a2bbf1aafda6b3e342ce37fef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bc4c7dc418acdfd3ce19df91d671baa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b16260793b9c32ee41ab7b0f0c98852", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67b25d5b071141e386e055b1b0bc9b77", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2622615404e14c42a3e7444adde350c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c4e336e6af29ca56ceea47ca748d799", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20afe170c90ec1b52bf5ea68885b734e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "513cdc578e306caf232ad5990b6848d0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2be4fb0c301018f34ca6a52208e6b075", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c4dc25441f44287f9158df616f9a50d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b9e10c9806a88b5ec2db74ed8de79e9", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b93b88549f3e877ed305f6105d698ff9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acc3c336a75e7c9b465b2277437d569e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ed86aea001f425ace5b846539711f94", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7f70bce0b3b1054bf556319e4a5242d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "730a5142457af83b382cb39dd137acfa", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23bfaaaba820f8f4b4f0edfd2b0cc65d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7625e5290fbfbf9ccd72592c8a201f9a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd9969987e0674a813b0dd64b5dc13e8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee31f40bf0d944b0420e19a7b6a696cb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8f044bf9222c26c9c3cd2715a52904d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc8cd0753b29d2d94739d762274bb683", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cddafc094dc13f181bb19712a171bb16", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b32b45f6408e203b3c5c657eea67861", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc021ea85ecc70675057bf2fe9cd45ed", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55e43c16d020c7f014ccee868d42f0b4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cd12a62eff7c058f2f610b68883d5df", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61e08e7d95a7aca92c9244bf3ec3d456", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b49a95ae77607df805c417a6b303ba1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08c9fc89fe85d66f8420577cbed5a186", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e691ad36d0b4076e143b2455ce6a5b1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74275788cf64d3c49f590f37c31edc14", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1241a04c059024b64c0af65cdcbbc12", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f871cf3ed205488f553cb0c29c95e04", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0233a3545493ea99771bfd752143983", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "292f814dc75fa5c5cd5a9e8b685ba742", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69466a35f66d2397369dc80ddeabd438", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dafa6b08e83f12070179fb88b687bd6a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86a32aec03e6f305fb202625e72a8343", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7560ab73eb72516ec0cec99118be23c0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 103.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 103.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c97933e27bf654d03ad2092569150f9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8e5fddcdd0834a2844cd79a8fd9390e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 209.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61e63dd6c97d3a7d46005657d06dc749", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 201.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5f24e8b2c76d4e9b24a224329398744", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52a9310797e87abd62991cad71d44cf6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5767b119e2eeb9f9b8f3a80275608680", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 60.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ea186041e59dd276fab7ebc3f809a9d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dabc36d48e8898e74d3d2d194b98fd36", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ca38697176e4f697fd4bc0bbb79ca8d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29d66a902cefc46df17c07f1f81d10f7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96dfd838d07197c5cb3af2e8eb319ee2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea082c2d0db1cdd0fd5cf3af5700b262", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bfdd0963a9042fc98e7a49f05eb7262", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb01cebca3b2f5b6ef3b83dbf860a53a", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "108c4d77065e2aaa36c96e99b8608066", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ce6d0f574fe40a3dc29dba5c996817f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fccc9dae2f18d802ceba507779cfcdd", + "notes": [], + "params": { + "seconds": 180.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f29cf59b486ae9b39e783ffab724ddae", + "notes": [], + "params": { + "message": "--> Remove Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38ee7db2b2405eae1ee184c6bd4d020f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "484a2bdfe8a7cec364a9a39db6ba8c3b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96ab8fb208adc5cf3a7d1a3dac6cc779", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a34b99a99c85fa22e27b92e99d23f3d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14185a81538fab149817379e076061f5", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9d33be7930c99f7ab724052a99e8df3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffbaeae80925c3e431127605d7191681", + "notes": [], + "params": { + "message": "Adding 800ul tp 25760" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea3bd4ab64d238f6f7539ca36b7921c1", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f2dcdf5cc992f15f16c057b4cd1d7f0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b9093d78a6fad9011d1e69322490cbd", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca14b4c2d68eb409f61098d4efc9d1e1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c76f83f97d9a3311667043d03a63214d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "052e72e1489cf4fa60955d30c1426dd3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "624105daf14c7d9be0836ed44e2a47e6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca57d5cf6aa4d87dbdc8b3926bb0f64e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6208c6e43f9d877b35bb79f1c671e3eb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc3b57d41bfc783f49a3501a03e01bcb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "419bff139f9fb94643b177f3f9b14684", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36fb5cbac7b4b9ced13a9c2246f5a508", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4793b2e2948d3071b6068600b729e68c", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ca21ab22d7552db1e1eb3098147c674", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3723af075709669588980dd00dd030d8", + "notes": [], + "params": { + "message": "Adding 800ul tp 26560" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fd12eeb462f72d8b0e8267d3a108eac", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0762b53980ba7e4a29000e9fbf86874d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52d9d20e6bc6060684e5e746c655fbaf", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84a5e37714ad2594878d6605a6ad4c67", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87c13c9d40ec4d41c3757bb8ac6b4831", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a6ca2419619f5cb9fcde7c483dace11", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "202d26b9afa17cd0ca60378fd12d840b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b9ffa834f4f046fd556291a5a4f6dd7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "679220845ca1f6627733ff2df9dc8a91", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26a34507cbb2f39e24643d82060e8565", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "778e8db28cad075c2cf1126e389d512a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e3268fa484674f23121504af9c49d4e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7014f8fd3af363bf2fed260ca078d1eb", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "444c0abeff6e1e3240cf4164ce7a9daa", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5771c169b65c7dd6dd7870547881b745", + "notes": [], + "params": { + "message": "Adding 800ul tp 27360" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee2332de464aa4a355d6cc2bc17f9d16", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2201fff0158eb5a06621204423806f0a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed0f5170b8a276a28c2923091df132ba", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae15c6579c58c4621c7e1a39f2a75303", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3ddede14a841925eebe56a70fd6c9aa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a645196efab620c2ce133a61d626d10", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fc778b6af7280e8218d3c04d0484718", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e2aa1257cabd7f9e7d49df5942e2365", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74dfecca6b22968d7c69da19fbaeaf3b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14e15f77179d78bdb556a6cb9174f606", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c17680f55f1caf0a568c5ae3356250cf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ddf0c2259fc954e4df3199d7ce7f5c3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f03de25c8b6a8f3d1660415aa487db42", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8dbb38d391e3f4e38d7d09dc865cdb3d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2dbcf4813f301fdee90f87d9ada4ca1", + "notes": [], + "params": { + "message": "Adding 800ul tp 28160" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68ff0e930d4f8ab6a5d10b5351ec2ec5", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "705a5a336a1b956a1c5fe4f56f84d832", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "181347602265e40a94adff27231f3d0a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3dca823239714a42d7b5618bfa19e8bd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb42fc914dccc7dbf73c92bc6649b924", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af35ae76ac1799b449cbafd0fd4f7677", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bd7499653a3a62f5411555d0fb3ce3b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b2734c65f05ccf6b533babd7cb78947", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74cca890a843732d06821f15f9aa66e9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0075a76d6d2e37c4e8307e6c2c714ae", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "884c55d8b2d5f60b93e06585de720a7a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "550f6fa94b5a05b5e3f1dce7a9efd3bf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a2a715fb0a440a15d4b1e03ca62420f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4e4b6f92c5ed20dd6982856b5011013", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0781064c7e93913d276dcf6feb1e710e", + "notes": [], + "params": { + "message": "Adding 800ul tp 28960" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "040ef1145b6b26ca6ea5215fdb183d5c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b5dc2fc32c09b95dfff2fbae13aa85c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc9d6147ddabb16ba6f2d4803fb2cf70", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b579806af203bdc48e6135461ee6cf34", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5a9b715b493a60548653d04f92e71ef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "235949d64880e06de7382c5c41729c19", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f35165095ddaf634fa1c9d9678e45e2e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b2e70b468d1b3147ba125bd341bcaac", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b14df94be8ae8b49c618baa4e71f783a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "342a8903bce113decdc3df5583cb1377", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f78ab4877b6dfeeac6a2eef7df311f15", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed2e044da7a239d734557cb6ada1e98d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46144446d080def4f8b021f8896d0504", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6e19403b987943de5ed881d3c941f66", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d594ba8f78b22823485caea954d90822", + "notes": [], + "params": { + "message": "Adding 800ul tp 29760" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab4a54f5da3989784120b03279b23a2e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32be4557fca393646ab0cc92a7778eef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6227cce155dd30506e0d749e817db6b1", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1331c4d2d5a19e5f26cd255c6edf857b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05056b5a1a54e7f5eddab6bdb4d851d1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b38f2052917ff9ba9b4f88cd8316ea0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fdf7f40f3b3725e48d58845cf1ac9a0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81fadfa448563b9d0576d67f09973ed4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1f92000eb69e81b7a5c4cfc6dd12506", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33198b38fd3865aff0ee57b1eee61f3a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d222a08465af70c71ce27cf33af0732", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7e0042acc0850e5675470bbb2116938", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7410f91048127743b35adccc49602f7e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d304a0d742777f36222341fca18525f0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a3a65f29398ffdea739556f193ee9a8", + "notes": [], + "params": { + "message": "Adding 800ul tp 30560" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7dfad4886f7771159a2d63465f319a4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "877ef3c21ecc591acf8713dc20b37fc6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "025e7094128d5f1357a19911c212f3be", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66047eea12de8d3d719535a85715c45f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c84f35ea9090be96550c315a6ca372ec", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c62b64e3537ad2beb367c8217d8c3d3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37b8f1132b4e192fe9314c12c788c851", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac9564d912782fe5e63cb30ca58da8c1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0d40cd7be4300983f4c171d844905ab", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2801ec2fdd4417bffbc52e305b46b18f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c3dca1c0f28107ace6de9e76902fdca", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "763f6907863e683978af1b154b789617", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb0e878d066b5eea040554698c448e1b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3cb907798fddcbdd8324af0dc1dcafe8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f19ae0018c1195d254d2650a48bfc51c", + "notes": [], + "params": { + "message": "Adding 800ul tp 31360" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da3126067442f14886feeed6bda0512e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c765a31ecba3719556ce512a94f06af7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "632683ce9cdc8710bebe84da2ade6a19", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3875b041b32d240e942e1d809906476", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53270513490f277ee8a050ffee397171", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f263a7f920c0277e19662f347c399a6b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f18a0f5d18895416e68803624ae753b5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a88bd82df06b71fb9472c50cebdb6bd", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b98c9ce7ca53151951551f3320f7eb7b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c07ce20f4b4c3062a2597259ff3c3d6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9148108cfc2d7b4d31340f3d06a5f5a5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86dcccdc89cd2ecf75e89a703bbd05cd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "838dbdd0f1013ccbafcf74838dc8b4ae", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d1d6e4286785025b77422d0100ea2da", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f7ff2d57f105dd5c06aa960173621d9", + "notes": [], + "params": { + "message": "Adding 800ul tp 32160" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "baaf268dac4bcceaecdced0af206fc88", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81e7d4d0c6e67f3621bb4ea98abf81d3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a549e2bfe6eccc31157bbb6a65860d6", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7d4ba21ab0b6ecf70fd36efbb46ca18", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a70323c16dd74b85adae82c7e9b239a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d92d27807a59a315b639cb44da13e71", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "637d7c94dcc9d8cb35a61a2208278194", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e892d70ffeba05fc0f8cd63722aa2d85", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25c06c8034d247c6b047c26e7e4cf1d0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "051133405be580068b9a32096660e7bc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0780bcdcfa25f096ccff57b771db87e8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e82cf16591aa70cfc95e9fc1e3b22e05", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "624ed3aeea9dbecebdbba9b028528c52", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff8e67004f68c66aeae4915bedbbe446", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "862e8165548bd3db45be30563b73078a", + "notes": [], + "params": { + "message": "Adding 800ul tp 32960" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dd1882d81f20a8d2d6aa1deef2d451e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05fd2763149419686a40f2bf6b3f749f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d15a5098af8542e0ef72c7356c81635", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d5ff1130940b7d5126a9e3099d370f6", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56dd49da3bd3a2fbf30a44012c18930d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1334eee6ffbbe932d13a09f71d02108e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f27980f3637b17130ef95aa52d55fcd7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ea7ee487c8820f09a88a57caa0b3bc4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f216734e8451e138ccb93df00a95b8c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "932f9981a5894bdc7f5e8a7141d987eb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7d9e41610923bd5e0eeb3d3b0ad271d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4aa0005b433c14bd9ca88233c39b264b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4afc00ce8e1fd510e2b240b1ce68f79a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b07784797a95de440815a2a7cc6608ed", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dee537136110e3fcdd8c81a0d7d70c0", + "notes": [], + "params": { + "message": "Adding 800ul tp 33760" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d372a63874926c2e21f30ae682a503b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "742b2239c320d1f24231d0e32d1d60eb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ff79366661127d85490d6ec8c906760", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cd14313741f9e33812e704bb8ccad45", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "761a144e73449b243db3d267ea86c781", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8644bcd2841c059905abd9ab1702ee1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d447692ddcb2ea2fab63e0a300bfcc4d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62b71cc11e6e4b28cd497628f566a00e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb2358cb2ff162802f6c75e8e907f340", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f4c5280b5199bf61d1c69848cec0b8c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f8739addc20248abb6cacaa410195fb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 110.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 110.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc5c7aa9ff8ba7a975aa0adf32080ff2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59aa99c7f3b694fa38f2624d70005e23", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90c620c2a8fc9da1e5215a56a079538b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 90.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 90.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6902b922845df7a607b45e27bbdf8a0e", + "notes": [], + "params": { + "message": "Adding 800ul tp 34560" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59a8af6ddb406b6cb3cbdc54398290e8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f984aced83a9039817df3f4e98258062", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98b8ad6f205ce58476ecba56f4e94644", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41368eed7ba3bf6858076fc8c013f2a7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "451c013e32dda0fac243b146dae232ba", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5fde38cc60af8ad84c0208790b227a5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91f90eef734c5a471c3e495133faf604", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02db34e9fd3ef174e1cb1fdcdaa6a110", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83dad29803d0475fd16645a3fd5eca32", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a4ddf530631410a2caae4d81f691188", + "notes": [], + "params": { + "message": "--> Removing Residual Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2300ea921e394ce2845f6a139eacdd8b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8ab4bcb38dc64e686582548dc27e74d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50ed91d350cac18922e8472a8ecfad88", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9847e2ddcbb88e2126d8395db546317", + "notes": [], + "params": { + "message": "Adding 160ul tp 34720" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bbe501f2ecaa90292b130fb9242c74b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd502f363a1f055c468128bca0515ea6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88915499e992b469ccae3c361506fd65", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e59469c56f4b2735c15e4596285b6d1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c1127b18977edb0e686f043f003f796", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a36eb1dc67bc821d9a38dcb876f281d0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aeaa8f76fedd62777355392f5f2d974b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "117275edbcb893c9699eac3366b55b25", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "171e3238b70c77bbbd8060f1593d736a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c61de2de4e1aefc5c8d60f4b8ea366a4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fa75cfaa1a8ae7260fed052ac4fa3ca", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c7dbf97dec32503ccf0b1e53779caa4", + "notes": [], + "params": { + "message": "Adding 160ul tp 34880" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd404ce5eeebfcb2225797938ad0a34a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5cfb419cba79cb4ab278f3b9a9c3054", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdf163dc694d9d7206223abbb0025e9e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7647942aa2f13c30f43b125b7bb9bb37", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06f7b65b0c7bf7f25b13da561a61bb04", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbbb85f44b8a2dc7603f7dccbd2f0184", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd1e37c74eec5d985e384bd55882a12a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ae72cdb2a8951dcefbe920b69e08e52", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a8d45589fda342926fea9cb56a5d1db", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b7278fa501f19806676c27d4638cf9d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aefb1acd4de5f036eb783fb9c4ac7e6c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "968ef5416510ec3c51b3797d2058fec5", + "notes": [], + "params": { + "message": "Adding 160ul tp 35040" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ab511f308173116eb70375f64ae72bb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0af73cca26556011186162f6fcdc74a5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33760f0f48e58c37af048c66d88fcd4f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67a1a1c5fda08b1c2bfe014158aab3aa", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e69817edc2b6e6ee54998923e7760007", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5158225c1cdd8666971baba24d7a58d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d374b700727628b86fdc6d1df5639afd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cff52aa2c23fe0ea3efa07d1b82b12b6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "393464fe853b4baa2dad15d1a8d265ec", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bcd342bb2da947d2e3ffb1a0240b57c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a28f46859ae3a3f2b77c5b5faeea5472", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01f0f4c72d4e27542edb2cc7c8424c1d", + "notes": [], + "params": { + "message": "Adding 160ul tp 35200" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb08deef5fa7a723e743c90ed0418ffb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "466fc243790cba8b0ccc917fbc362252", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4269374f2d105a5deb89506be695fe2", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e2664a16371d684c1aa4a59419a6e13", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e1d28c96b92755c49f5d214f783345d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16e1a5e7c0ca6f20446846512839ea4e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cadf4909c7feea5e6ad199cf7ac061b6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a35d3570d4c2d1e3c0d2a29f1693efc", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff3bdadd205141e3bd091dabbba62ba0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "636a41827e5d1322bf84783a38cbbb0b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9763cc98052580be4ceb63c8d81a0438", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8bb34188f6bfd93f93714034f7595a9", + "notes": [], + "params": { + "message": "Adding 160ul tp 35360" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b633fa22e21d7544c40e9b0b3695c46", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3177ec916ef3d9270e10f9c7d35effa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "009ad4fd0b3aab47c91f0b2dac6ae48b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5132acf0444d4df403b6514b8b63e063", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc8147b1cc9bd30eb4cb0fc58cab073b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9241bcc8b2b71a7979419c336311da6a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3000cef4efeecb62685ea3e355685d04", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9d0893d329d8a4cc48d85c5788ac1de", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c1c1c94575dddb5e0c431c26b5d15c6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c5f2e515b80f5a7f2504c72ef555287", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7f84732a82fa0ecb9a3cdae30307f0c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49518b1c84fc66fd2c4c4fd66602be8a", + "notes": [], + "params": { + "message": "Adding 160ul tp 35520" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "578db6bd5e577522ab0ed35325e0cbf8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dd78a0fc84b3b01ef78518cb84ba1ba", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9f38206a5b54f103bc76644095c4f6a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91aa170e95614ad454e47a89e78eb36f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1318eaacfaf18e76803fe5fa7f657c90", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3949e17719175653bc8692b419ea29a5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d921610443b6155e922f12cf827261bf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9387efb91cd02b599b31f6561cf4a6fe", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6286fd130c06d344e0d81d12f8470e9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "556acaa6704c7fd702cca85e162f91f8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3972c194fbc4aba5760805fae4a7ca09", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc98e22eb1e2414396e61332ffb15648", + "notes": [], + "params": { + "message": "Adding 160ul tp 35680" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a5a1ac00ee0c747757a8bf679478332", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aae2b608fdf5f76b44de89bd21bb8a7b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b84fff4db8c5239988780a674197574", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52666ad05f97632102b6443dec6f7ec1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eaf8f18a3bb12aa7be01fbb5b49bfe53", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0311895f50bf0f3f22a00777bb87226", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec16f41bb75884d0f7af62d7b561d32e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d847f199423d029ac0a59ea3a7a302b8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "290d04064ffa305a9aec3fc2520dfa28", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a4277c2df57027fe2747717866fb41a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e233866f183427daee52e3c08a96895", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31f17066d620beb3737cbb5291d64172", + "notes": [], + "params": { + "message": "Adding 160ul tp 35840" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52b1ae9a1f988ce5c9bd2857755adb20", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "049bd73dda0595927f27b7661b13e510", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e67ace7bfff7564d471f17eddbc893e2", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96edec26b2159cf8ba6842cee2e6cb9b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41d2f72eb4cfa078ebf1cd7e64ea2592", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c3a658124a3c78324d9e830df82f940", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ab1a781e49ebd2f1595e43bc269d3bf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f28954ee9f2a848ab3cb1506692cdcc", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d10da602da64a36c9cb62b648495bfdb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a06b88b79f6463f889588119cbcfcc4d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53327d9aa4caa181b138c45f8ecb128f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "173a4b5427812ed11252da65d7689e07", + "notes": [], + "params": { + "message": "Adding 160ul tp 36000" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4cedfa56d3bb2972ff42dde49e88f7d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ad4cacf0bed6ed3e01eff289b45ddb5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c2aaf0c44758b1b910b6b27cf894e13", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52f766d034b6b364f60c3433a0ed0fc0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfaedb3c9e349c2977b27e623eea359a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c8e0503c7bee83d34fca756a1d06437", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d59b0e968054393cae599be5df934438", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a03249345853a0c2f4172f4d12b1b4e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b05a5c4ebab67ee5f43a824bf80198f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ba1dcaf5443f32a79ef9b2a5a499ef1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c25fd21685aa24a7775a22929ea2760", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "042e106dc3d529979b0ab0e88064257b", + "notes": [], + "params": { + "message": "Adding 160ul tp 36160" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "393b7ef0c03945c65f600c215b6c5929", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8f5f7d35304cd7429913f7f873897ab", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d70a432ea3b1fb2091b4b4b2a4452f4", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46e981a9c9f6e7854c3429fe0c811cfc", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39431c45cb0c1c84e15a85a2ddb4b939", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "606bf5312c1ea3214f30f3834dffcf4c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9077b4802a9fb03a582dd63ebecc15c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c893bf70e1a59c03463560ad3d9c7f8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb6fe1adaa16c73d94a0328a5c3b6ee6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4fe681ebfb302488f4a19ccc21259c7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7a9a66e96fc48bb90af82f28b69b5f4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "569ad6cdb76e5501a71c2251fecd4df0", + "notes": [], + "params": { + "message": "Adding 160ul tp 36320" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afe23cada3832584a318a10e45a1dda6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "621b32489b722aa315da3a86620f4568", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "649a71a12274e63a55a294206173a85a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24285f3b02b02bacc89863d0ab49e025", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b75953d2dc093a00bc5ffe7687eae84", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c05b99401706fa9e79b31c611b57c7e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4005babe9b5ac5318e11bd5b0784aee0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58601974f8ac82afdb4bf049c2214f3d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7a227862ce3f328d493c8843e4c184e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3598bca545e767ef8e2db001f5faf4ef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.540000000000006 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d1899f1372db0f4d31930cd87ddc7a3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.8 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.540000000000006 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b7204f93161ae563a92cb5fb06648c7", + "notes": [], + "params": { + "message": "Adding 160ul tp 36480" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8067d1fa812859ebcef40e6b85c38cf", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "204c096a580329d9fd5385537f853482", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73674c670f282a8b42968279336968c8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e96da60535c3c70c4a747e0c1f84612", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a25f2749085d3f1d1ab33fcd415355da", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3b861eb7e51ac5e4ea328633b3f4853", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7cdaef6114f9eda10b59b12e9ce561a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3659e72a8d9399676db819a8360fe00a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3246587cd269c1b63776b78b57b168c", + "notes": [], + "params": { + "seconds": 30.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4353312f2a5ac8e79f3150c021fd5b3f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf21576c6de0f6be21b5c6d1c80cde31", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1c32f3f6a3fa22338714a9ce05cf2b8", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed946d94f3af4b6b51e4ebb4a766bccf", + "notes": [], + "params": { + "message": "--> Adding EPM" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e812000967db3d3157ab395fb579a26", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61be378eb65d40558f4a3901464a3033", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c299a67946558b2b3b5dc0a3786ac50b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "507e32e30ded3d4f6e386effbd3c3efa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 15.34, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "714205ae715b099516b89e68b5f85b60", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 15.34, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "580388c7f92621fbff9cc396dfc38519", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1a7962a04df0d3e066124e11ef656b8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78183daf3e2efe1b9de83571f02c2d13", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "faf71375c10b890bbde3944c0cd4678a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "263b3d06a20507a76c9c76eea4f29bd7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e4677cfad637a9b3b31225fc5630ac4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bc3ae750ea420f100b0f6ed184d1767", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.260000000000002, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc2acda26381473e114777d9e51ba776", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 13.260000000000002, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b37fe712901aa15184df7fc46fcabc2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "555589e5b162a7c7cd1aff8fc1e57ba6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "016c750008f676d85806ba1603ec14d6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a1a45a7f97b3532b4ef68b56fd491cf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "063a45ec4c0a87e462945c1fda741e65", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1570153d389db75483c4e9cf2ac56bba", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54622ebb5d50d38e203727221c53df10", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca565bd2a5be587fd746286be34b5f43", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db51c8cf4e862a702b07a361d1b1b5f6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54dfbc5379cb99bda7c6de46a07ea7ec", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80cd772f7771368827d0de4c361f682f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9722269a7c9fb2a7e644b65898c18a18", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ddadd4aeea1a12c0b508adf8d2ea864", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd3877987020105e4be4dfcbf07995cf", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e142bba409901a7a327fc06adb3b65f1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c603e8786ee77f656e489a4e375a4eec", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "632795b7da975356414fda0e3bdbcbd7", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc7ed8c97f6393ffa3ff4b134e961dc1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 24.34, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a968c7bff85b8577375d3cca04fb1e9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 24.34, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12283706ebb8dfab999c103a8ada4c38", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a5917eb40d8e274ff52c4c7aac08179", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d12c6f873d4dd78b781c52449816c311", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f3c12ee0790893fa6beb5bd0a00aec4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "379225aade850c31f02d49004da0c047", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cddac09f9e21188eaf119b39ec4615d2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ee27ff02f371ca7e42d507008f9eaed", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 22.26, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d554c6a804a18266b764f9169cc3dd5f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 22.26, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be6165f54e91c76a8173d1c8d22019e2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fac896b53dd2ea24fad062416b755ed", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02d1d6f5e408e23caf36609dde11802e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40e73ed3c9b283e4944b2185f150f676", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9565cb58255036447d06b0663af5c6e1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21a3e8481b32ad4bb397f05ef2f7216c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78c3a00f7d684d2420286e15065d9081", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c6c857b85ca3353f1e57bb02827a500", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae24fc0151f2eb1ba98856803924b72f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31f99c42e5bf27506e6108bb36763493", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d7e853d2dd43245e352779301fad226", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bfe27501694b9b8369c8e99ee7f8a0b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88e62b3afe71dc37ffe03befd5e25787", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "547933d384103cf8c8def1a5c85b0a82", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4580ea7ed2bf17dc4d9898a2eb71667f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e9cc650b2a85e8dce8f9bc90c769635", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07b04f27a167c59328e6945e551808d5", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6271457aabb841b26763e6a5537fd076", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 33.339999999999996, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c71d35b6473d7c8c89f9bd482f31eee", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 33.339999999999996, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9ff2468292b4bc02a8ea8210ea14093", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7c0c1379b77a6e944107a50cb839b95", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5aebb6b41a9d5bce64c52ee9467da4b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b105ad70f28db104c834f73cb9d5db4c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a391c32a8615e0c397aed8e8f79b8723", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4341a3830104c036b93ed1f0e5405334", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6b7e0230da5c75b50e5304815088f89", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 31.259999999999998, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e145a9c3c80fec06da671cd314ab15ff", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 31.259999999999998, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b41ed3138cd03718edf6a316a0bb283a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81bfccd931e8bf74d72ccc6a7587aa8b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b03a08b102c5b41d870f318d2270cd00", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21863f1c3aea21f7c6f7e8652387a945", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6c57cdbb229caa194cbd092786cd024", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb555bdff49aef9782fe8d4fe7b0fd45", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "616c84c8517563f52c445a770abf85fd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7237d4181863449dc37a474cff42ea92", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4418dce8385ac5abd5c7c44ef0481f4e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ec222e15bae3e3f2ffbb67d8aba5c73", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c094181de265f3a6a0dbe72ee2f03026", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac72b654f89fa23a597cb1b885138b80", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27003ddbb2295be1634e7cf36c180f7c", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b888e58c7707ed2b7ee54bbd3d34589e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc7a19eb1ee0b1cd2eb06919f3f41d8d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de445f1ac7ebf80ee0096586ef150dea", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a36cdf0cd8f2c4135b726dbce4107d6", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7b66b4a88e26e33b531363d1632144b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 42.339999999999996, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8a6ff6b5bd43148b4426e9132a9bdd2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 42.339999999999996, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af1b6884ee26d619d5296e531d02a1ba", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "099273e56bdd86abb6dd22cbb5aef157", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86924d994b36730802fffd27c3d0052b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adb599e208014f7b54da00b237703832", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bb0a5aeaa8f2cf2b153cd449a100d49", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84a23f7dada91850b5acf6a727d27cd7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "136850c4ac75afc61520ae49a49e0976", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 40.26, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3961432b01cc7f28fe5c0af0b664259", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 40.26, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a88856a395e735a8dc602c125782092", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a673e84e8ec9dffb506d6b4f06146a44", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebd1f5648a45d29952bfb3a3f593e8bb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0d35f6dc0a72727265795ccf75509ff", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1d73387dba505dd12188b15b9f51dd7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de81cf776e79d47ffdda31a3c376fcb6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8551c3e39835240d1904472de2834d14", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ff178a86f76a70c4be08b967d49906f", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23ba95a26df870c2c380cc08d649ebf9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "329e7e1c9377a2132c17ef1b373aca8b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8913c30233c060f386af0ab18fe84347", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae887b534f5cc34a289ff0faf766e030", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1ab23515e54f9fa8db7bb3b5fe2ee0a", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e59625ac74d8ba1cea8625981bed1e29", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abe3f6d14bbdd08cfb6e186b6e5a1682", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b61786b194de74f684bd6dfa23b39490", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "173d57cc027c8bb2ca215c74100eaefb", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d27de392dc89e6b6d5c5605e2c59407a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 51.339999999999996, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a4b8e7415e510a30c3c258472004789", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 51.339999999999996, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84babfd89bafc2e2bf16c4481157ec50", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b7f5c113b73cdc0405187ca577a3330", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9716c3623752e557af3c88348abff53", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c4048d38d4338980b060ed677e56d9d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26c643da2e91b8fb7a000efe6ef69c56", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "023dd60fde1155b07d00f4062bc93c26", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "faa457e28ca75130a14028d1b36c0b55", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 49.26, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3b5ab331090d1f2bdc31f1a407413e0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 49.26, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7feb8749d2390d674f017557e5fa68a8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de2e6865f115ef11bf8ff1796813c475", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a9bb0cfbe35e544a320d86f000f57d8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "096796a3ff667e6210f6227bcac88d8c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55d79d7a44c6e8abb335287f9e7bf010", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "432a9da56d25b6432ac45cd9ff2b1130", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e0471e0869f66b6d13a3e8fa81c602e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "816eedab56e25b183785918a3c842353", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "992536affd4e616d81a5c647bfb207b0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6771a98d105d5d78a261b3786afba77", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "798b1f51357327b93ce06fcde27facce", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab84eab0f8d7209809e2492c3f8c13af", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36a1d048874c2763ec669bc927d035bb", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f053f0babb45738b2cfbb0672bbb2a3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c85269593f0d92a5ebcb88cbb9c474b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7e7ec92bcc274556dd8d7374040883b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2b600a05e7f977f3166ee71badb9245", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11c55a328eb52933531888e0bd13ad22", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 60.339999999999996, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ae75bc6e9374adc1cfd42b2a9a1aa9b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 60.339999999999996, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1621bac8ca2451431fc8e4bb6b3bc22", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ffcb83fe2b7b65b056edf87ea088abb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fe92804c54347f9762d07e593c285e7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bfa80aaa29d5d91c0e83979b6a7e0bc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11c8089914eb94b1edab36a961cf01b6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f71f496b22b68a5f30e70f9c3e63a33e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d0be5bf9aff46f5a891a9e570b881de", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 58.26, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "305dffaa18bf166720600047c030374a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0399999999999991, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 58.26, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca5af9508758560b46f904a745a4c232", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8af46a55ffbbccd9c650a20713f0043", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d23dc4e07e62169d4585df547c9b8df", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fde4ac0ec5f7afd3e25d143a529a1d31", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f19df2f1e112ffa23ff9ba40c0fa0d7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8cd85d75bf81724c13a78acd25ad1c3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5afde7ff6a4b5d24880c3d01c1bdbe76", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ba2b01af07d2bc3e8516cb133e40ea1", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edc18dc5ed8b49389d492b46db00e17a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f3d040d7e151161469cee1eb370f766", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "799f5c248ba83d6fae4fd758fbc15b28", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "146856039b213034e2380eab23d3224a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a9f831c4dfea362919fe064bb56f682", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fad4f55aa79dc180894a7caaaf0f764", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f47d02627db50be5d9b7c16a9b32730c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98a4ee468c6ca9d1ae6b99106999f6db", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bd3a1814717b1d1dabc08eae3fe0e31", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f235e37eacccbb8b20cdb0ea18cbecd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 69.34, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e44d0c41472a56d7f837a5b13ec2ffbb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 69.34, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c8f99caf17c2cdf8537794cebd3a7bb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abb70638588ebecef34127ae8cf44001", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f8d613a9a581a7dfb8c1157ecf10dad", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a615738449e4a2c8c26ee5a3eda2d07", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23ee26750c26d128ac86f01eeda89b3c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ee791022cc31f88b6594907a22ba47e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de5f2dbba4386782cbcf3a837064f4de", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 67.25999999999999, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adfdad1f8acc4874a4ff69c597a55692", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 67.25999999999999, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18ebad7a5ac2718854e1d9ac6868bcd1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1faadc5adef8e06ae480867f234b7a3b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "198d47152e4f228d7fa0d38fdc3064cf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e9ffdab56801c1a2f2c43d89d55b45d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1091736929ef23de8c203cd81d6681fe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fe4ed1947468b4a62fe9184f0e7f8a3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b56437b65fac5475e21aa179d36e9d0c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4ffd99693645ccc1d9992381757d88c", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7453a4dcc059df045bf3152229101b28", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d5ba99743b48b686f5b2b96b7fa4753", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "056fdd890989bd46b7bf1280a610fb91", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40eb84e6aa7baecc402010d767787714", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcdc50975f058d5fbabd0f636c2dc613", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "144ba4dd9411731ebd3007612b69e08b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c585b6495b1e4da36d8ef087d93c35e0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bae45d6be85d836f5f358fb004c3bac", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83c6f0d93c3c8a349c47be3dd4d908ea", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a982f7dc8049805730190d0d924c3ac", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 78.34, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83fbb4af8e74d2b0dde712b17a3c3ec7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 78.34, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b20b9a25722e69ae410e83c943d2e0a9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd750e288ff5ef7e97e260031014f68e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfbe3fd270e79d89e510d1a45587dd48", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b750b2f57412a9753d733fad89c7ef6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dce234eac4e662e767206f944fdd442", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0b0fd9a8a33a941f3404906528113e9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c4f548ced2f5f747ff4b7c49486a5b7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 76.25999999999999, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d340486b284ad2bfc15264528a9012d3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 76.25999999999999, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08e574a2997b570405f620460a13c066", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1153c92ef7d8b77e239448f606253d4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c17b1eb5c9147a9de041a44da615f2dd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a2c9bd0d5fb026467669d4889601147", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "926a995083627e59b4b3317f962beda7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "686bb8dff229522cfe9822e667bdac39", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d655c1de6c35ced6c63a208b294806fc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff36487ec29c549430ad272262c9af00", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22c20ea4c376808e6a1b23b0f802e7a9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4760f416cb6a601cd63736328a7f398", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d621d13ea957873acf284c307a69b13f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "749360a219308eb232383693dce838a3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ebddd4e95a9bdf362b5f73f5df4756e", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8940149b78d33db4e94e9f6339351883", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ce6e0fffb3eb9d87d76fb2eaec3c450", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2833f8a0a73a87d1a147c537bf501d31", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e20092fb10b56ead8a1c538f098d2b4", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "451ae2a5d88ca61f1874125a7d1880a6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 87.34, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f75e59d3fdd7211f98e38bb6b41584ce", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 87.34, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3547d2eb1f648a6e4044757047c1a570", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc7ec07d39b955fc403ec45011641e45", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "920619ae84d3ee23b32b20ffa42eeb37", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55540de57ff6693952b8588a2d914f81", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "898456bbab53c78b9a32db7fd4de5126", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a16e08cc1fae1281a77aa521ea6ed3fb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89cfa67523d5931b7cd45c9832d874ea", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 85.25999999999999, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36bad6cef9293149d4a6366a37e528ed", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 85.25999999999999, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26c631cb7a505fa3b8f0c6fec588d55a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d481be65f6b738791b67999f0de0f32", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0ae2fcbd6817b2225a1af1fe8125ff9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc10d9a0e163ffbccc9039dddc962d31", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36f6f66a41d7a3aed21ac3fbab9f79a9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4ab2077d23e3b2720c01365ee9bdbea", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7520fa20a4978b4ea144ea4d61bb1e76", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eeeb4f5f40806642dcc50f05dd036a4f", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e0ff52501275bf92e537cd24f69dbe7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30f26ced944d2ceb4c42441c0f395672", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bc4c4b575b7bea821178883d3b7d667", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2061769475bd9c1509b2780f6feca7e1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ce1939ac93f59e0a96b361ac032b0d4", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23fdf97d85efa7fc8d819d2626fa056a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "623b4f3d7bf8ee5e3afb8df6e253d785", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b196f473a2ec8fb236c536be9a55996", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f649fe426f10e5e945e78392aa1832c", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c7e1f1fc9f5b4309f4e05a2f02c2c08", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 96.34, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46eefa2ad1d22accc4cb18e395efd85a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 96.34, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2894997042c2787bfd45f050b25ecf1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e7f01e79c1dbd6f19070a4b3234d235", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0378d21b9cc4085800c24eef65e6f06a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21071dd823d61561134c114ac23e16ca", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c551c03cd2a5fdd9cd6fe1311a20365", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9e16aa17e453d626ec8561f9960fe7b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bb50c98f42fd0b1a281fd8f398ab210", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 94.25999999999999, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab52e821986e9e1bf3a0fb43ed467d0c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 94.25999999999999, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18c9fe3a6193777a14ad2574d9f69a5a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38c8dfe9af1f613f22ffdf24afcc85f3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02de729b5b9e49601ebe180c5b1ebf9f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "545470958dd95b4d4d90b903dc86e9ae", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "558a2fda0637c74df3040aec4c4b5096", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c4e43ab921320d1c9d231472d1eca2d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da7917cb689356efaf1c602d7a282731", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6d9b754e7948a8edcd373e942d99502", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "838cf3fc2244b6137e7a8eef89d1ade1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65d3eb569810eec54eff16072b102edd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73022f454485f0e067ad0b5b615c193f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3384722fb83e4d1dd98172470b678a8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "064ddf122c2e0faecc8f3febe62696a2", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebb3d251a61a7da9b0377bc5e8e1c34b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "833946109dee61b58913ac7c0acf14f7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8574abb4f356621dde28a79c7361b81", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bff8d222470b7f145b4852d0980b0b1", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09c933c4c1295819cb46ae57caa672b8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 105.34, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3254ceb83541d47e1709c28d0b3f5f2e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 105.34, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ebbd2ef1496bee1c239209733059637", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "913acfc17f70bc0833148f34c7290051", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bee58a90cfb128630c74dc7393b28f2c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a26505f1dbea215aa24f0db2f479e97", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6284f8c514a8d0c5b0a466db9b280ca0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8639b33dcda5fd663c99c88fcda8a6d0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fc898a3f39ddda8ecad4d9d68594c4b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 103.25999999999999, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41bb90019b315567bbc48bdc8882050f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 103.25999999999999, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c7602abe1729713d4ef2d34a3a9fbca", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df41e5f39e382e3f23e95d46feb2248e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b35f799d3ce08be344b5c2d195a0b13c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e0aac1a60e168eff176e36af55674a3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d18ac9cfc37b2755c2f392c40c87e58d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f867a2e60c0d7b0e64791d461767712c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3eca6d5f2ec01d5b990585f9e37ab5f2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a81ec54c92fbb286f4219b938d9f5a25", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1046b570f8ad8769df9f41375ce72faf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d9c3a4c5879753d464cf144f56c9c6a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8654e79bef55e58961c8cae5742e8c24", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c638db321d6f714cf4c68fc4d0f378d4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97e3e6a145996404a4a688050d0ce8b7", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e36a7543ea68814c47e3fe039d263fb0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf843c1736f1e01b16789c800889f26d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ab0cbd871c504d2a1229ed9215c5b59", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 43.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 43.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca0c4f2d7ab5821c6c473ec40d1aae65", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b063ed4ccc1ed401cb3cd652a5e36d4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 114.34, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fac96a69f974f50e941f4a18334cade3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 114.34, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "794ef19921da7e4a2a10290eb79ea207", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "725c121ebd8f16c0a48c34b524372ab8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b201cba14839725d8a67c9b343d9edd5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 75.19000000000001, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3bfdec37570aff0ceee76e224e3e1d1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 75.19000000000001, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c66a170111bc923dceaf1933a8c1bb37", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acbafcf7866bc06196e1c10debc18494", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "033f73baad9cd6f5ab5665408bdcc2ed", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 112.25999999999999, + "y": 74.15, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87f6aa7b6ad9ed0deb437b148481d8e4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": -1.0400000000000063, + "y": 0.0, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 112.25999999999999, + "y": 74.15, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "216825adb3dd2f2badb0312b0c1aeac1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e073df0cfd45a70bfc31ee43ddbf676", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f8c5f8cda7f5130cfb118e527bbfd61", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 73.11, + "z": 36.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcb1b126c88c42b24e48b88ee3a06569", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": -1.0400000000000063, + "z": -23.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 73.11, + "z": 36.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c58e20c9ffa6d6567ae15d0c1248740", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "465a0cc51f7fc1a7982a881f0f29074f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d541c82bf88968cfc05cdf4bed35699c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb47209af6f775d1fab0f37b914d61c0", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 40.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d72db074dd976a735a95887270af646f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.7 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.249999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3dd2020fcd769a364abe50aa34d6b546", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95a5e7092844ecd03e1eccd8c17933d9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 59.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f23ce1ac7a0d3a6f25f48bc3d0c9c28d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 64.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bee2842a6c8b1072a9f166e2458a4c4", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c06c3fce7a497dff35f9b2f7606ffc8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e086ca1fd26e24c0aaa6789bf5e8c30", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dc9a0955767f37a853109d74bf48045", + "notes": [], + "params": { + "moduleId": "UUID", + "rpm": 2000.0 + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1e675b63e903373fb486ce1289723ac", + "notes": [], + "params": { + "seconds": 180.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d47abbab6942d428b1dc8cf96e4ad90c", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcb3c85dac97a5bc1cc9ebcfed2581f0", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc4f1b489575bf7d0f648782d5540828", + "notes": [], + "params": { + "message": "ADDING PLATE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "699433865ffeb5c687e821b05015899f", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fc287b1cc5e374c04119c0823cd68e2", + "notes": [], + "params": { + "displayName": "Sample Plate 1", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8764f01231651fd0593f8035a2856410", + "notes": [], + "params": { + "message": "--> Adding Sample to the Barcode Plate" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de90055ff7adcc2bd14121c2136a5245", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71742587d1837a9f04417f14703bffb2", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "A2" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab047db6392b59043ed7302044df8f89", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89290c68f70c9d769014f90801639b98", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ec7a9cdfa3f82dac6b7d33b691b36ff", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "890d149b6d916aa92d547522901c3eed", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14d9f04f85cdc9c7a92dc7c8a9b6e71b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e253f85be2809abbc623f0ff2e2263ce", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b89ce4e133f991d4e02aa1097438799f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15fae50989ac3a8be0b7787dd0cf6bdd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7b4a7951041d19da8ac4f74b73d716f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c8b5a6ae954b21e487a6d39e59919dc", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c41f6e8dda85cfd5ea4c3567e480a4d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c13eab40a100fa3ddcf4b7f8efe50ad4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a5810845735f88c5559752d9bf44142", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b6ffbb82472cf34b0546e47f871f717", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05dcf47963500966f7b225c7c016dd27", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "648b91b8cfb88b350eb9f2ad14fac222", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "411de2873e61c9f5601c689a8f158e90", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a12c211b94762d5041ae8af48547fc10", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da8bdb28da8911f53de1ba84abf74dd3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bc4c768f2ca454c5de8fd70c6d50412", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2dc74fcde33f7477f61531bedd802dbf", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43801ba98908c646f52481fe8f51de6a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69f0961108804ac5d2e62dcaf1414034", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e9bac3d1d704d8065ae8424ded3ef6b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74c9e12b3aaa7a073f313cd71a62d55f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30dbdccd4ab2f2baa6a1b1844e08ad05", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca6e5e657ffc85c871df2af727c41b02", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b08acfe11043e1655a5e6b9752723eb2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b37b7ac38dfb6dadd3b00c73a442475", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "624cfa7387fac0a6761e43bcf4ded0e6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6488e156452d75aedc5dbc9a04899a1c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "635955cba70ead9fb91a8da8b02c20c9", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dc2386d0f9ba9ddabb6e9de6cafd386", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae676444e41b32be3df124aabf8fa8d5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2138e051e8d47c04c857ed796c86b1b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f410fd60683b9783b696b92fd8776beb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d207233ce87ac134e367b333993e16e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "749cccf84b9f670e9282406ffb2805b8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "084d00f4dcfedd31bd49226d341ea1d3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2ca353395fa853289372eff0b24adbb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71c346f287afa090bdcb0c515860bcce", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5d1318fed6daad60415686af2985104", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a940e1a726ee1f901162e92fa5bb6a0", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d81e9936029a99bf01abe412ec60903d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b64db61f17e07ada8e97916f123b0e88", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fbb833d2d24112d191862f0f49b4a3c", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c52c29b679745ad283d97e45a718fc9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59c0c0eff7014ae2073b484f8d3ac126", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "734e982136159150ac46f0df9dee219a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6873863d35a057fbfff3b39089986da", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa65bd051ae5d96b093a61245f6748ca", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f0841a4b13857f5aaadc29cda3d7aeb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c04ced9c81e3773bb24a9fc05cdd5680", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d4ac89eaf6c0620f628b78cf751b503", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd31210d2e9820c8847ae6d4a5d3e730", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27b7182bea8a17ebbd701be2fe23a15b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b779a484fa8772ec14cae092490cb2fb", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fa7768406d3b034d07bb8e1f06f7760", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51e4be2eae96acd48d6ca38248fb3121", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "799cd54ad0ba3785145325d53d345763", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5311abebcad2e509f505dacd7e2dfc8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56586c2c1ccdf9d2c5d5dd465a0cb10d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79ee9ab3c65d9341a63459884000c708", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd2ca26d1cd29a3b2c15f961e0e22b57", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b3ec834fff0859b4ab54084011f5b95", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "448faf1490937f64806f33c7455e7e09", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b43c3f79c0374c66173ecab5046e9a7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4f2079e1241a35f4d35fb3cc0885a51", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7e332eced13448bc7b5b30e1c306602", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e51c91d5ddea9aea1da559cb08ff7d0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c330d2bcf979079923ffde6e91204e4e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f950d0a23123db9dbd4a1b580c04f435", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24f3bbe7bfad3a0cb1717f4cd074d2dc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e89c407183f3e8f5b38473d0214ba45e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d00672cb107ccda406bb63889cc80cbb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bcab4a0ce420d5af93c677a384766b2", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28b235a0695490b3b4f4484dc2e8c77e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49747f0f7bbf28eb55474a7716b4bfb0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f43ae69c5951fab30f46d1d3c34b6cc6", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cf58f3282add0f1a5d3e699f0c3782e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "999b0c56aa10aa57a3ac3d2422b75b61", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c319905e77bdb5f272149b0957e297fe", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c86133221d970790b63e3a11d6fdff3a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d5a15d81c8b00e6553840951e336370", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b6a4d61930e1f024fefd5b965d063ca", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22e63d0358e31198ef3e718cbe0586f0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb3f10bf16d10bfe2b744389764fb41b", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5bf493ad1f0b9b186e4c24b7c071b68", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1bde720cfbaa35404ecde0f119b046c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2078ebaf4bf9c0122e08530cc9e74ecf", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c3cf2703ae8fb44098002aca653092c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6a0687e0ab880e41d92a80ff341620e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "049fdd8ecc8bc282299da6aef7b62809", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79962ec8755098ba3b1a8b622688c40c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9689b8c73a1fbd98a5bc2d7036eaceb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c516e87b493c432dee5393293542937c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e59074d20d5b2e7ea8f9df36aa5c119f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "639a9f8dfc3c70c75e92e248abad2d26", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9ff482e63e4a2bdb71ed9aa874d6cab", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bec00718dbbfc8062fdb6bdbed1abebc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10541bebfe303549d22be023f407f02b", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f5b9b280b3792189d402ea9cf51f0f2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60e6052e86abb9eef59b67fcebcd208e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61c637825b7d3aec93e540e1a2f0d260", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1144b92f5ce06da29fd65be7c7388914", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6eb4e3cacbf3dc59383ab971de86543", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba89d396ec061cd4b31bfaf50ec4f874", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88d0dbe808ab5b7a0e470c5af4b8d53d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3be91a9b765f31e83ffd2a4aabc188e", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9212966f9ad53da5e484ca418cf039e2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "699a2a2919fe8ada891303fe5e727c7a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2df0d79bf4d04c09e45c2169c6f10d70", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dc2cde346e1ab3a40f0a7544971aa8c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e200b6ed050f7ee79196508114d34ba", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd73ccba5651e1a2986e1e03dfdaf7dc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79abd6a63ce189c1334a034a584745de", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "804204f50d8b9b48f1bd5c45aa0ba631", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcc8afd224bf96ea37177b3587256e15", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b2b0b92fe9f3993b334344cf5bcaa12", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "626385a48c0b1a8518150562d3575379", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d61a27e47ec88820b47c3e0dca20c0bc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5b0220d4adbf7d941f75b3cf5421e42", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 47.849999999999994, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20370a2a9d5b5680fef1aa23d9ecee8f", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.800000000000004 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.149999999999995 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e211a0f286858c6a407220fcf8adce9d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c6ce5be7bab9e33f3ddb3a7d9afdde4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e642f1eecf644ec0ede499fa35fe8649", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afbb4e59bbef8e83994714772c715895", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95981661207880f5c216f785c946c7df", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "341079a496fe842d7a0ec00cdb4afb39", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bc47a46b82dcb1b5f011de4e17cd146", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c30cb6c4ed80007a2ca5cf5ba155d2cb", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9a597d3ca01e90b753bb56fd2f0009e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d3f3e18b3792cd9921295136bda349e", + "notes": [], + "params": { + "message": "ADDING PLATE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76211aacb4d47a77a703eb4c5016c8b7", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a6e5f7b2518938fddc3b31849ba3080", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f05245c624fd0821f7a178fb262c885", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "436fe10c1250db5c1dadbe63dac0794e", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c23ad7ad1e7a064e8a60642ffb6ac26a", + "notes": [], + "params": { + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "503001", + "503501" + ], + "links": [ + "https://www.nest-biotech.com/deep-well-plates/59253726.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.6, + "yDimension": 85.3, + "zDimension": 41 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 21.9, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [] + }, + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Deep Well Plate 2mL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_2ml_deep", + "magneticModuleEngageHeight": 6.8, + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "evotips_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 102 + }, + "opentrons_96_deep_well_adapter": { + "x": 0, + "y": 0, + "z": 16.3 + }, + "opentrons_96_deep_well_temp_mod_adapter": { + "x": 0, + "y": 0, + "z": 16.1 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 2.66 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "A9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 74.15, + "yDimension": 8.2, + "z": 3 + }, + "B1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "B9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 65.15, + "yDimension": 8.2, + "z": 3 + }, + "C1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "C9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 56.15, + "yDimension": 8.2, + "z": 3 + }, + "D1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "D9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 47.15, + "yDimension": 8.2, + "z": 3 + }, + "E1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "E9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 38.15, + "yDimension": 8.2, + "z": 3 + }, + "F1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "F9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 29.15, + "yDimension": 8.2, + "z": 3 + }, + "G1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "G9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 20.15, + "yDimension": 8.2, + "z": 3 + }, + "H1": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 14.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H10": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 95.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H11": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 104.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H12": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 113.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H2": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 23.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H3": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 32.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H4": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 41.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H5": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 50.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H6": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 59.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H7": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 68.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H8": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 77.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + }, + "H9": { + "depth": 38, + "shape": "rectangular", + "totalLiquidVolume": 2000, + "x": 86.3, + "xDimension": 8.2, + "y": 11.15, + "yDimension": 8.2, + "z": 3 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19d776b40e5eb3eb3cec1daa4ffb3ccc", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6694fec1c1b18595007ccbe44abd1795", + "notes": [], + "params": { + "message": "SETTING THERMO to Room Temp" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3bf683277a9c0c3f4816668de144348", + "notes": [], + "params": { + "celsius": 4.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "960cef9889e974ddd11ee99f6e68079a", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6e86289e45a436392943d3935ae7ba9", + "notes": [], + "params": { + "celsius": 100.0, + "moduleId": "UUID" + }, + "result": { + "targetLidTemperature": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5272e3da207b0bd7502a9860f88a3c8", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87d1418c96ecc2ed4937ca1b9c64b26f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4cf9ffcbbd9f205e1b309e708241564", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "moduleId": "UUID", + "profile": [ + { + "celsius": 68.0, + "holdSeconds": 180.0 + }, + { + "celsius": 98.0, + "holdSeconds": 180.0 + } + ] + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "132f476437d859a92f5e872b6c2aec91", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "moduleId": "UUID", + "profile": [ + { + "celsius": 98.0, + "holdSeconds": 45.0 + }, + { + "celsius": 62.0, + "holdSeconds": 30.0 + }, + { + "celsius": 68.0, + "holdSeconds": 120.0 + }, + { + "celsius": 98.0, + "holdSeconds": 45.0 + }, + { + "celsius": 62.0, + "holdSeconds": 30.0 + }, + { + "celsius": 68.0, + "holdSeconds": 120.0 + }, + { + "celsius": 98.0, + "holdSeconds": 45.0 + }, + { + "celsius": 62.0, + "holdSeconds": 30.0 + }, + { + "celsius": 68.0, + "holdSeconds": 120.0 + }, + { + "celsius": 98.0, + "holdSeconds": 45.0 + }, + { + "celsius": 62.0, + "holdSeconds": 30.0 + }, + { + "celsius": 68.0, + "holdSeconds": 120.0 + } + ] + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "264d8ff7f39ce2871a0a0753d3c291ad", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "moduleId": "UUID", + "profile": [ + { + "celsius": 68.0, + "holdSeconds": 60.0 + } + ] + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "609b870108e7637410074c556b91051f", + "notes": [], + "params": { + "celsius": 10.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3730f00497f9a34e6ff15ca8afc9ab29", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a982e2c9e82bbb942491f6845ecda7f5", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82cf47db7c78d10dfd217ede61839756", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4fe812e39f5380d42b168ae6f8f4e06", + "notes": [], + "params": { + "message": "--> Cleanup" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7e829eeb2f5fea6baa9984a54324e2a", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de8aa9369d44bfb5358f9e1d02434c0d", + "notes": [], + "params": { + "message": "--> TRANSFERRING AND ADDING CleanupBead (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31361768017921abbc779bc57285b547", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fe9e391cd745e4e84a9ff8b1e7e18d5", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "B2" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43e4f855a99c8db3fbe35cdc89013543", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5c400ae24c945db8923d50593a01f28", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df1f6603cc0b2c69a09f33ab6f13e596", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8459dfecf57bbb55e792aa549a080abb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2169e1ca101cd66d8d5eb1e59707dc42", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f3af03cc47d80f7e6ce866cc9e3c580", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04e05438e4b3a0b2af264e8fdbf088b2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84c317e0b9ff5553763734575ce99bb8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fd00a86a6b2f5dc44c1c3a4c1f6150c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "771c04d1b5361c2578eeaa74cd09d9e3", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20943817e882c102280dd5270515635c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61520f4a510f2b3421e20c5882243cdc", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0434923475ab5895f42f44ea0fe1735a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "269e9d649e265a1eebcfd248e7480fcf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87b7a3ec3834cfa7f294a1ead0d3cdd3", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d5fc03f346cd71c7b8fff507cd5ee72", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05b11040d8d615d0342dbb79c31ae735", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64631ca46a6718695dec712aac5cc9a4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79785a33444f47eea0e277c470b90bd2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11a4ef37a6d3b15ecdfe6284291a0604", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2daacf8d941463fa81dbd78e4c25f246", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7b05cde4ffbc5fccf1c29228cc4b48b", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54f25f4e65be76f250bc3636eb71853b", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2d79465295a8345bfe6af8acbded021", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "067b3139303bbac094b1d3249ce04e78", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60e8b3c95f412ae390de595e258c3c13", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae982c87c332ca40558f55636501abc0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b215063f47a8cf9cc2023cd2ab725797", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "188ccd8c0747eb1b844bf40e33014534", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6b65bbe1e0affe138d4d1598429fc15", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ee80f72f52d008f384f5ad181f23bf0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd5e8c582635eca0d9bd3dd30fc6bd50", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f6cbf4fcd2857f04a4df1ef79b31ec7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "caecf9413720ad9323b73abc0eaf7886", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "301c449d8e31651699be06e4fb7d6516", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f24ad83ca544f6ef2f382a6f66d53696", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbe34536dfb1be52760a20ec64aaa5cc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dfae884bb64e4c64c71e536a4655259", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cad2778b4a849233a3a711b60b36dab9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff637c40005e42c4442fcfbe06d6117e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b39d4e1fd45ad21f8aa91b67cc44022", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d95ea79a06e4cfde97899e2792e186c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3dd4e68c3227df0d6a0fa4b7cf0ecd27", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "997c4bce64c685f40f9918f41e97bcfb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36cf9a86948fee0cf09662a1d11887bf", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d52933f2302b7432cb458f027d9b62eb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6e29f99ebb810e7d1cdd75f1953b088", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "441b7ab1d89cf9103a7dda916f536269", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbfecf9444e3f4b2e0b98b325e7b9ebe", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "deabe7fbffc5f4c8c11aa2b172e13632", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d7eb39d88124b00d0eee3df060898e1", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f43478a8b593bb76b00ec9ffe8125233", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4088539e3eb216ced28851a4d015cf8e", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70df95d79c3de7b99e7032eaa767a4f4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09f720b965cd394959dfa7ea4c114141", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c6f373e34a3cd1f07b437c47183b35c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60cae0c57017b94e2335ab30c40197ce", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f91d1351eec98c44fb4ce4723c3db86b", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "843f14a9e92e1193856407c90ae43373", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42a10220806a3289516c45dece632067", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "185758904e3b3c9c008b9859688a44f3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d126bb13fcf47d0fef53f7533203a89c", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a36240a2ae01baef971bf920546e240e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77bbd68b76a122e96f8892c8e869386d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dcc81bf5f58bed97676d6b8359a5743", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd98276bc56b02b91bfda9de1bc995a9", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a2528f2f6c08c99b1ed66a40b27d986", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "288bd31788e80742115940e4f10bb921", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d08360eb51f46e3041af4f9671263d0a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b0997b36db9e68d13f7eb1b02831afc", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0f46670c34756e34ce31fb8e4569330", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "387f9448ca56ea8bcb4b505d0f0c246c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7fb20367ed86259a9e1c8880094ae8b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f525a96f542982697485a649f19c2ab7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6a098d221a2e0c8f1ccce194f659d59", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4eda1da90efdb3b6f0c7375e828114d3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60c17b4f4e9fe35e8d8357dbd7376f4d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eeaabb552ca56ae8b72c80e33928f37c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c018e44b398eb57a32defce4fbc5c0b7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07ffcdb54bd6c3510a7d7985a148e2da", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12de4b50f0c154acb170a8b30fa7b4d0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dd09e79fb7f68fe2b2bc3bd5cd9c354", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0cd90b5d10cfd2cba8f93aee0bda7df", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7663221693876812953b5d0eda73874", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e8bedf7063a54390eb2403869c2ff3c", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a159a8c4c8262edd352d1dc04f58924", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f893d0312c3afe51ab965c538bc7411b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f144879267d0cce8c2c12a372a214f6", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9174c0e05e37ed5804dd51ef1b8b24dd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df9a034f9cbf365efee18c47a7a14626", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa539b78c7dd9175488eb2655ba326f1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76cca5ad2c6d9b39bc4199e13be46de4", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebd882f1957396632a5f9223c6a5f786", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb6d00c83a853f8672db92e23bd3e318", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b5be7dd50dc457c7988e212dffd809d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63d2b9146e0a033ccfbe52a6bd02f57e", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbec1de9cadfaac94cb506919ab1f0df", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a08a19fcdc0e62372e2ae6f76d6e9e5a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "278366bbe3c4218ada51814d05b5f2c3", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59cf21c703a7dee69682a80775d9ec56", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad78147794bceb8bdc514eb6b1e5edb1", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d55be630ab919dbc7eae1cf1082a0415", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3247551539e091c13630e4eeb1243c0", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8408cab859ff3c0436062697d38a853", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d051be92b8327687a60cdcdeab38a8c6", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3da7089261e18f28334c4ece68934d4f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cacaeccd9c8111f50c0bd09c8fb4b492", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b32f93622f2a1db32149e7da9b7fed3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c67077efff4e594ac112c5b175e5e28", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c95098c77461dd196bd380745773e5a", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92cb39ae39b257c8cb768601df2d46b7", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9ae598e3191a0a8a59f40a3eb430d74", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70a060da2336fef3ce44921af9d3e5ae", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abcd260a1e91053a36ddaae14f1b9aef", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cbc54584cb276a9f3c8881a88aa4052", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1a122423de29f902852a024afed88ab", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3e7a3948890a07739f7df24bff7b9db", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7580f032a83ed71648784fe2168a2583", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c907e32638f7a8739cbe41c41ebf9575", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2dd4f3d0b90732a31952da866c375b9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a742560577c647ec5863f805643c9a37", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d9dba9da40791c84d019a14c4a5400c", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7dddda60b862ed3df63aafd9259d30d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0ff11f89847d09f05539236ce9f1827", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a69e9bf790e4fb5216aefab1bed1a57f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d420c18eb760f85919b092b204c9934", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0b7e4e56acfa7be0cadf65c266de07c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8ad53ab8937224cbc38f245e26b0375", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6167687cdc994034a37d8b8477339f5", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0f4e471d5a1046423448d3fd70bb299", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51e20fa991f78ad6bb8d77f93b4102cf", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b79af56f9a1b685bf8c00c9d841c3218", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcce96de90c9124d88424d465dd868c7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "def386bf11558b9ab2813146a6e66a8e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ca3cc604504926b03869f21ec9602b4", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a393b9dc30414a49a56772386cf93e0f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "589bb1ca008d50d508a726ff21295460", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb58251d4865ef42b91f4711d7aad6d1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5a1550548c94c3c9ba9a5ac10d1d2f5", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "454c76743285e9354614f76ad7dc72c3", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e94ada5a270ecfa14fd5a37054e023e8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f22e4c9af0dbbdc7bd510ec18f81be5", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4859cd62d910929745407897fefca0fb", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5b3090de9c9580231e0d3aa6706b42d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48d31b8708db0e29bd877b9f4d39ae97", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a53da2308e28102bfe7681a5e6b0492", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c1e7c1e88274e0b7387ecc41f43c98d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b314cedd1830877bec365cbf26851abe", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e2d3526b0c0ad2642b6ba0ff3a8c807", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32c9270d8af8ff85ccab9c968383b371", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53f2b35e4c8eef499c66c97cd643e8da", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "809cfc1f092b006e698d5d1d1fec3580", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b077b09110d10c1f9df113bd35981ccf", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8e974e2666e4ee563b71600f5d57d8b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b27c3aadbe0f8e1ce2b5296891609e55", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a25304ecdb20b1088a46d9e4e1f48d6", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88bcac1677b1e5a84a761b4953ad23d2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c81a4a5616327cb537db762431b34122", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "feab6981a103634d99af6592bf24721b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bd5d71ce90672de9fcee95616bd90b2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "392b11b6b72dd710e1f3ea32ee8c8f7c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d80c9fbd43764b30fd771f7699619c9d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64a3e66f2640600afb4a7141a20458f7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05398df73da849f5fb9e0efaff3cd997", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d476bd90a482e3f2b14c47e734d248e9", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15e26e51ad463ea448e5a12b71c4f2b0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ed854348a83591a6c5fd207ae7993e4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc31b2819e4d9827c12dd542f9701a53", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b96882b600e188c06a423765ce42d37a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad53333273bec806e5ecbf958ec6e9d0", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d516ea92fdba720c123c96276406629f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4596483dbc6650b78da27cc376d89e0", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a8f9796113e82adf06396b05cf1a7ac", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6528fa32e6357c2f1dc2e28353a00882", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d4558adc2be87335c29c9508c6e2ec0", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e12d1b55091cec71857656fd6f1e4678", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3c972153d84b567b100c67e45afe856", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "332b1d28edaca0c2b9a3bde46794d4cd", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "480c8615f515876573bdc892ee488ffc", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f43eddcff84ea9c1ed6ab589323fe5d2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3aabf01cb78ffd91545c009dc1cc67d1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05cf06f3e28a63a1e8d47df1a6c56ec3", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9e14428f13edee19331a306479a0b21", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20e259deb6b7b21ac6e87f5928b16afd", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19001510bcf11eb73588ac389c7fb7da", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4346abb219f7c2bde3474239c47d900", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdb0911307495bc0e1239d4882e8b241", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39844c53eb267592325f8ce2f2c8bc87", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6826722ef5e0bb074f46752f58338bf4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07bd0f450456b3024ee708edcb7f0c22", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c41d5bdf9dbaf30311b59bb98c192ff", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d41542f8e57ccf332b42d60f89e083b7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29fb5d491a470751c027e674a65d6b77", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50ff66cd512e89b75141216da15de4a2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "461caf4f15663877d3ff698012723885", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16d4c5775981c52b173ea79cc6b73c64", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "594bf347ea29f0ca54ebfcec596310b0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10ddda63dd8935383ef967d523428df2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db7cb445ac7c242a454341717dce33df", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a52ae4e91f65e9de5d8c34d8924e02a2", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56c1bbed3c1ec301ad596951bf02db09", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78797f2fbf0f7c7a611355327a17a4b1", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ebda2582c131d1c732ad3b975ad171b", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9eb1dc8d3a3ac6d24c075e50d15b805f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4d1e89e0ba0a6532bee718ddf78d117", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be448572687ba92a9958a487aca28e6f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe726d01a7c3259b212151356b34c03e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f6736a63b3ca0046a1a34cfc29ce8b3", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad98f49fa77599c605f094bd11f56dc4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c806b8500743066477f0464810793cb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "773589310136c6899dc782d6bcda4e05", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29160b3deb5c81467e2ea0efd08f2278", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7fe221c5e9317c6fd8714a99de6b0a0", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bc41105e55a1c3279bb3a46a450e2fd", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79fb64f04bface0f648a80c4e4fe4590", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "601a336d34efa75880fe353e0789cf19", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e050065e905dc771557f05e0101c875", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abf098990c823d3cfe08e7ee640d0895", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72f7ccd6f8e6a17a6fa997e34a3fcee4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c8b6ae5b7f17e21025c4b1dfc922b6d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df32d1bb4524ac1dea7303505db04622", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29408b14c55e88d69de55607d3d37c14", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4988be77aea52a041c0a1dcc7b9f8cdb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "478652a327e5cdab2f8378224da27d4b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5166fc85d22c9dcfef5c6f86df9ba645", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c7c4b48113e32b9c5a1d54711109962", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34ea96b858dc6617454f8fb5d564abfe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26520e3b1938cca632ff195754498ba9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bc30ab3777996a8195a32ce99da6f3d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6a3417c15bbb6e160f1e83d42db526d", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02c8f45f5166deebcfff1f95aa1d8f26", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf7da007954044963a9201f07f7fb77a", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90ed4e0561d9e67fb4d24d204c63e2f4", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ddafd8c289e15fd5a945f4935673442", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16600c069c5b21311d9096ae817c30a1", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0db2b0ea2443e7d9374b11954a0f48ba", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a313e9a930b2904072ff137c22ac878f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6904ba87d806f136cf70ffe32b9bb18b", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5b810e73f01dcb9b8c1409581452351", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d629e88b23a2fd05285e4bb32e6ac4a5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd4d69c2887f22bc86c782707fc1a385", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf1a560ee9f9cbd5ca99c0f467a32cbc", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1f7d8596b9a65cf53b4d771e1f6cf25", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ac00054921655803c689a0c59b642da", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53fcc5ee96471dcee1b113a3f12af4b2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "425a1e5853c8822d9aaedeee196e40af", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e4b46a3bd436799621769297418ed38", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0dc41cb7288e919203b1a5f5e803052", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5dc7d672e49de08a76b7caae93b81d0", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57806ef9091d1ba36781e43812f8e67d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edf553af2e8e0c849a9299638c2a5838", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b28a67a1c60697869777ef9f3972a29e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec5bdeb6f93713906b005c1c07bba5b8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adfebfad99d3949824f2fc9fb302dbb7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b035ecc9671b30a1a7ecfc4063ff49e", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee81e59aba89eff3f40c8d012a9ab764", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c691176cf87298f0d034efdd723dbed2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "015cfc8bcffbc69d0450bb16f73928ff", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d199b448af01bef0a233231b1f0701aa", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2224bb09a9a1f8782281607d5fd2c4cf", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "636bb679b8233c7530acda4d5f93d617", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d8fe8f09010d4ada655de1149ccff9c", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9462f86830f7b5514a5e6d369c9a79fb", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d362b532f2e1da24cdc50e1abc45d96d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "388350bbdcc7bfee6380157767f922dc", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edbf78456421c9a25aaca8d8c4431558", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88d8b3445001eef174bbd56281df3a07", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16c1132d2bc41cd6bbfe1a580045d780", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8a589070ba304a1eea4c9e26bdc73e4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c2770ce7a7f587b672c78f55ec64862", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6fc1bbca97db8d4a85bcc10566c411c6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fb3aab6597f21e8aa32f462e7e76a2c", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "511bcfec0e88e3e68833efc17f2d48cf", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c21ff8ca66ce28c74ff70de8f2e80fd0", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33db4ffe7fdd665a6ffdee727a6d4c32", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55eea6381b6b2eb4f6a20b7ef0206863", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69be01ba2e0b44118410264975e3bc2a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c4bd4c40ffe3a63791521de3dd4b057", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d57021f1d5cccd3e16e5a9726dd9888", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e286922b17b623709ebaa79d861ce00", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f3eaedef478cbe37894bd3bbd0b2509", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62e729d288281dfdb35d67c268aed814", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dd5da8f53b087c551a6cc245725fcd6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08e9ea37d5043fe9ba6e0c33fc2f6c53", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52684027115d234e013463ca9a495a2f", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e22a5fdc4faf6a09d72232e8e490bd53", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b531f8e3a6d3a86e8589623de3ae74c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72b0749672a9ae9ee2d770302b4a90fd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68feb1cb51b6ee99649a0c4c4855c53f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5165d72e5ec5a61592f9f64655b6e107", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51a8d0b0f0f2c2e5877821de1f67bc79", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbec03805c95bfae48701c7e736fee44", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d461b259dd9f90edd461ff1f32c0c97", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c64b9fbaefd62560b238bee00d95c27", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b5870dcab931e4c3e63e3b9176bac99", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "483ac334ea05f4a5b5e5f9ff1dcddf75", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b85fc2a8af526c2ba63e5176db9e19d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5aae14db8d57a75f0d19155d6680af5e", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bd994414be03564ee2e521a37858fde", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eee044379df1d7d329ad216dbee91050", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3964dcbb5d538f3a102ee170e0d1051", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3435d7f3c25e710cd033a9c83fe69355", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24cf5e2492b74073d98e02305531fe10", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7911032a3b811f32a4bd1c655c323e86", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5471cc1465eead13e71f07e080edfe6c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5930ec24bef54f9997440a0f16a3d412", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5c689c87137dd4a750fe584d159abde", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b49189c7f067b48fa3c3f7b8bd19eeeb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c37cb0503894b4ed1e65717ac78f15b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f6d11087706022b41826b24e3ee1a26", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "522815520ea6d0ccc2165a352ba09000", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "177bbd593f2ac15ee8de701f72f928e9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88357ce37fbd0bf9211d18d5638cd037", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d90e0571d8b3c86553e23aa2633e968", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5d00e3add1c1bf7ce21660a55a19028", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "505b7be32190cb6bc6397f2e8ef6016b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a574f658ace1aa3614a62454484c1aa8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e5add265b7cc4cbb84a8760aa3e669a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "730a8e3053af8c8864859beb866acd7d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d7d6dabf8e27ce30333950dee74aea9", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a38c9425e67fd3900cc173bda60dfb7b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aeb88c0a81107e0b88bbdca4c861c9cd", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16a614f13eecfec459987ae550e4c415", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfdff521dd6a4be66ac2c18461775961", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93dc80fb6dfb0ac192f5634485f0ed2d", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0851a989d20ea8fe52ddbe5d5f8c980", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3464c66884d8a38a6e7e9fe986027ddf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adab081d7d316f3e12c018e65cbfe99b", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3aecc07e00d67d8727729829e1899f3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2dbe9b8091c2d5fdae1ecccdd6bd68c2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "526a32da754a19cb51f4627b9392bef7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d169fea480cdf3b5cfc1bc799f26e449", + "notes": [], + "params": { + "message": "--> Adding H20" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92f1150dd8ebd211d2f5bc1a92828fdb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c159ace0843e7a5ae54dc6c684e95d1", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.24, + "z": 16.3 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "988bc2929685b26a07825878ad2183fa", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fddf438f5fd79ab1c05c1c6042182622", + "notes": [], + "params": { + "message": "--> Adding Cleanup Beads (0.8x)" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2ba2c9ab3b64db482bcacdc49d4c31f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "626eb9fc6f433fe131ea093b38dc7d16", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17bea0fdb015e53b9b7c64041b70cc5a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dbb520d775e9cc9091b46df6b63e8c4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0731f6ab292d29c33dd264ac696a16a5", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7f8fee1b721b216c237b441aa0f9327", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a25a41166a3a0a826648ff8001a5d0b4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8676014b10c24b9aa35e74e7fa507e03", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba554f7e025c2c3485c89d36e3cf8a38", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 3.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 3.75 + }, + "volume": 3.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04acb4bd2f2b8d33227ca53b852f302c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b5fea3ea94a796e69f43a5e9ffa39e5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 182.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cf3b1695ddbe941d3089cd16dc2b649", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 174.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9485d768d16c85ae20b68b3f713e0ad6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb1ec784bfb13e9afab9e9127dedb3f5", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49492c644d82ac0b4c8eb69470657588", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 57.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5b51dadf1de3b0fede553db8a6e9cf9", + "notes": [], + "params": { + "message": "--> Adding SAMPLE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4426bf79136f697696177a3f4d200aac", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.2 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.0600000000000014 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "820d39242f06f6d3f993632f6a38bde2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f7e918f7522cdae9aeeaf7114ba710a", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a92a1d67bb23dfea5c22d5cef8eba403", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e3a54e2eb7d2646addfc2ff63573f0b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "285cd70e5c7e48af395971b8df541840", + "notes": [], + "params": { + "seconds": 0.2 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84356140bdfc74dabed233d566cdf89c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "604d6c53b6a8cfdbb994c2eab895c49f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f762a390cbe662bdafbed56161e2c87", + "notes": [], + "params": { + "moduleId": "UUID", + "rpm": 1800.0 + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "730437e4766efd2913878edf2533f957", + "notes": [], + "params": { + "seconds": 300.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed11bd0071017d788e01bc73683d5df8", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d675f4bd07b5975e869472cb9cf6efc3", + "notes": [], + "params": { + "message": "SETTING THERMO to Room Temp" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "defe03f2dde14e51f9278becc4c18747", + "notes": [], + "params": { + "celsius": 20.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5adf2e1e98192850a575c2b97a29ad60", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3a0bdde93557a529231b662a66918a2", + "notes": [], + "params": { + "celsius": 37.0, + "moduleId": "UUID" + }, + "result": { + "targetLidTemperature": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26eb7c7baf652e6e5b696662ede79933", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b18292b391fe903db9e31086a4f0eaa", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d703ab29431e1980c6d2306b94147e28", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72fbdb6315fe0dcf0fc18085b8b04277", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cef971fd0b2f7f13330ab36263fa412", + "notes": [], + "params": { + "seconds": 240.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74001367c3118299bd318126bb7694fc", + "notes": [], + "params": { + "message": "--> Removing Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34d92f21ac84ee2bd3e4e99853b7f53c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f00a202eb646839dc44f41d4a87bbfb9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab4febac803b86598bdb77c72438b373", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94d092be5230cbdd676abcf51d9d1e44", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76a7b67b0ccd52495c683cf99654d0aa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b6a6a912ec48c815be47e07d2c11e33", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcae8a3272fc086aa80c12721c3b5818", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b6ad899861e897d339b2d2d6e5322ff", + "notes": [], + "params": { + "message": "Adding 1600ul tp 38080" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0ff2a2a0102ecb81f1fd28c14c601df", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a82fbe8259ec9942bb75dfaf161265a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4abd59c34e8ac2b8ccf5e7fada573244", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db603bfb4b1b3d45af266e4ba8258e72", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57730819b21ce31478cc9e8c0c2b0855", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e3fbb6d60e490db888ea8d8dc1c3dec", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42e31ae7032b563105b870f1e965f56a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9959a02052e414f5c26ac13eebb166b7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5574187468b86c861e95af919feb3e0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c8289904ebbe95518814a6c94be46e2", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b472f10feb32f30cba618b4fe3a2d4e0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40fab3576300f195cdfa2ac3531aa5d9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "306e6065826b0eba660e0464efb36da9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cdae31611c067f2ce96a6902c01df3a", + "notes": [], + "params": { + "message": "Adding 1600ul tp 39680" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a347d0fe878c159252057d49081726a1", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71a400fb56edf2936565e2dd01aba15a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfdd29f59688dc8cd3274a2a6b1cd205", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d877d2373bc172d4b0cbedcf2e1c0f48", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a4f6a76fa278409bd833987962ed0b6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7293faa695096e25688062d06f1be364", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "528e27ef9e7e457b0482ae3419d705dd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c30ab622f23be9ba12e37111aa911746", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bd66be8997bb9a272b9a124f3fb1423", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ae0861baecb56b1b96b3793914f2171", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e527597928553dba4755814c95d9db8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04a1addb85c097d6f54b2bda6bb54c47", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d86e5de2e7dcb65d1657bd24dcb96c52", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61a9bd89ad889a8607244fba4e75e291", + "notes": [], + "params": { + "message": "Adding 1600ul tp 41280" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a0a6cd559b30de2d05037bc331bcc0b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "149247df051cd4e11fedf0695eafd142", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3bff09e2393618a38f332806366599a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "748855794c5080291bb8c7dbded0e633", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f44e3f29ba29fa6b3ff40089bb2114ce", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05e06156fab3a46a0fe016d605897b4f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d64540377c17b609cab398f5d4b01728", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2538f2266283048a623c2ecb24d7617", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9739198dde79954e92f72e12b4f1d46f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d914b9824001d64d71a8362cc148bff", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76c73a4ee8f3aa8a4583a3219cc8c2d3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd107dcdcf03b440db9944290229b4fc", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "868bfb522c18bf04f79e3e247bd803ab", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8210de59bd81ad183b8f533c1d5ecf54", + "notes": [], + "params": { + "message": "Adding 1600ul tp 42880" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a9bf135bc583bb68dc6811a89172011", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3350729f866c7cebd5e6cbb66e3e5d4", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c2414120f05cce4a34bea89cc2cbbb3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a051c3782b003677fa48fbcd9a573a6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54af54864dc9fecb54830f0644a625ce", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1b51f389e09f863b60d0e5ebb15b552", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c555ca983541946c8682d3037b74a991", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de9771a356d8ce84294088cf2dce6863", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce6edda9ef924f6a47dc6af974cf7aa2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83aec15fcd9f14094b921d26d6373102", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca72d08af2a3cbbc2a7238fc397f78fd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38106f57a4ed7ad5e8c9219678f70f59", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3aa5c796853b21bffac9c5aa0228037", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee684d71d34ed9a758ac596023c4d49e", + "notes": [], + "params": { + "message": "Adding 1600ul tp 44480" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3cd585f8e45971e6af9fc791723c198", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc53b35393618dea7edfd40e972c4809", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c722b4c1a04896db3f06a0f863844d86", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5062ec041b8074674df5e8513b63d2a9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee6b9be95dd369cb51d54b96ce0d161f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01af26d24dac5d9dac28b739ecd3a865", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ecfd67a117ddb8e31e26949829be96f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6e12d1277c524f54da724c92c4accca", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb197780afc5c180e64a4fc2d6678b2a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd55439e039960c516c17380dee1479c", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e27978be461c1c58a56eb38b8962b9e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "376008bb2f5e21e311819130c275f07d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad21dbb665938b411c99ddeb2cf18102", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93bfb1622a3d5bff8bc7db5f7dbb35f7", + "notes": [], + "params": { + "message": "Adding 1600ul tp 46080" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fbbdd50d19229c542fa7ace6080aed5", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ed608ef555b7a2f9993b9f38b39a88e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9481bed61b3f159e94bd0e0e42c01d3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ca99ccd731ba045bb8614631ae99178", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "820485a43130d0cf83731614dc944da7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f05cdee7b8df184e6ea489b36550136e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8759935a1b7a19cb37a7888e7950cdb2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8cdf8f67a723e51331fdd04d1692e03", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d529de36bce03f388e30a2e255a4209", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b3496d7af938b953d0b65d23aa6f3fa", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fafdf8584c1bd643301ab5b91848997c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "756a57f6fc637296b1f0c63d7c0e9b62", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd2aba5242a6f2dba5c45c692b094866", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40cddc6e09e035694f1e855b1c0dea76", + "notes": [], + "params": { + "message": "Adding 1600ul tp 47680" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eaf05a455493416e5ff804ac49d02098", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36c6a87180d6af799b9347bd437e26f5", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ede7345340f4c5131954c75af5eaf57", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "536197340b9b4bd65f6c82f08ec7e98b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4673c220a557187a1fe23c6d31035ee", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "262854773710683e26da631660022a53", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c538dd794d5756df32af6882070ab197", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc95641fd9db209fdc0e360b4681b5ee", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7826d950bdea304aed27ac5af6458f10", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "232b871cabfe23a3d0f17a3c318cf64e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc57d8ac034681d2fcc44c6a28702c34", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1de2d0004b767e3fdd7b83eadef5981", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e49ee41016100b3c191e8b5f90022a9d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e62710c9b760d837b8727d95519fe3ff", + "notes": [], + "params": { + "message": "Adding 1600ul tp 49280" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a22063387b8b4f900509f2f0bf876904", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d0d5089d68b152ba9e812ac62440e73", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98b86efcffc00465fe5475b94bff0f8e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e4cf537c224bd0f14f83bd8b374b1e9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36fc5df01df03d939a1a3beeb99f3218", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0ac46d9948893a07beac400e67343c0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0185fd0f0984a51590f0534c81cbee86", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1ff46cb1fbd209b8274c2aabcdf55bb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24d19d549b229a00eb89335c9dd584f1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7001bca8f224afd480ff1a2039ad50e", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "764507c4ad66c710f8e274a06cd71fe6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2fea60cd1215786089cac3214614634", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df814710124011b88da2bfe6c0c481f1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e91d6a03402489fac928f8828f7b14c2", + "notes": [], + "params": { + "message": "Adding 1600ul tp 50880" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d5a6d86d97ff1a1fea9ff6b3220172e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93354328b8291c44364d5274bb5ea8e4", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36e0f64ead5985a76924a6b65d7430f9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14aa267763e97d106133834e5e9a94cf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cf16881eab424d1a2f11dc8828dda8a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1089e51d98844b8c48ce1f9a1839e20", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69ba36dc3a90d19aa57bbf03b9255277", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcdc8c2142615ded9d0d089b3c03670a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35b475ee4767007186d75b1207ea104f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "986a1f6e3f47a15e42459f687239a1bd", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fde2d740ef4f66fd08fadeead5f8f7f8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73238a0d1de5104ac0fab85cb99f46cd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c1998e589dc2cdcc28737bdebd1cfdc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "869f9ec9478fe25c66112af60ef4ac4f", + "notes": [], + "params": { + "message": "Adding 1600ul tp 52480" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2437861e7f036f0706f05284605ad0e9", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "306bdc0afed7dc5064a046c55a3e5798", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbed66b82fab9f5fde93279aa9f6ea1f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "439638f32d2e433f7a7283621dc2c0ac", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fceddcf89ffc3a1a974d1ba3cf74029e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3ab52a15111a4952f8a8994f58ce269", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21e2a0a46773efe53b0ba09b1370adb1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "402372eb1c4a3b6a5c50be408a2e8aaa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "065033bd24be513e9e6fc7734b8b1cc9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6ff60b89b9e5ffdc2fb46d7aa59cbd3", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32c34e75dc36638fbe94ea3fc6521b0b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aec57d0597528ff5663d1485364ee378", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd7c5e65a3d7317b435773ff85478ef9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c5b07dc4bcf68e2db2f1053bf34ddc2", + "notes": [], + "params": { + "message": "Adding 1600ul tp 54080" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b0d9c5544f557d417c412da4f4808ac", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6097296e96bda10dc5e2a14183e71d56", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0aadd04040370262851c4f778cc42094", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ac503bf5a100c54f6bfd333bbb96475", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "547501825ba51ee62824119de056ed2a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c66121c257d4821c04a136ac8990373", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1db7626114d163e50399f83097efc3e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77d819b9c746ca53b715efbed9899213", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c7a36acf80ea270734e32f161674cab", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd6444fc664638fa96b67528a231b768", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5de34ea462530194060055f304ef28a1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09719940c57d16725859dd9f1fe2634a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b9fee8950d825e350c850f7e1eaef3f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a76179768f1ed6c2e891c8568b80338", + "notes": [], + "params": { + "message": "Adding 1600ul tp 55680" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5d217d2419d14b4ea8a79ec6b305046", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9616b1904534e53f275c1c43f71781fa", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2effa09e5d123284425a3cab46e61a63", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19171aebf922325c1ae47d0478c28b00", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec1b450a91df80cfad4fbc487cc90929", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "342a598a541e501e43c505ae168fc9db", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1c6a916c699bdcd0d1e47c581ac21cf", + "notes": [], + "params": { + "message": "--> ETOH Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a00704067ea6f3bd4c7b4222d6eb2925", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7240059dbf46c410d41bf1c9872f6ce8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "331bd9d372c7cfcb28b84c4ad7f42b50", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1972179cde01618c50c3d9a1604fe425", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd5d5bb9ee1f66ced95be889ddc10902", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d41b235e9b7a6bc88cf4698573dd79cc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c60f14f72890e84bab8b762e8b2d04e0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67621a72895fc4ba6328bbbc965db0f1", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11cb3a018f41c945f81b43cf674fc9cd", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2a807c5a3ae18a4db168d1e756bc0b3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "033dd16c901680b90efa0c36418b13c6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ebf78ef7cce5c751a9f3b2dbd891d85", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "deb3311cf7055ede03b7320c33c72841", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a74e177ea1e3e7b1605a486b40e8b347", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "858b1c1588fafeef3e89377240599c9f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8f4e8021aadb90213b62a59fe92182d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd680c0d9ffa1925785dca701c9934b5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8023a5bedcf7c6c2e93e3c1bc3de4cf4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10199b042cb9855b0d59bffe36d42e45", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c828855571ef3cacbd22dc2d86b3a75e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97d1858d488647c952e45f2fbdfe584d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32efbc900226056372a828e899bdc118", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c984cfd94cd587a9ca3b9ab0cdbf4c4e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fb8fdbe7903487d8178d808616d2bea", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "239bb519deb6987f73b650d393358cd2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d521896569402d8256a2631d4855b75d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45c341eb820332a4778aa5c76ae3e203", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfacc78d104b0742a4cdd28128f1b044", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5d3b868f41644c7da372754ae9c5ec7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e849d5d9e5ecb80a534610ded09103c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37c936812f2a011e84a29a94c6b5bf19", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "673d0715d3e50b4eb6af479999f0cb91", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66a49f9024467fe145a025bf4e0fa64b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2eaea084c666fc45c98e2f80e26b31c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13044297a2d9529188c852c370830a3d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd3ce1430172eafec8a93e58f6854b22", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f0fb0798cde9feae0b747db8d9dcb9b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc093f4b58d70d239cc8ee007e842b6e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b23676cf86ce9f6a98448af9cab8899", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7c2d7f4d669d5d4865e0a0e5583cac2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6ea55eb61e87b5d97d7ca9eeff49630", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2eb6662f0358eb24908ab6ea02103fee", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cb4fcf7ae3d2fb74659316a38730507", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "879638ab3f7f2936346dc461d5ab4d38", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aca6e8c29f8b5346d8d09b1d803e9dd", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b91cc398d17d55f1f0030e0ca2ae796e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "908ba7c61dcecce38d96ed1bd61b2130", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a52aefdb71e857818bc9c47ebd68ac7d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4df46faf660a1988d131272cbcd802fe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adb71b1e4a197124f179e0c117f49146", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bf6439291856714ce34d594c9e071d4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c7159a3e3d182d605dfd28969f6f4ae", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6cd512d02e7cef4b42a82bb625576912", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "627919a107c44e148f1f23f03293597f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e1415c99741d2d126ef7a24defcbec9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3880ad8d76d508ba66715b95512bfe36", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2adb34ac970e5a05a9aeb52070d8ffe6", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "970c97da663fb4bc9c8ae53cc6c19370", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79333c79500aae287a51330576f0386b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f43a9ee5365cf131187461132cc2a6a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8c2658012d20e6ed9b47c89978237bb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bbd26304470abd4487ae2ecd8d570e0", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35cd641da21d520613df6404780c2bfa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bdfd8d97baf4af8a28e8b2a4bbb1ade", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ed43cf4e068f38c17a46506edad0e71", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f169a34bbb777a5a80da00cf66fe947", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a006d9f6ecb3f32a0ee10751648d0812", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8eb581cfd6633f768c8dbc526339acfc", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1aa5181e01c32100bdb69a5288ea2f41", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb1d7fc785c5af45e5dc86e5c649c992", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfc2854bbbcfdc18b5dc1fb38e6d5cac", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7846505f66b8028e679b71cf585429cf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3fd8903a284af13d9e98876252467d3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c272865a00773f4acf914acadbb1d26f", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "386eab4f2af14f438b8f2f4a96f64cde", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e74c288f6af317832ce381d37cf037f7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6e60ad81c12823fa079197ef6146dd6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab47abdad0fb9bb32f28a6982a4c3746", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee9c8151c24bd92ab45f18a2f81c8d87", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e750240c40a037bd5435b3a2197143c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dece4804c53c4674d9f03461ef4054e4", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d8cd47fad1e5904579bc7410c6a055b", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7fc37ff67455801a0dd6d6a9c49d75c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "669e5e389fbbf7c63d36f675b50f421c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27994803c905ac308ce8ddc0b1c00819", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1842c14ac37d62094bd4fe3ae37c3c3", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1eb1662ec215775f0f9f576c2d4f9a28", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "095d9700797440b480091d1e7d5db1ef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c13e1f298598943ed268b3381228a5de", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfd1caab966926da8582540988c9ff07", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2629a0565edb0590000cd26dffbf8812", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b45da15980fe809b1a5b72bdff966a1", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "982cd47054b82ee81626f313ab981261", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "642a93c17d4f7970e1ae91fd8fa14005", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5bd1d0d9a11bd78b0acd0fe05954283", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54fdd3dc22158bfc213e2375f465c812", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e40c5272c114575d0bfaf57edc426ef9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "276e2860da67f2848780f7db2f72e451", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "763e5596ab898a4d516c739c45752fd3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48e72396bcc141d982ad41522455505f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce6fd6445a99fb8fad056cf7d85951bd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73b3b641c5781ca1d27685fe76d82708", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e8d21ddf2471f0825775ad200adad72", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8a4ac042da8bca0e1b3f7c1969f475b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ddfb3ed286b7b448f6c21400c0a6fe42", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da7bfdbbdce95a971f01471a405100a9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aeab322be6c8c7e6e81ffca32b523852", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bdb41e7625a1e01889de9b1b162a5eb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fec37d2a30666319f09fdf70b677304", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d7d8712f6d30710e1db6a64469cb9a4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56c52b6f39fda5f695fb427aca4ad9e2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d5e666fd0a9c7c634582f22bfc16dfa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50f49c8e2927ab39733252e54735d2ea", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d277be188e1cf479c5db81a02481ac93", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec544b9108829f163395f9374743d168", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91929636f021ba4e8220b493588ad121", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f96d716b918fe1d676e4cec31a14af87", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2610234471053a3df2634c2af70ce6e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bf3100d73d2cd28750678d9357f0d87", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76b636ba46e84a5e8d3a4793be242453", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcb070bffc50a255d3e61efd898ddf7b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2abc735a2c34807c4ec68ed2195d4d4e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1963d9954e3054445c9bcac299dfd1d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "debd5fda42fd047dc25f26ea976b64df", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31d9bd39d4a92907ed1ba8c8999ff120", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4579c2cce5c565a383394f34f748c4d0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7da6f426ff09b9bb32a42a9f4c42d1e1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87a41aeaac84dddcc7f197192038dc92", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5ac623bdf13e63a535f9ec9ba2e12c8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7ad3951c6c46dfdf7f4363b13f1c9bb", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "465b6c815c6c2f4d667e5c79f1da3b66", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6020bc24dfa80db9d39f23aa8699974", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fb1f9e13bb1934cd2c2d5ab61957ab4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7b68facdec4f8265bf35e2d3487864e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4c0d3320f460648e48bdc24a1e49cbe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf3e27f23fa63c61935ed1d0f360ac16", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2856a2f6cfd8432d48e9f7e1f059a280", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9951d43cdd8056ff21bca9e5df751295", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68c64a1db6f8e92f102de278ee9491e5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2560a51d2abaf3385ea8e35eb0e00d4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24cabe3b6039a8fbc6841eac25103988", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e28f4568529548031d1387709853508", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcefdfd0b52331f9e62fb6ddb17c4be9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c64ce454f2aef4207806f25eea1d27ec", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad88748315866837c0dfcf735f066ae1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14c1055f417c539432ed477758440e79", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96637167c24e907202e7910bdbc30bd9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf74f6e7c5426c0fabc2b2f980d8958d", + "notes": [], + "params": { + "seconds": 30.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ed9e3c0cf740eac201f937407edecbd", + "notes": [], + "params": { + "message": "--> Remove ETOH Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5971a953d5659973f77f7c2b7ee87f9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c8d751ece1415c39f873acedede5c09", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "309e1afc9175f4097b7b5e130d8717ad", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f95dae2e9fc6e935a9d4ee2e2d35f301", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a79214ad99bbb03cda1d1874b6f7eee", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c8f8832b3cac01d7c364eb2131d6fa0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7833050727ed8ff28d1efcb0ace5ca0e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c92819c0d6498ced64104991d5757ea2", + "notes": [], + "params": { + "message": "Adding 1200ul tp 56880" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35dae49822cb36a5ad529d8332b669e6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77863974c0cc7e54c3aba8bfb81cbc9a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e6588cf40134aa5ebca4167b0de7b7f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b05979638c049aee9c2bf174c592128", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08abd565d0574bb6c99bf2860140ac71", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eeb9d3654330f3cb61a3cba11062587a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "501fef64f3351d59cb875baa6a3034d1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "719f609eb847975637f3613d647157da", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62b2cf378904a1259b6336cac53f155e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "407bfc18fb27bb8ef1692ef8639731c8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17a266e52a72cade3ea7beb6c7437c8b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2064fed913beb7aefc15c275e74e3ea8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9c4072af6773a2dd69c7c23cba124c0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5aef3ef2df9eb9d65d59fded40f254be", + "notes": [], + "params": { + "message": "Adding 1200ul tp 58080" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fef7c4ef106f315c3da9dc65ce4c294", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02864e3cfe1968db609c084aaa0f22e0", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c0a99f7523620092fd98fa993047616", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79a4030b8d365a47528fbf9e323c2c8e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2db436510544a105b22acfb3108186ee", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bc00b8330e2b23d9fccbd4ba875604d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e6dee136c925bd5eb4c1f696fe69107", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e226d07b5e81b49ddf7d6da50957e98", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3ca75e7b8f038c66b98ab795362b7b2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "318f1fb13f570f88c1bd7ad107e67f80", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69f56fedac30bab1fffa811230acd661", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28c79859cf0160b15494f939364571a3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10a07d86c97043abd4c882509fa7b1a3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1305d6e65f2b785789a9fc48d380f984", + "notes": [], + "params": { + "message": "Adding 1200ul tp 59280" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c34a3d88d5f503bf9384ad1029dcf046", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca38883c43117eb8b5e6615718b1d171", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76c1c5e1c285b811bebb82d95ba6c3e0", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "935eedfc87a2669b0b4e501a55981172", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e37907f2f0ee1d15605842ec147abd8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "057845540971db0f88cd8c3a3ec103fa", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fadad6f44ac46d64e28792f7309accb0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78646b1b4c82ec81e1145afe660c6446", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2de77b529b4f4fbb526f792af55eab79", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "658a7b3f637122ce58ec745ca3551da6", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f04ce9927bee64d654f241118fc41d21", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "791b05d31da3b9662797e115bf40889e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59ec6139070f32ec6ba9c566e6f19ad2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b955eb9b902dc9ba5de95da619dc6534", + "notes": [], + "params": { + "message": "Adding 1200ul tp 60480" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1c589d8f12013a42af5a8feda20abb8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b4a425ba7ece0846615ff427fae4188", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26c9e9d4f3141ddf519d9cf1b62a0de4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08e0dbe5be5d04fc15b8e0794b2e248b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58767e8bd13b1f7356a20bd5e1735487", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73bdb106dd00b42bafc5431231480684", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "914ddb86c92c2e77c029b0a789b3d97c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fc68531c04951b5092872d53f3a9a8d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64da57f25079b0598035dfd23bd872e5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52a16285454809abcbc03528b3487ba1", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61993e4204efea0f882abb9f4abe1877", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c02ee61e2f42ed9aee43faff66b1f92", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7874cd9fbfbafe9181f9982f2d038ec", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ee4955d4b759015f3eaef85ccb14664", + "notes": [], + "params": { + "message": "Adding 1200ul tp 61680" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce12dc5a8f063011db263750e3deb4ae", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "126937606e208c35bb3eb0d3f91cf6c8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03b4cb69e7d90ae901b6214ee77f7cf9", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f5e6f60ed6a8a804caaed757167732b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "633f864519964fd8ed4a6bdf2fc77bb9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca73b8992c78be126d18f6f27cd9de20", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67b774df984aba30141e358bb4e7b293", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "059479af32da76ca08696cb08d90a8b5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a32ac9f7b718192c526771be223126f3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33c9e3a86ffffc6d23243b2437cb701a", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aadcb03554d1561c2120085248d5f2a0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b87e31d9fef1e9d1a6c2b139456f84e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0987e7aafa565ade2d5dc441711e7b5c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b695af217f24a120c98414805febb7d", + "notes": [], + "params": { + "message": "Adding 1200ul tp 62880" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9108bea91a7b68ae512beec885a46182", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42dfc551097a2e56720bbd5c89949d3d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f15699e3a262319bc754c67b4a131b2", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16818df440a7a17f2e8fe0d9f09fa2c6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12edb4a49adcfc5c87c3fbc7ea8e1067", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd4a03eedbdef72ac4f981e18a05444a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c198e616cd184ae5d0a66bfeb06439c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "307de14f98b9e55375414d9cd1e188a2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "020716f50922c131b8b99a2330b8978d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a482afc1a304edd950585bf410823ecd", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "288bfddc0b3f2898910fb10e01851770", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1f3d63d34cecb868e9a8f5414fe095c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13f90969b1a16c2aa5d4f96a98d6004e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "807a412f4b0703c8dbe21e15d3625475", + "notes": [], + "params": { + "message": "Adding 1200ul tp 64080" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c54d075fd0cb4553561bbbe76d7cce0d", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00fac70d189d0bf2dcfa863b32827620", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc8241457159707266bc417c5507ef51", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a47fee6414c2a4a1735a3ec9d7d0d5a6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34df7aad104096f1d4e3077296707dda", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b528d98da88a180b14d304438a5ba241", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f1d747071093d1a2346f797aae18b22", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "112fc75ce2f109fddcf021c45b09c82a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "482be96ba85a631b30f77909a0b275f2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ed792718c7cbdd7bb03ad6f86e05ddb", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2a4dd0ed13a1e78ab5e658b9cd49b8d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce89aa33ace23f213ae19286ac88273e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "774d3d84032928481f5e748fa3649d4c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "639f8bf1a20bddee4964a85691400a08", + "notes": [], + "params": { + "message": "Adding 1200ul tp 65280" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d0b162c52fa6e097b03d0317452bb67", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8be7c08d584545f7a9a68b1993a1fd42", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f249e382c3e2d8f1a51527eb17c6b795", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc6f1dcb3cf2b5c229f8b8224bd108ce", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e1f556ccb9bda013227880273d9e6fc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9cd8438857cf070a3585b4ea53860a2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "126ce8df3662573e44a3f329bae14b15", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6b74d21b9c4a7f69b2ae35930317539", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39dab3e996733d453f90ca86a2218770", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7719fcf531d4ddac695316840618cfb6", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bdacab2a7edbba60fc6ec6fa08f04c2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61e01ccdd1eec495b809ff856d7f4db2", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ad76ce93d34d63f2d242cbe533123fc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b85970d1f1e96fcc5a226b7078f072a4", + "notes": [], + "params": { + "message": "Adding 1200ul tp 66480" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6e92c54a9da33f8cb50336a16fb8a92", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "335c8d1e31ba48c96778c60f1bdb211d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf62daaf4b2b8e1ba7a4fe39707c0486", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1166969cfc5e95f6f5e6d5f4104f0e0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fed3caeb4829434a788eee5c40a94d3b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecb51d77009bcdce431ea781e2368c2d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db8016412e84689b0f6a3272706a1d7b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dee9efae181f36dbd8920c2f9ad81d43", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2ee84d68f53d81910acebca469cccea", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95d54bc25b3c96a8ea1e0cdae2db7862", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93360739989b9a17dc56ec9781debc2c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "469c4ffd3ca01b01afeaa5a97a09e3a9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a89de5bb88cce128b345e74f497e526", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9524015ab80778aa78645c290ad37caa", + "notes": [], + "params": { + "message": "Adding 1200ul tp 67680" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8db9ed9ea4e602b412d9977f51e9c264", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57137319818531035cb80a8a1c6c6f2c", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cd22c8cbd49d6f7c4c234cca3438d19", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fa5e9e489a8a53ae3582ffc26d6860d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a135c418584af278f85e459da69babc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e711be33be7fee65f114b1a008a1fcbb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f7573665b638f5af7b48bb519e89071", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6709e0cd6163cc741080996b815c339c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df09377664160433f01ca002ae7ae7e6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f300e6e3a5bb65d3a796aabbcb7e187d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbe95799b66a9320ad7a2f759329de6a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a65b01d09ece91bf53ce21b49074efc6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7b77f4ca217e35ac66b4ab4399879ed", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1274eba4bd4787141cd324f008c41e17", + "notes": [], + "params": { + "message": "Adding 1200ul tp 68880" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdb369cb8d01b4ed69b5e5d1ad0f48d3", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "747e1c6a70a386cf2231d156a84a3b05", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad1dc1c3b46b4fd92205e85c210270ab", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3e39956fd97e2613f7ca385417eb7b2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "757718b2fa98601db4a00532931be7bb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e15748cda37d3b02702694941767c9d1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7efbaea3be6f7e9efcf997b66e3a552", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c32d29dfcad57b923a2c63cd2683247", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3407f32890a2ad3fc2593eb19d0c4843", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9de6d2b67aa2a42d98b02d882da30424", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efde5e2a10542ceb4df2cc303ac509ab", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dde21fad357f065c724c561bcb8ba415", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "701264d9e2a6ede2c3a871b7a434bf45", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05293cedc58e0c9a09356f75eb9fe7e9", + "notes": [], + "params": { + "message": "Adding 1200ul tp 70080" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b405ebe43998e8e2c7c1db921bed834", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7f0d017c1ebfa810f3683665e85c07b", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fc57c5e529038135d072a91e384d4b4", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a5eb68f3d57869708539da3348c927c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5915a2af04eef7b50fdd2c9ed5dc5193", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85a89f039a301c9c46d4cf8f8de42068", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf4d6e87b6ddc209d2bda12710df0c29", + "notes": [], + "params": { + "message": "--> ETOH Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd7c2f341e03bed897523e675f2f0aae", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ce479567949345cf3d1da93b6837b88", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1a4a6b66a29924fea0575e513affa66", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58aaf74fd714e9e8cef83f1e8ffc690d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a8f046afdaa30bbc425a59684059fad", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a453c438a90ca48070af3d236b6e8c38", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8a495de3a319563c238abf465e43a1a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "332125033654579aeb86a9fe7c08cbd2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2dbd6a3f4b19acfcbb21a5ab30983a6d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39b263479a2a339b102c3c04beeb8c53", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8af12b8f5d6fcbaee88988bf291f790e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd91bb04f77d002ab7c2adb3483b723c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8bf0a2204e8adbfd1d7f848212b2570", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "166f6249439a03a4a5e3c15fb51beb3a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd65dc3e80c2c6e92cfa4064b33c7f21", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "062457d57c2172ef867882b089c78e02", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8b9164c3baa780fde0555d75bec647c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b84968e26989c1a5b563115f654d18c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "810c687664ef8c2bd86da29577afe0b5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adc204406571bfc3a378719099f1fffe", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bec7370406d75f844199e8e279cf876", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56e420bd788b67a7e867290658a0202c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "855338462c8acdf8e8e0504fc71ffc5d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee6a080d5413fddedb2b77a0043eca3e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31c257f0e3def3bc2a271a4c9a510231", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d5c23df0bac6ad9f8219909d41f79ba", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bcf9ba96eb74b7071faf0069b1ee4b2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18fae3f5647a2ee90ba141bd13d9d9e7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6ba4688cc41caecf69d8dedf9cf8ddd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6552aac657934a2eb712846813d494a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdeb46920a02dd1c7f8aabe50aba376b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c89235dacbb7ccab0a8e5bb9687c7b8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "262ce8a92438dc46ab0abc98c8ccc022", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8be9e2ef2649bdc9a5abcb15a51a3bd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac9f214bec7f642b1fe354e8e99d1019", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3068e813445a86b04b9ca3428038397", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cabba435460a5ddf8f970aa91adc307", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88b5c877ac4f919f417c6b1e14562d58", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d357db0c33441ac0f2f845748a4b975", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cce80959b11822302068b50a9bfcedd5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce6d7adba78f8d1865c8636fcb6bd6b2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52830797971bcc7c6cbfa9eb09334dd4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85b9a5784164d01df5f972b9063fe2f6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acad5bc5cc55a79409a570edbd7cc7f6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2eeb4f370939f199a7f8013d793d1c04", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4174fcb1dce1767bfa69d040204b35f5", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "570fb6ccffb7865a70c0b6db1a302f53", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1094cba2164c8e952717980804266c4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fed1c7cdad3856ff2f483db3dbe20058", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "060c8a92e1c0163a418e6196c775a5ac", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27c196bebbdac5ac2a1e181a7f557647", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74829f67d7f65e73938711bb707be646", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b99c4c081aa9341bae2ed9055532244", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7c2c938e3a82007b05f73bf854d6f67", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93ee9c2c8ec8cd2f5c9bfdf1865412ab", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bf49f0c35fa78dc2eb027c8b1d4ee06", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97c22487c932792e3fbd1f992dc15231", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9deaf12ca263ee5ad800b646ac1a5787", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a89ff88ab5fddb7c4662d9a992f6d414", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c856f2d77a8ca401e7b9edafbeb20681", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa4d49a62d4bf93c0e5763639fbd5ad3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10ec5a16c0af0aac499f575ac16ab852", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae643cc41d84df89ab0f63383b87e691", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dd0bbff554de50cda0b8b06db7f4b87", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab7d7154ead310ce0d73a116326d3d63", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 218.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f5a8a17dcc21dd90b4302ae8a0029a6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 210.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7cc60d980a912c1bf00e16193217694", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b603942e590d9d27782f86f30baa5ec0", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ec1b0d547582587088974179c10da4d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cc6b53d9e66fcb711274f28ee725d7d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "975cb64723f66658f95677e482020454", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13a44fd1b112059c645a994de1429823", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d551f2a720a04703c792d6df740a9191", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "332d7c10eaba8dff1f26c25aa05ee9c7", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89e943801294efa5f9d051f7f6e14c93", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6dc3809d67b320dcacb48f52ed12e21", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5675d001cc562325b1602ae36e6852f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "412e945904a1103b24217626bbb156ef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb60b26246e30492f0b7100c8ba1b9e7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b36acaf6546fee684bcfaa07ce2cbb95", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9874103bde256c369b1c526a0ab57b78", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2ab806d8cf08056c9167bb26cc825bd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "579f31d3e6b81acf78088ae000184bb9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdf1fbd13d9f6dc53bed6c053556bd83", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e418b156c67b2b07adb1ec700be2326", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5744c875146162c1a55ce0d06a2df48a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63ceefe0aca15ebb796fa2f6a30a8ccb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7c66e6e7e51e7d39789cc2941e45eac", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40c23d92081c00331b1e3f4a357779ed", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "968828c274430e0e49cd16ba5825a067", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "caf91ccce23f5707b602456775f232f1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7f5e88362676b3580d1beb772aaa5d0", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5ba174739015dcb158aab3136a0cf11", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33c52946a685af0c405928047849bd40", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "698eafacc3eec5e2fd83df16c60af3b0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c5e6586d2311a0d4fbf944514c74c98", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1039efcf7611c4dc8a1dc97166fdcbb2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5399d3d20b8185367600826188df5e8c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66cb65f1a577708ac259d248adf4ea7a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e55523b06ce0d2cc7dd8ba5ac08234af", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0b5bf4f48a94a07721fc61743218630", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "109b7425467a64ee0094c0307fba5d43", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0aa5db57bff83202df2262528504d1f3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f44305c413d92b7d8f5c67de3a97d99", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6506e1e29f385c7161e36d6fe10ad588", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d793f429eaff6483a479ddf2cdb5188", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "861752f241744f9c71ae4475c44dc8da", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6ea26c15c4bf1742249a126db71b416", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5971615b34a343554fc7d6f57e4a385", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40d06a3598fd1d63bc824d52cf839606", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3e52dc7f5850a6532f8199af82357d6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00e449978845c71eedf06af6f115c1f6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72828071998d00b030f587ce19d9dc2f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd330103fa8f4a6f1640b07ce2d6bef8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "982fa7ccb445e41aa74f8b97f9f5a84a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afc8eaf19cd06a80159121ab79d41007", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a951e35c7168f1e6263d98881400cb8f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0219a326d53f77103e175c284750a9a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a3531a1c5c95a5d125134c1dc5e5b9e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cb1f32a734655924f0a972ff2cb1a3b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "798793c4731048af639a8e1ffe2784e5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "359ef3c44bdfd7bfa790ecb0bb6e1aa4", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "310e72b6877748dcd4b073a6354ee91c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4de77df29b287afd33df2805c3ae08a8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f383b88748ac966b2f376683bdff6003", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "349d9a7dfdcad4f856f49b7fd97e62db", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bae46c0fc66bcd2536a677d09af92ce1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8efd12b776a0995572dc0ac3200c04e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a17b6672fc89b0968e6afb04e1ec7724", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7544bd9818956f9e0fbf6a225ac13f25", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1fd323fd1052c50dfc5eace66b4ef89", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ed9dd8639bce9a57d6ab4546b7b3cc4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9490f54ed10ef913804f32d9686eef43", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae77b42a52ae198687f52dc3a3f0e48e", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "527f8f5c4c3e27bfa2bc348d9ebd478a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3c235ae980814b11c4df7549a8b7cf9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd3205fab266ea8c7ccf2eae81a1d559", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 227.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00c04e3af361f1a1905facfbc355a6a9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 219.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "585e1850903fd6291c14452f1c69e9b1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "409ff9ee67541852cb39377ebb541f43", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 78.34 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1da2930a81e30abbca04ed855c76bf8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "145ca0e65b88f63305ce8f3cc7fa6594", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9cd81c2885c04d1f481aeb0e15341cb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47a5db4383072961dce88d5ee96d3221", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 76.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e29590b69663ad1489e60285026423bd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 81.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d437d00a058210a4331eb1cff90ce7a6", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3ea6b3304f9028e93a3ab006ba47427", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "829d59f49ea80523abb42f42185ab1c1", + "notes": [], + "params": { + "seconds": 30.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52fde25bf373f0761a2b91e46059c114", + "notes": [], + "params": { + "message": "--> Remove ETOH Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ba6aade03cd576885e38374ee80807c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c524712dac6ca853f169d27d7fba29f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b73c8ec87b9a1450be46dedd1c7d668", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "caa1a901cc24d6b5b635188577144b3c", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8609d523052ed7068882792d56f5b78f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6512a14d120d8a1e4c9b34f54873d65", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce0126da3d50c50b7887e5c59c137cd9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90817636944a1dfffca4e3e050dee730", + "notes": [], + "params": { + "message": "Adding 1200ul tp 71280" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c1ed3dfe3c4d3ee3e50ae2c92f4e607", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fff22f57b668646d2c2b68f604da891", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00b0d116166a7acb40c5bc567be846c8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "852d7b719afa918c516846f8d970e7a1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b370840a10f6a3a32386c632fe7e1a56", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81b3e333a00e40e0e8e3a7c3e16f5707", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7047b95ec74b48d54282520345b5add1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1fd6cea95bbce4c7d39fb085b1c3ba8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67dd894f5a5ffbe92e6925dd43e55884", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d687930f883dee1cef959da807b8ac6d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e22c62e30ad61d69bfb3dd8ed1f6082b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab61ba2039d59e0ca69b59670f05c56a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "743e9574fadc1dc39433f8999a52a598", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1aead97ced6b79c32bb5f5ebf5340e33", + "notes": [], + "params": { + "message": "Adding 1200ul tp 72480" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "732d6c995e6be01db3da3662e2787e4b", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39c7030d1879608f5983eda69ee26aae", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d9f83f5efb2c2c0f61d72d9c298ad5a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2787163a4f91727499ad8fd805c9ecc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "675526bcd02884f747dc49d52c69dcd6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbfce02239996140f9a91a2f8b3b6223", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9e572e54986d06d3e9f1f8ff27e5cb6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d0840c3e6b1f482f1e51bf43a83a89a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8011c5079585b3e01af215ecba108f1b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1412aa9bff2043ca1734c000f57dfc8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6f4d1bfc713c0c8944bc97f3ba92b0f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1772ad2bd28fcb1eb27ff80aacc58a8c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1830bbe32b9fc0c1747e8d7e3b4785ae", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44a2ea61b05bc01afc3bf737a22cc0ca", + "notes": [], + "params": { + "message": "Adding 1200ul tp 73680" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a7f0f9bb8a818fecac47d6879bc46ec", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "467ff179da8bfbaa304348a3530cfbaf", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0526460f7379f728f89ad5d077f6dcd", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0067fd434c634f496f905a1ced4f137c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f4eb6f650dce7442db9ddd1d4fb31d3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "587d3c5d11d9ae9ec9500f5c0cb3c152", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "278b688569ca34f4c8bdd36d8a3965f9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81fa3765b429dbce905598725033dd32", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c5a9b9ab26439cb96b41a7fc8a8ad33", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e79f871215375bac9072e54d421fb22", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ba2431c515f399e07a889b6b5ece004", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "053e73bf447a0029eebd84598c075be5", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b13f653c0eb031af278675e1141a3a7b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58df6052395845404a07345d6f1546e2", + "notes": [], + "params": { + "message": "Adding 1200ul tp 74880" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9661f8d4e645d93f906586f0f26d3adb", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac438ff71c569fa271f82a1970eac0df", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55883c5cb63f449c97ef3ad11dadd0db", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57141ff3262341ec7a55f40d07619b62", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df0b968679f8e48179ef9d298c9d75f5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9cf97d3b133a424256b77adf75868cf", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c850d148df64c7f4b42d4f9497a7fd59", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1c98abc4638ef28e8cabee8ec71d3d0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "427a9ea166917d51d8cb9222aaa97da1", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d9ac853c27872aaa6a95de06df900b3", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "271b3edae68b4fc233d2e23d166d2bc8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e743725ef41ce67b7ccfdf601ece6bac", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f3413051a645c88c3e66a7494e81e78", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed7ad1beaeba6c62e2994cd34e5cc39f", + "notes": [], + "params": { + "message": "Adding 1200ul tp 76080" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d54c979023ef9506f8d27159d0909a97", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19193eba2fc3e5d9d3e3aadf16f5720f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3babc605fa482796f197d9ee648d2a57", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ae2d211c0d42a0db7fa081b0b210437", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d51dbc400a2332e0f3ecce6af869e12", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06ab8642d32bc97f54947b8e5712fa9e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad309231d52a46370edde95ad2768242", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5946b8880eda1ad2805a284bf38235f7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebc0cd5a1e7b4e7797da7fc79ec43e25", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a978e78ae7f9c7911e05fc6fcfa6ad15", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53b58b6671128ebecd693b69507aa7a8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8dd1ab7ecf6e1a2eb6b5fd608ed0cfd9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "408741e37537b44f90a66ff8afe56852", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "880353af5944d46fe977bf5163cd7a7f", + "notes": [], + "params": { + "message": "Adding 1200ul tp 77280" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c64ee1703349e5c83acbff3938fbd78a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7574421152afd0a3b9d94c27c6db1857", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46f6335ab63aec555ccaf27de45c5aba", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e60399ebd18e7606662f46581f2fc8e3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53e48ee9b93b7a24caa69af9ec5415e4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c209f6c21aa8ec9b7fe64eceed41baeb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eaf0cd6a07dc8730393f8ef0b576f7f6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bf00dcc42354da2227c0ad1815bfcc1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f52f4263bb1c847a3db1fdaea08eb0ad", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea85e31be8fa3298304c1bdbffdb9691", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69b4f5250540a1c7800cbde5c82a91da", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cd785c66d47db58a00ead739d0eb64f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e343a858bfb9a56189ed9f0d734f3723", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8aa5b41c59a0ce0bc4db6c8cc771df2f", + "notes": [], + "params": { + "message": "Adding 1200ul tp 78480" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e6ae646f5a5c44d86dee0fc64b24bf6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7c40fa2383c9ed1bf812cb76bc4c021", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1770220fbef5ef721401b51a78fa2633", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2e7f0cf7da7fce41993f8135563a480", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a80b2caba8ec1f23d9b7e97adad3e54", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60a3202a9d3b06d3a32a144d62bd9a6a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4cb5fa682a050220925692e0a30586c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7aa5843e071ef6dffcd53916ec4dd72a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c0b7742c4ee00adcf5426e1716da856", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "256969bd6eb1b0774d75a18df934fab0", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f8887e6ca6dd6406c30d9352809ee56", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6a67c9d803eb3f92cac23ccf4e820fd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b1dc02212f573556ca3fb210d2c8c1c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "248fd41ae0c61fc5610863015a333448", + "notes": [], + "params": { + "message": "Adding 1200ul tp 79680" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eec6f7024588858514b5c6a6c7844dac", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d156ef8b7a0198fca7784e3ddf35ed8", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dbe92e859305d04d875d480d9f7636d", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f1ad07475ed256ed7c263ab067b3fb9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02d9ae7f989badd741b91ce1d0a389cc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb3736230ca4fa115d0cc50aa84c44f1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fd3b78944a02e454173e0776b22ffc7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca39df81dbb1317ca3c1380eae3021c4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cb13b2a047b705d199bade9fe0db466", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cb4ff9e19dc70694f5c7e1346d9052f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7ecc0f2ccc7d51d2e8e0bc684c6d8b1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af3f8f3e3c175bc58dabef99de790a40", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bdd6218c95dc9eb8227f59d7f24bc12", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7647831e34e99b3b5eaebaddc90917fa", + "notes": [], + "params": { + "message": "Adding 1200ul tp 80880" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2119a5a3b8cfb581da842266f1d66c36", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30603b2f947ee8137c8eefbbc458036f", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "389707223772dcfb492432dfd23fab3f", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8113f8c600380b46034372957700766", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc0283187ca114db2938a2539ba942c5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1982cea5bb022131e4b678c0604adf02", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6ecdb39bab4d6eaf37f6a37b64f8846", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c382c99f06b688905958b2b6a0e8cdef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b8563b50a30c575a6fe46b56ad4584d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e90f0c47017b238d12072560d297cee", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e8bde879d481cc1eb3ac18e8935ce62", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4591af226eac8804c20bdd91833cbdc7", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82169ebd2d7f2d176021499edca96dde", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d7ca77c673d4609715bf9aaa7d6299e", + "notes": [], + "params": { + "message": "Adding 1200ul tp 82080" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cad06d3ce2f1a8b659a66d23514877a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc4b77ac5c4cbd36212313d846d7487c", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15ae162c998c3210d1666760c325fc34", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce4c32f38eb0bd494c3f9bb8c040d937", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c1dd3257f6ad5f6d72e11ed90de77ce", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b300ee2e0afa75f2e22e80ca6dc34c73", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2f075b202041f3a206ceea3ada0a24a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e867d5f1f285dd579eeb1224367d976d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d89f6561708c5f563ed4f3d7ce0888cf", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2d3edfe7179662a9efbd7e452ac414d", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "729293aec3ca638ba4d817a55587323d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "906246207d69e2c4fa1dabfc54f937bd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "979422cf86ec0c435565cecbbe0f0081", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c8537fb312790d48baa1701e5039b0f", + "notes": [], + "params": { + "message": "Adding 1200ul tp 83280" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1acf7fb8137fd9f9e86861b47c67fcb6", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8339d330d2dd98f6f78fcfb8db67e356", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55d66a847c7898ed811d1bb07a6a0332", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3b70aca623a9e1d4a6b9f917b78eda0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ffe1f24f9ee546a2f6196463d98c6ec", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89cacd4cd0fa85a43770bd57c33b1516", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17a59a7bf1aed27fd2b2a9740c0e0605", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "146775ac2da0274711d11f7f7e490f40", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "394433e87f5e46c40df1e69df1360f70", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -34.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 41.84 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f44a94194786717d0d4319774673a41", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f316c969e7db730c3b3bbda698984af2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.09 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4e9b93c0905ec2413e8426639eaa806", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.09 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0d6105f012636e78f8ed35b7b5c8f60", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 78.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccd467f69ebf1efb8d192ab06373cf01", + "notes": [], + "params": { + "message": "Adding 1200ul tp 84480" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6fc7619224e5b5487de93ffe15ea35a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c4329056b3dcbfd1e9d32bad67e56a7", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "821469cd9e47006c9a889be31852076c", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "161f42cd0bb53d1b922a103cb2f30b27", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 36.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b28d55c843a94387d7e10838e744f242", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5a4b7842187cc9c7ada20aac67270ef", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8516e49a78f62d643436661e159cc6cd", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d915f230aa09c7348e7550cbc3848fa", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0c2b22020dfeac189ceb4be4802643f", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "slotName": "C3" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "B4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37df1a22c598e5913c01a8c1ea56a5c7", + "notes": [], + "params": { + "message": "--> Removing Residual Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8e2e70ddd482280b8259baaf73c44d8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37d608332a7705d8b7796bb62a76bf4b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb516017e46ff8396427dd104e7c2cc6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78863ab07ad3ed53367a93f720df2d5e", + "notes": [], + "params": { + "message": "Adding 160ul tp 84640" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcd01816000389d4cb4f0e813839fbf2", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34ec856957a7f429bf1f2b90858e0307", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b227822e8288326c9bdb1a6da5d5a53", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e8bbc9cde7c29495e21b8d826493d39", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d917b7b6ee24d9b6fe1f277c59db037", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc1fc2cb1ffc0cd7b9a2a2d51bf2e071", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "833e9d80d7d097b7a58a5760501f33bb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8d8a8567efa4d7ed5db423247c2ed37", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d25cbe5a091251a2733c4d2fe53b9ac9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0089c36e0e76cdc23c1f858e7dee12e6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c70bf96df23f1a96e9e8a2243d27e95", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "342631361dd7c459e935b1a16cd535b5", + "notes": [], + "params": { + "message": "Adding 160ul tp 84800" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3171aa3328e34657eece185b1f2ad381", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38b5095f123b459ad0aa6f07d272effd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42d0d1eee623550cd227298070c73ecf", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb6144eac79739ab66e4023dc4ae1632", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94c864d57061b854115f0ebcdb3d7578", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c633f5855a4baedf4061bce802cdbaf8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba5022193464ad32796c61858bc2e82d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "694a51e5a315ed29f2c901852d74410b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f156918c85b74ef44fdaf65757c8af8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c5ca304ae90085fc1feab1cca3184bd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "326b6214446efaed55edfa8828d5c6ff", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b526f60b0408b0ccb69f864a7473248c", + "notes": [], + "params": { + "message": "Adding 160ul tp 84960" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "935826dc5cdfe9eb4d94deb44e042574", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55b21b1abf260d105762ac11cd66eefb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c076a8294743fa884c40c668e989f395", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28ac1b08f94f562ff50abaad076845b8", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "373f87404e3eea83d9150daa95a744ef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e377ee384b316f38248f72b4661b78ea", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "150544acd25398c6a8a4749d37497d83", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fc7e52a5fad3e19ef567bb74fd9b7ac", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eef507170eb48571e44c86c94bbebcd1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5f72b8ac48bb4d547e7e2f203e17f2c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07f73dee6988d386a1543eb92b171186", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19fd817714d6a1d43f87cec27a33b279", + "notes": [], + "params": { + "message": "Adding 160ul tp 85120" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff37857f3ea56868d4e6a3014d5897e3", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40919e6ecfec391a2942527577490a25", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d3715e7f65de14d7a2c40b90fc4d995", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cb9b23220ae7f70856c07ab07627a05", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f23ca6fd2377419e35e57d16677bcbf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c1219cb93b5d22f12c9cf63e8a56804", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8afa40e8efd38a3365979f71f543e9f8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65ee6b6e734822f5fdb1d3babbdddd48", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "624653aaeeaf9a2a562034ad52632ae5", + "notes": [], + "params": { + "seconds": 30.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "696d4e8d2e992b1ed2efeca32757aef1", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "764c5d45e282331f6bf2402a1ae7e210", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67317553c218372fe1a2533c0de66240", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57e96ed132fb8fc2ea0a0aaee0801f07", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a72a1dcb957fd7ebaba74f93bfd4097", + "notes": [], + "params": { + "message": "--> Adding RSB" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47fb5f9a3d808edcbd80a67b1043b43b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b171bffa4296a04f66bd6848b60b2087", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4c5fed624b897bd8a07d548c991325e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae9b38207bca66175c20a15c2a4ba9f4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af9dae726f82be722659ec499b262d1d", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf08feafc6059c17e613acf2eca36c32", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04f59fa5e1b28c6488d488bc29e0a773", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0ba787d988721a13e1ae9cbca0e7b45", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02f742c24e1d42c44e8cf05a44a59c25", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fd53dfd3e869d8d96cd2409ab490ae6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f7ced215f1f5b8a195982ee5e5fddf5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9ab9c829a2e2fe10db77903d925cae0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e634e086fb591fd37e82b0743a3905c3", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb64d58d56aac27427fccfd132290a4a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32994105204a2c54f13c3f3f4905d9db", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "621a9570526c4c204ea23451ddfd0dd7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bbfe12a4402ccd011b30d34bd564b69", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69b7ba05f0837d4001015fa76ffda194", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6a6ffc113771e63369915b6a7fab999", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdfcafb1ed0073d4a084a4680d9321df", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81c9b90de3292ab8084fba75f819685b", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39a7c42b2615f21d8390978d033366b8", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11e953b249220c60b16748215f97af28", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1da89cd89e50ea3017f7ac952d7ba785", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b682a61ff1a15a06e52162cec52d111", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99b7e2b2e0288ca606d5acc8041af0c4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2137e48522da954f99ca8259c3af400", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6ea9dc9846cc63c59916a1ad34f4796", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45f05872ff5310e7df64f0d470d69ea7", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "031cabc326737b260ffd4c7221aa5918", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39c1b4ca54765a5863cb28fe9b791db0", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30d82af1742827ff41621db50515aa16", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d177b6cce9b74fda317a292bb61c01b", + "notes": [], + "params": { + "moduleId": "UUID", + "rpm": 2000.0 + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7571732bf064c524f762913c8592ed3", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "027eae2b269572b6a458e4508fcb9a9d", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f6b41d7846f68af1ea81eb47d618813", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ce42fae9e52905bbf9a42e921c2656a", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5468ead40f00b6dbe462691cc09168f7", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59f5d06e1f1d112761ea5d0b81496276", + "notes": [], + "params": { + "message": "--> Removing Residual Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c44d86d001672463292009078c822c60", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b2efcc68451cf37728bef00356a3549", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3f8c1d89d2b389434bcfad35810b569", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9aab561e9c91817f6e317052ef04c495", + "notes": [], + "params": { + "message": "Adding 160ul tp 85280" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fb7195074901104e35c8874a6a4cf06", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd7b5ff76e06205c61d555f44e5af8cf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "676818a3653d9c2f17f166d88a336051", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ae6be56d1e9e329478434412b641a97", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1da787debd837a0587413abe76e7107", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a34059467b32a7449fc817ba80d9851", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8eafe3bd12e1ef2694966fc8a4247e88", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab48b8a829124e62a4fffd66326e5c4e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "102dec81a97e1e72dc5144672a6bcadf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64abce43621d07b0ff4224be552ee697", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ee3892bbd6096d38a5f4e0dbd9c96cd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70479b93fc6b767d5f977ed894ef70d4", + "notes": [], + "params": { + "message": "Adding 160ul tp 85440" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a470c301df32152033e19b3aeff944c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a77a803e45566fd8e98078a8f400fc6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5077d1100050f5e69c143c13733831b7", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d63c6c38029668459a0c5aae4e909c3", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab8b0b0fe7c146a7d38d5ae072862aa0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b1fd987cc67aa427d036172c186575e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7587381208fed04ddb128a6cbf328647", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f227cc2b6e871a67eaf467516065c82c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d281a5d2740cb54590dbb8372d51563", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "567b0f4d504462a1763d3410af633a54", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af58cd33b1e4bb4131043dc94e2c7be3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "964f0d0bb38018b6779ada9de6ebee68", + "notes": [], + "params": { + "message": "Adding 160ul tp 85600" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c45a42a080c37d4808a1374565c9f5c8", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0dd8d36cf9cf8d14c258e7b8d0b3e1b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "411f2ebaa4093b57162b4b94161ef4c5", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4119ff344d21680be2ff82b97a5f8d5e", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffbfc6b49c325aaec36bad99230764ab", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e1f5803571b0110a5e888b4d4aa7d02", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "034db5139808d3b9b25568bc415cac68", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "040b48bd7766d6cc15227d6a7a7c567a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cd7bc3d32caadd4abe5cdf7d89ea50a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c28cfe878dc220fbc8c65ec6454ae3a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65342d603917e8d3287959ca265f1a1b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6a14005dd7260861ddb20be9787cb2f", + "notes": [], + "params": { + "message": "Adding 160ul tp 85760" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0955dbc17a1030821e1562833f6f3767", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c2ffb718b26c59caa314775b8bdaaf0", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73673a9d718ef6e339c2803d6e7dd358", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "131740101798221e76af69cdff140d71", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a32f02062a8edc760c86582387ff8f18", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f61d5460d2fa8d4e7967d4dac4f9c559", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "769e00267a4e770ea2c8d9d5f3bf7850", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9764ad0a871afce6d5e690f600ea4b6d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "012fdc0ac36d3c7c0be713312dc51f20", + "notes": [], + "params": { + "seconds": 30.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "954f6e1ab98f7740b18dce901f524822", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "originLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0011a2ecbb8a806e0610bfd2c2e274af", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7177eb89eee7097d2adb12827a32ef22", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b888c79bfca90d57bd05e282fe28ed53", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68735cc51cb904468dc6a7f5124364d4", + "notes": [], + "params": { + "message": "--> Adding RSB" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e964ea1c3aa591bb95edb0429decb6fb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40c48d61a0dd1fd69fd6d2897ec7b5b0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "362abef768e9de1438569f0be89d0e24", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cf4cd59698d8ff97418708a66250159", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0d03bafb12bec010e0fc77ce81c138d", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e6ab16e98a638333aa485a3b87b0b59", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "daa918b4b5602866c69fc470ce16b9b3", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3ea898828cf97d29c87e71c9c924a3d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c45f62db7e5ae27b2fece879b8b10f2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe95c34b03fde17e4f0bcb7aad12c41e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1edfe6bb286b21896b95e014172e9cd", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a496d314242865fae41341d6bfd5fa55", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d7d02af1801e0c01e8892990c04a884", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e9bdb5c03bcbd98c9ef93bf1e7b9c19", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5fbe2d1481841dcbf0b3185ad0605c1", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "802340e6d3a5276532d9205db3b56dd0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f8a662fb3d574e41f70af7096a84db8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "617534596d8a0272b468fb412f89ea30", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "001696cff09d29d790901c1d21266602", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9561b8cc16119309dafe08f4ccc11b1d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df3aa4b8432aa5dc114000dc3744aa4c", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41d7dbd640729cc1e357198777a4a182", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4330154256ecfe5750105d850a229f00", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31d5747af33707265b02aa16d8074e1d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6611a759ea3953f71f32b3f8ccbdb34", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7502511ee16ad9b78430c8ad25c0e1ba", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14edee07876de288e855d55683937c02", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4ca7d5e24043d0868c858a6e5de00b0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7372ab3e7033f4cd569f6b978fe6f5b", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e11e1b1f1fd2c89af853aef52908970f", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cebba861975e3a195ea4c32df4d2958", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5529f8fa9550025ca84c52f5fa16ac4f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e33c318c2c5da8998757d70feca0b92e", + "notes": [], + "params": { + "moduleId": "UUID", + "rpm": 2000.0 + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aaa027721f259a8fbcaf409e62766063", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58b7331725e7750a84271b0912829341", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86fadf91e2b4f23730a75a045985c1bc", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a69cea008b84368a47e769bfbff78dc", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3fb6b6d783ccf7b2b6d8ff3ae8c7384", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32e18f94e2948f8f029c4c4ab4a2abe2", + "notes": [], + "params": { + "message": "--> Removing Residual Wash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca1fcb74b8037a534662009421facdc6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a940eef49112c118aba0c832ea4dd61e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb6381649fdf457bd8a8904af164c6f9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce909a5d2d7997d56245a61a2d06ac73", + "notes": [], + "params": { + "message": "Adding 160ul tp 85920" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30e35588ceec0316e179e384b8aa2f7c", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "296d7c4cdc5ba134daf7b3d2bae57594", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e648c4707c9fee8727351e679e96220", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9c356a42859e6aaaa4be78c7b86ca5a", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f97a04aeded86f8dc798c5d6f38540af", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4cd54c890835d6902165daa598962e7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e2602a1d407c731a646aa1040ae8c88", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ec270c9d1c0b431d26a3ae8ba9c24a1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ec8efa48d4a7856358145fb80c4ec25", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15f1e740fc8761490f66f44705db158d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "917cfc572942d5f3df7be440a2812e06", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb84b91649ec7079ddba8ac580aae7e6", + "notes": [], + "params": { + "message": "Adding 160ul tp 86080" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f8ecce7348e61d45cd67f0f9641c92a", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cf097f399e3717fa8f2f7d2a8b93002", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24c8e3aa926a41b1ad9843ec4279c508", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd36b0b0dee2f45c775d551f9b2da082", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f6a181fd7e771cd47318cb0794ece49", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad8fdcc03fd6fd1b579c2a51c570aa7d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a65c3bc9c1ca72357c5905ebaf2c1838", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8f8bba391917c8c6ef73e3d93564b4f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91cac505577e5d989754ac612066274c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b14163d912b29ff11d9452a9a544f246", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c77c4d28c7a9039bee6fe0731cf82be3", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "373237ed05ae56e8fc13828517442ded", + "notes": [], + "params": { + "message": "Adding 160ul tp 86240" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "808bb0f3eb511b2365a16d64b0dcbb21", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e05bcf9e74fce64ea0e53112b97b6ad", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0bb5ca7d11bf041511b655255260fb9", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc642d8224d91d5f22c8228c091bd384", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e9b0069f5d3e5b7702775f01e93430b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d738c2d8956f8594245f37f74b843ea", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e94628ae8ea6b5728a77f6a7c6759db", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cc75c296debb988d8512f957768c643", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05b2cc34947e666099805567669e6530", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.25, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b980f0f496e0a362131a062cbf0571c8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.34 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0da75fffba8086d4d98e8da3f189d859", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 39.34 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65168c465275015dc2b8bc9428240c21", + "notes": [], + "params": { + "message": "Adding 160ul tp 86400" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b021003e28c6857cfa18799a235dfefd", + "notes": [], + "params": { + "flowRate": 100.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 4.0 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81676abb9a5795406f46b547b4e6f97f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57fb17e70d88c630981c4d80420214a5", + "notes": [], + "params": { + "seconds": 6.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72a65e5922d57c0782d84ee748e4b858", + "notes": [], + "params": { + "flowRate": 200.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 38.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73e5f7ba703dbaaef36366c022f15aa1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f33e18b96cb3aeec02194f2cebaa5b19", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 41.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96ec4ba52d5843341370bf5540af404c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 181.15, + "z": 46.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c582aa061910fe31a0173314834c43cc", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f991769bda8c13d38d70782c5fa3fce", + "notes": [], + "params": { + "seconds": 30.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f5334012628d46cc1db7d932c7b1e83", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": "offDeck", + "strategy": "manualMoveWithPause" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "originLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27977a6a0784e943192165298310e941", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8eab54033c810b1c2ff747def572c956", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1078d5a6dd17ad73dac94491eba6cfab", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e09ea44edfdeb0dc5c70114fa696f4f8", + "notes": [], + "params": { + "message": "--> Adding RSB" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2574638d2605fb212034265e7b6c1e5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28f2f8a1801b2010d533fc8bb3e3d01d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5d8a1ec170aebb68338dbd16636e1cb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28f925657963d2f43668cd01cef3da99", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "597a91b9a37aa6ec47474f191fc4fa2d", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fd603a89b7197d35c788bed8eaa470c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b4513b81399efb5e0d4e808c22c53d4", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d72ede848831756bf1ada00945cc14e9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54915a7cb65cb5c73e468d0a428617f9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa3de88f3bca3ac861b832e965c2ceed", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89ce67eb187bd4fe797e332f2bdfdaa5", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31f760d0d18f7d496843a5ee9d80fddb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37108132d5f79c21ee320cc681aafeae", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5d8de5dab3cffcfa671854da0646b80", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7aa850faf0b2578f5d2922613b1a0521", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edf8fc035dd9f6cda97c6c02b7d0d1e7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d9dd77477a9d6273ef9a73bbdcc02d8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcbc1f63631416287eae566bd4541b5d", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d7c2f584d126b6432466a3caf92ab46", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b43a63f92dfacd7751b5e08f695bdb96", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "849033420e4e9f059d9f1098b265ede1", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51c2a5ee4e4818a5a29d92c88bfbc0d4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f72cf7917b8afed6adcc955d308284c", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65d9175e0fade1f550cdae812043475e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91285a36bcca939fbadb3572f11951b3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9d9c638c219024eaf603c0f9604df0c", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.24, + "z": 17.3 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e8322e1e15aaf0e66158ccc19c4e52a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "217619b81e439dfe936e7482d1f030ee", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5c7bf749a557512fa524f6c4802dff5", + "notes": [], + "params": { + "flowRate": 12.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33020220858d0a5c92c2f8bd2d4e52b0", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 22.95 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43d5ecb71dfa078d93f02685808936ff", + "notes": [], + "params": { + "flowRate": 50.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.3, + "y": 74.15, + "z": 56.95 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8ce759037c30cd6f918972283ee8a30", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/setAndWaitForShakeSpeed", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa083abef95c2f44fcffe5c6674c6914", + "notes": [], + "params": { + "moduleId": "UUID", + "rpm": 2000.0 + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75fad11ad4cd65270f5a26cd620906fb", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/deactivateShaker", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7586a2a7fd9fb5dcb372a866da288ea7", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1e74186378ccdddb842fd5c5a35f536", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e37344bd03c2a173175b453df96fcd1", + "notes": [], + "params": { + "dropOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "pickUpOffset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/closeLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6f33423f3e8df5c01a8d0eace34eea2", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59102ef529d858bf4bcb8af61a72e9c8", + "notes": [], + "params": { + "seconds": 180.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69cab4504a1686c931dc2ac0ffc3087e", + "notes": [], + "params": { + "message": "ADDING PLATE" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a35593ad189d712d1fb4caf026dc40b", + "notes": [], + "params": { + "displayName": "Sample Plate 3", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4be12cc4497fd09062b4a67d137388f7", + "notes": [], + "params": { + "message": "--> Transferring Supernatant" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "016c42f18ea3d6dc8025aa13b57a73d4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3307bc0f34355934df71b0701bfca5e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30d95babd7bb957f138291ffc77c7241", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58f7d4785614a6e25ffd8e459d80d22b", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -5.624999999999998, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d49e517c43b1188fb98bc7f52a188be", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f585601e6f92d1fdaa3b94ae760ebef0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9c0d656e1f7b8ca6261718146269ecf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe4898de139f0db422e9e0eee7f21264", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33cc94c983f96ea2fae97ee59b88facd", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa9b1f55bcf3668c878554ec0267c30e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d51df7c7ed2e397b679f23ef37187d7f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "530662279c71ec689a227ebdcfdec8f2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a884d8f1851ce64235d07101f1c89a5", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fae8f5441c55456c82959beccb8f4cd9", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 12.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "810c0951f8b1800defa2f963a6997f2a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9bb6ceff5d18f83fe1928508c2dc4fc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32ee24d8a3d300a12f57103b3f8258de", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac8dc2011687f792cc3f8679e1036790", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f27e747a6ba1b19d9d0d6cec976e9f6", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 21.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1dbfb2320caaac5438dda81a9cda16f0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e9bed9c42b97d77d768efdab1ed4114", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "479b9586dcf51c3e72bb57bbb21000bf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8be7dbe1109bbc6483dd5c435d24e5c7", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b663ff6b7f66641da3b628feae70ae5e", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 30.375000000000004, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88e5ec113b4866216713950cf77a6186", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3cb452c8da864819b8414cecd7f22610", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e522b773a94b6124796afdacab7493f2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b73311b85afb90bac043bb8fe4c0935", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7138fc507d2164febd1b7341c75987ed", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 39.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d27977fd085686e17d9b6f7380002e8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae3ccf60ef0356dd2ecbdffeac069de5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b490969bededd17acb117ff3a4a9053", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28aa7c634140efca5a4a4ffd508c5415", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "293d03c712ae424de52b72868598bffe", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 48.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a43029979dc79a61b5ad3598880595e6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25db083dc01dbba6245fd76787fe00f8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c31c71e64e47c32c25ad748233243e5e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16c1079ed5f3f6cb1b27422abc38084f", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcb309b94d9fc079ccfb5a0c7c6837ce", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 57.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23ea998380a9d05f2c09c5cb173333ec", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6d630ef7c4d8a427974f3759f51e86e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f448399f5f0735c0e6ef1ce404925959", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70578cc1f2ffbe17a4bcdc3d29b6f1d2", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e508922a7516b6540c473052fb7907cb", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 66.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a9a365b5d5294e3ddc54b32c77cd307", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "867d447d9a14bbfed29f1b0a304b94d9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "376052e1190f2a5749499f2074093850", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "205aa576c271ba5af3e9817340421286", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbf28de487574a74df6be0415238d002", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 75.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdf24b91daac593587345e348c7833fb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46aa9da2b034090d70cb072c995da0da", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f183193e7b85883c21a61463e7f05b76", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "311a6dacbbb68acb52aad0065267c184", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f932832cecee273fff505dd68cfd05a", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 84.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ad0f99b21093588fd9cc06fa24acfb3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbf67b7d049e7d7ef881660d1e6328d6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 47.85, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c076c5bad155a13bac9cb42055aef874", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.84 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc693e9f07980c256060bd7f3fca3b9c", + "notes": [], + "params": { + "flowRate": 6.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -37.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.3, + "y": 74.15, + "z": 38.84 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "281acdf5d31bbe95c90f70a00acc39e4", + "notes": [], + "params": { + "flowRate": 25.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 93.375, + "y": 356.2, + "z": 2.3100000000000014 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df396044f696d5c66d4f2f4d564ed2b7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/deactivateBlock", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2ace2d5c88500723416ea60d9b5655f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/deactivateLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60acb87430f3d03509c9b95f3f0c3ad4", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/deactivate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72151fbe9e6e6cae2a969a69bea6b1be", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "heaterShaker/openLabwareLatch", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e82b8ef52036bba8b0499dfb56ec8a24", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": { + "pipetteRetracted": false + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88f6db6a144eb727fc73926c62fa4ad5", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b83237876027b6f26d4353d235c1cef", + "notes": [], + "params": { + "message": "--> Report" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0221e9d6cab226320415d339c47a7b2c", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 18 + ], + "protocolType": "python" + }, + "createdAt": "TIMESTAMP", + "errors": [], + "files": [], + "labware": [ + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "opentrons/opentrons_96_well_aluminum_block/1", + "id": "UUID", + "loadName": "opentrons_96_well_aluminum_block", + "location": { + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", + "displayName": "Reagent Plate", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "labwareId": "UUID" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "id": "UUID", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", + "displayName": "Sample Plate 1", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "id": "UUID", + "loadName": "nest_96_wellplate_2ml_deep", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "A2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", + "displayName": "Sample Plate 1", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/nest_96_wellplate_2ml_deep/2", + "id": "UUID", + "loadName": "nest_96_wellplate_2ml_deep", + "location": { + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", + "displayName": "Sample Plate 3", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "moduleId": "UUID" + } + } + ], + "liquidClasses": [], + "liquids": [], + "metadata": { + "author": "Opentrons ", + "protocolName": "Illumina DNA Prep 96x v8", + "source": "Protocol Library" + }, + "modules": [ + { + "id": "UUID", + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "C1" + }, + "model": "temperatureModuleV2", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "D2" + }, + "model": "magneticBlockV1" + } + ], + "pipettes": [ + { + "id": "UUID", + "mount": "left", + "pipetteName": "p1000_multi_flex" + }, + { + "id": "UUID", + "mount": "right", + "pipetteName": "p50_multi_flex" + } + ], + "result": "ok", + "robotType": "OT-3 Standard", + "runTimeParameters": [ + { + "default": false, + "description": "Whether to perform a dry run or not.", + "displayName": "Dry Run", + "type": "bool", + "value": false, + "variableName": "DRYRUN" + }, + { + "default": 4.0, + "description": "How many PCR Cycles to for amplification.", + "displayName": "PCR Cycles", + "max": 12.0, + "min": 1.0, + "type": "int", + "value": 4.0, + "variableName": "PCRCYCLES" + } + ] } diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b856a4edaa][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol3].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b856a4edaa][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol3].json index 0b9d36937ed..c4ea34a8ead 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b856a4edaa][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol3].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[b856a4edaa][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol3].json @@ -1,3 +1,126595 @@ { - "error": "Analysis timed out after 120 seconds" + "commandAnnotations": [], + "commands": [ + { + "commandType": "home", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50c7ae73a4e3f7129874f39dfb514803", + "notes": [], + "params": {}, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8511b05ba5565bf0e6dcccd800e2ee23", + "notes": [], + "params": { + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1" + }, + "result": { + "model": "heaterShakerModuleV1", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9563ff54d4bfe61c469a7da06e79f42", + "notes": [], + "params": { + "loadName": "opentrons_96_pcr_adapter", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 8.5, + "y": 5.5, + "z": 0 + }, + "dimensions": { + "xDimension": 111, + "yDimension": 75, + "zDimension": 13.85 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "adapter", + "displayName": "Opentrons 96 PCR Heater-Shaker Adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_pcr_adapter", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 69, + "z": 1.85 + }, + "A10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 69, + "z": 1.85 + }, + "A11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 69, + "z": 1.85 + }, + "A12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 69, + "z": 1.85 + }, + "A2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 69, + "z": 1.85 + }, + "A3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 69, + "z": 1.85 + }, + "A4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 69, + "z": 1.85 + }, + "A5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 69, + "z": 1.85 + }, + "A6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 69, + "z": 1.85 + }, + "A7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 69, + "z": 1.85 + }, + "A8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 69, + "z": 1.85 + }, + "A9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 69, + "z": 1.85 + }, + "B1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 60, + "z": 1.85 + }, + "B10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 60, + "z": 1.85 + }, + "B11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 60, + "z": 1.85 + }, + "B12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 60, + "z": 1.85 + }, + "B2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 60, + "z": 1.85 + }, + "B3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 60, + "z": 1.85 + }, + "B4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 60, + "z": 1.85 + }, + "B5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 60, + "z": 1.85 + }, + "B6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 60, + "z": 1.85 + }, + "B7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 60, + "z": 1.85 + }, + "B8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 60, + "z": 1.85 + }, + "B9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 60, + "z": 1.85 + }, + "C1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 51, + "z": 1.85 + }, + "C10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 51, + "z": 1.85 + }, + "C11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 51, + "z": 1.85 + }, + "C12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 51, + "z": 1.85 + }, + "C2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 51, + "z": 1.85 + }, + "C3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 51, + "z": 1.85 + }, + "C4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 51, + "z": 1.85 + }, + "C5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 51, + "z": 1.85 + }, + "C6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 51, + "z": 1.85 + }, + "C7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 51, + "z": 1.85 + }, + "C8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 51, + "z": 1.85 + }, + "C9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 51, + "z": 1.85 + }, + "D1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 42, + "z": 1.85 + }, + "D10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 42, + "z": 1.85 + }, + "D11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 42, + "z": 1.85 + }, + "D12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 42, + "z": 1.85 + }, + "D2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 42, + "z": 1.85 + }, + "D3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 42, + "z": 1.85 + }, + "D4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 42, + "z": 1.85 + }, + "D5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 42, + "z": 1.85 + }, + "D6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 42, + "z": 1.85 + }, + "D7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 42, + "z": 1.85 + }, + "D8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 42, + "z": 1.85 + }, + "D9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 42, + "z": 1.85 + }, + "E1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 33, + "z": 1.85 + }, + "E10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 33, + "z": 1.85 + }, + "E11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 33, + "z": 1.85 + }, + "E12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 33, + "z": 1.85 + }, + "E2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 33, + "z": 1.85 + }, + "E3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 33, + "z": 1.85 + }, + "E4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 33, + "z": 1.85 + }, + "E5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 33, + "z": 1.85 + }, + "E6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 33, + "z": 1.85 + }, + "E7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 33, + "z": 1.85 + }, + "E8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 33, + "z": 1.85 + }, + "E9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 33, + "z": 1.85 + }, + "F1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 24, + "z": 1.85 + }, + "F10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 24, + "z": 1.85 + }, + "F11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 24, + "z": 1.85 + }, + "F12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 24, + "z": 1.85 + }, + "F2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 24, + "z": 1.85 + }, + "F3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 24, + "z": 1.85 + }, + "F4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 24, + "z": 1.85 + }, + "F5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 24, + "z": 1.85 + }, + "F6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 24, + "z": 1.85 + }, + "F7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 24, + "z": 1.85 + }, + "F8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 24, + "z": 1.85 + }, + "F9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 24, + "z": 1.85 + }, + "G1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 15, + "z": 1.85 + }, + "G10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 15, + "z": 1.85 + }, + "G11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 15, + "z": 1.85 + }, + "G12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 15, + "z": 1.85 + }, + "G2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 15, + "z": 1.85 + }, + "G3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 15, + "z": 1.85 + }, + "G4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 15, + "z": 1.85 + }, + "G5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 15, + "z": 1.85 + }, + "G6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 15, + "z": 1.85 + }, + "G7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 15, + "z": 1.85 + }, + "G8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 15, + "z": 1.85 + }, + "G9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 15, + "z": 1.85 + }, + "H1": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 6, + "y": 6, + "z": 1.85 + }, + "H10": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 87, + "y": 6, + "z": 1.85 + }, + "H11": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 96, + "y": 6, + "z": 1.85 + }, + "H12": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 105, + "y": 6, + "z": 1.85 + }, + "H2": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 15, + "y": 6, + "z": 1.85 + }, + "H3": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 24, + "y": 6, + "z": 1.85 + }, + "H4": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 33, + "y": 6, + "z": 1.85 + }, + "H5": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 42, + "y": 6, + "z": 1.85 + }, + "H6": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 51, + "y": 6, + "z": 1.85 + }, + "H7": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 60, + "y": 6, + "z": 1.85 + }, + "H8": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 69, + "y": 6, + "z": 1.85 + }, + "H9": { + "depth": 12, + "diameter": 5.64, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 78, + "y": 6, + "z": 1.85 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "heaterShakerV1D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "heaterShakerModuleV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cfaf21024d73537b3855c4bb7e8b6cb", + "notes": [], + "params": { + "location": { + "slotName": "D2" + }, + "model": "magneticBlockV1" + }, + "result": { + "model": "magneticBlockV1", + "moduleId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e9fbc9476ea0db23996722a92675ad6", + "notes": [], + "params": { + "location": { + "slotName": "C1" + }, + "model": "temperatureModuleV2" + }, + "result": { + "model": "temperatureModuleV2", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d237360042847205c77676d0e0726e4", + "notes": [], + "params": { + "displayName": "Tubes", + "loadName": "opentrons_24_aluminumblock_nest_1.5ml_snapcap", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/aluminum-block-set/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 43.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "NEST", + "brandId": [ + "615001", + "615601" + ], + "links": [ + "https://www.nest-biotech.com/micro-centrifuge-tube/59201044.html" + ] + }, + "metadata": { + "displayCategory": "tubeRack", + "displayName": "NEST 24x1.5 mL Snapcap", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "B1", + "B2", + "B3", + "B4", + "B5", + "B6", + "C1", + "C2", + "C3", + "C4", + "C5", + "C6", + "D1", + "D2", + "D3", + "D4", + "D5", + "D6" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Snapcap", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1" + ], + [ + "A2", + "B2", + "C2", + "D2" + ], + [ + "A3", + "B3", + "C3", + "D3" + ], + [ + "A4", + "B4", + "C4", + "D4" + ], + [ + "A5", + "B5", + "C5", + "D5" + ], + [ + "A6", + "B6", + "C6", + "D6" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_24_aluminumblock_nest_1.5ml_snapcap", + "quirks": [ + "gripperIncompatible" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 68.62, + "z": 5.8 + }, + "A2": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38, + "y": 68.62, + "z": 5.8 + }, + "A3": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 68.62, + "z": 5.8 + }, + "A4": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 68.62, + "z": 5.8 + }, + "A5": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 68.62, + "z": 5.8 + }, + "A6": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 107, + "y": 68.62, + "z": 5.8 + }, + "B1": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 51.37, + "z": 5.8 + }, + "B2": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38, + "y": 51.37, + "z": 5.8 + }, + "B3": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 51.37, + "z": 5.8 + }, + "B4": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 51.37, + "z": 5.8 + }, + "B5": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 51.37, + "z": 5.8 + }, + "B6": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 107, + "y": 51.37, + "z": 5.8 + }, + "C1": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 34.12, + "z": 5.8 + }, + "C2": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38, + "y": 34.12, + "z": 5.8 + }, + "C3": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 34.12, + "z": 5.8 + }, + "C4": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 34.12, + "z": 5.8 + }, + "C5": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 34.12, + "z": 5.8 + }, + "C6": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 107, + "y": 34.12, + "z": 5.8 + }, + "D1": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 16.87, + "z": 5.8 + }, + "D2": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38, + "y": 16.87, + "z": 5.8 + }, + "D3": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 16.87, + "z": 5.8 + }, + "D4": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 16.87, + "z": 5.8 + }, + "D5": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 16.87, + "z": 5.8 + }, + "D6": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 107, + "y": 16.87, + "z": 5.8 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "temperatureModuleV2C1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0d237ff204178f356a85c28c8e437ef", + "notes": [], + "params": { + "displayName": "Sample_plate_1", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23e6255326c303a448469e547d56fcbf", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a8b76fa033dece609800b36592110cc", + "notes": [], + "params": { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "model": "thermocyclerModuleV2", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6624414aaacff3599aae187eb91dece5", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a10165d502745151a34bb0ed4ff7180a", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80b396b6a80bad80b9d39858e1447978", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "277f2864c409df5dedbc2869be32ad53", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14998d450c9cdc8f3e8a92bced1a613a", + "notes": [], + "params": { + "displayName": "waste", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "addressableAreaName": "D4" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterCovered", + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7bef406458974fe25d5de49061a767a", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "addressableAreaName": "B4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee2a6d53067af3254f0d4d5f7deee33e", + "notes": [], + "params": { + "liquidPresenceDetection": false, + "mount": "left", + "pipetteName": "p50_multi_flex", + "tipOverlapNotAfterVersion": "v3" + }, + "result": { + "pipetteId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42c379b2779ee5819fecba2500022f1e", + "notes": [], + "params": { + "liquidPresenceDetection": false, + "mount": "right", + "pipetteName": "p1000_single_flex", + "tipOverlapNotAfterVersion": "v3" + }, + "result": { + "pipetteId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c32e038f623380b14ababb72d975f18c", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A1": 1040.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96c282d46176c820279c1c8ed0226fb1", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A2": 57.2 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8fdfe3c7306f5a66bdba4cbfa89a898", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A3": 114.4 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea09fb6d923c28851a58a9a9aae5418d", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A5": 180.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68cb3f0653504fbdf75636f034dd5e22", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B5": 156.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d8867e9ea5c9e2fd183a271c3bc7826", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B3": 228.8 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63f51f1b19b1b869a95714ffe09a67f6", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B2": 114.4 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99e74a0fc71641c74116b01ed7877e95", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B1": 29.119999999999997 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7f129caede81976d1154cd5f14c9ec7", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B4": 260.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53e3a7f7317b5d07b7abc9b7b7c8aeaf", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B6": 520.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e514ff6c43e4b6c6154e7c2fa087786", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C6": 1600.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1ad069280a950f685f2a39c1fed5683", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D1": 1600.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d05d3812377aed167e44f45d7763463", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D2": 1600.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e95d8b016f47de993b41b8555143a1c", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D3": 1600.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa367224caf13d51655a5e93f069aacf", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D4": 1600.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efedd0184d4b3121db6bbe425dc99e00", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D5": 1600.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "528b0081c48ba9e757b746bddd5c52cd", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D6": 1600.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4305c710aa00399de88828b5093c269", + "notes": [], + "params": { + "celsius": 4.0, + "moduleId": "UUID" + }, + "result": { + "targetTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ff7cdc05cc20fb0c2eb93619ea3407e", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99165352e7e2cd2dbb7cdc033c1a7742", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "168059347cca0ba1e2341b7c1348313b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c68b062a4e4c2c3a6ba991c221dce6f2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "decf487e8a744774365a2895d3441412", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a855b7279fdb9ceaf4591b39d4251f2f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "000f562280363777c0a98ffc840d0840", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfe86d45078699abfbd6eec617595b3f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0d86b806050f7c513defe1fe78eb5fc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a7c9b24727caa0cce737111cafa4e5e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d100d94248c447fc463e64a6ffc5873", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69443074e000513383e196ba2772dd20", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cb5921b8ff32cfcf551a2a6c55e3fd0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bcdbfa23c91ae4efbe3dade48c65a1d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ff5b1fec7bba7a7d4723f19cca33c27", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1cf10f843e72b28e4a1e244847cdaf6", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3877d2d1aec03d3d7f6b65a4b2982fdc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03eda2e072bc55723e52e042a6ae84b0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90580b81e15796594abb3e655cfd11eb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f15d15279ee08df44695c574deb294e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20e7c35f5874a8c0b082e04f4b685b0a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88bb752b6cc88c6af24df17ed304e3f3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e6ce512b20c292f82799e507f319e1d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b86376b582505e8526b1481ff4bf070", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "050c224ef00e61342acbdf8232bf0b34", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1031df7aac07d9239090da62040c65ec", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eed8eeabfcd5901cc554ba7f68ec610d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd32abce22197f4030d3a4b8a33885c5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8741ef938c9f4ebe7aed27ecda25e172", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c78ff89e6f62e558fff92895053ec141", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64913b0ecbc788ace3a30dde82eab161", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48da90e128f541137cbb058f7f0bc41b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a00cd672ddab19b352e359ab50e31f5c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e412bdd89ae5692e87ca3857b1b87aae", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6854e7626807a035e93ab71aa0b79bae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d29814c203ee64f756e0bb8834bf5fc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4e0881dd30e3746286ca35bdeab63a8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf5bf48968cfa5603f3984f57e31e15c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b4d8ad296ed4972cd13c36fd75b9460", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13f8a75ce0e461f6ad719a8cb4feeac7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c0969941fecf827d1c4cf85fa811fbb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cbca3fe85aa47f351a030d5a29d08b1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d83ed215107ccd302c681c66e837459", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c9c92e0b17ba006393c632db75c4086", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "327ce4f02e7ecf355fe2972fe701899f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d53c6ebc5df71a1be909366c650dcd5f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3df9c9e4b93ef5f2a25d8edbd1d0d94d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1b5c927af11f8d910f25d54a5309627", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ce599d1d2b2e351b79b1bef09d49ff0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aae9299c0a8e9bc74550badd16b0bebd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58e0ebfe63e3f9c4d07c9ca3839542ee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f71b49bdb311d4de7ea5a300a710de0a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61a9223df6c11150e1710eb9c5fff015", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ddd2d8de85e31572539e337f7d3c6209", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "957c3c46215d83002ed3af8035784159", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e2e9a6dcf2aa2e43d096e82413ac5eb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3960c535a62648a42639099b57c89947", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47649cbd2a33078c04f34ddb6ff8c0d6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1abc918f28d69f1fd5e640d13a42cf74", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c01a4f9e325242ef4ebc3aa13f3045a0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68af8c5470cd37828fa0fe2150800940", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5b4a59e8c44af606a1632bca21a2548", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ec61c7d7aa04c81f9eac5397034c4df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78c0f8d865877134abc8693da6982218", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbc326e8fb9c0fda1ec525ff712d6be9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "128e31f8cb441997da34f52660a40dd4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f763b284319384943d0bbb99c40e02a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb72ca3ffc304dbca18f930d651583f1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "997419435ab8b62a56ffd207e6a2c618", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d35b4ee2573232f752c5ec25a51953fb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7104d3ba216fe220e99ab6be6ed2c578", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db934618b9fcfc2a82c1f8e866567ed1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bc687b447ba976a6e27753a03146e8c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcafb9fc2c349e9758e5bac8d489fc70", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abd251ce0e83a7303f1c1530d1c1db1e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82227153d1d3fd12c8c3e3f9a552b02c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a186a242d57a69ba9cdad5dd435205b5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cedcf921ec0513d552244d0ea142c6d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5c60f946ccf9dedc6278ec405b09a2d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d98435206b5095eb867657dcdd388a3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a84eddf3b9c033df3e7a8b1c993a2783", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bdd95b1a3d44d2d43dfdf051e0cc2d9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfbbb68e2bab6940f2dbd0131ae060c4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0df56872a048fd26c01e49d4305962d7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32965f43ec2b4ea2668659cfdb3429f7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43496a69e141481bad8756bf492df881", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6d228343cb800782d0d5c380a6af7e6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8468804cef839b77af58e5e12d31ad38", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d71bcc4ded66bb27e00f5874b235039b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "654232e82a8b30b8de74666a5db602c4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e444d67709da8ef0244e7e2e3a0a754", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d4f777a91129a13a78a7760c8800ab8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61fd578a9a870aaeefa6c9c657bfe873", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "257c292da27171803e796d24acfcc6a7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6152998dca7b39916a98858885a973ba", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d44f60f4d34362df7f781b0ae86dbbd", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b22541f08d03f6c42a55500ebe2b4eb2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7b295a726cfe3aeb3347c46a8e3e2e7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d8ac17a13072e0215b7444e6e9d5c6a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e164db8371dbb4acf18ee7b11579e0e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57f1f90000bd5d978f04aae2b003ea32", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43c16e793b8525e41d2e4d579e013160", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de28fec0be5b402b434c1b75c43dcdbd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af72debe86cb10cfd04b21adcb0f514f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4599410d1707d5fd25c0c857be35f7c7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad8404461e33f02e1e0371ca4fb7e997", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92a2de352488acc578eeb12c9599e5c7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5cd2c2be55047d179ff4aafe7b2cf31", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b247cfb3fef0448b2aa7b61d1bb6eb1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37bf0aee1a09b9c94e5f7c0bbf734ca7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32e222041b97c566b82aa96a18251811", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "065ffb727711d6641dbe8dc3bec0a5c6", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc1fdd33cc8575fb13bb95b227dcc984", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7481d9ea637c0dad115ee0a22fc5d21c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "307e0d649f8d6bcb95ab85da35f30912", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d64aab7f966a2869b818565d44e5f40f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5266283cbcee20bf0c634340f2f32d87", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c04096008af11cbee23db69541677820", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3189aacf076fa232327aba12805b300", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fae26e6cd1596dfbfbb62796636271cd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89ab396613cfc9a7151a4ac4b3fad828", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1ca19d679973cc85b6f101693caf8e0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "683c0b9f4672bb1639f1985e4eba809c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a41d2bbf0ce1220683a1d7d250af685", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2bab2098c602ff1aaacc1e2343983f8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a503f5ac1b2bfba78aad3f131a7d2d0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44e1dfe789a08f45d8c75af9eca461df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "732d672c950e351302e681c329d8590a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c103269057224664053060750f9f5fe", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d259131d321dfc8dfd69a534e9a6ed4", + "notes": [], + "params": { + "message": "Fragmentation and End Prep" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33268edf5e62636db12a60077238c6fa", + "notes": [], + "params": { + "celsius": 70.0, + "moduleId": "UUID" + }, + "result": { + "targetLidTemperature": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98c57a3d06c53e371d3db79781d030cf", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e269430d865d94cc39a1d67e5aec773", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "936ff4939db0484725e700b1c92441f4", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "celsius": 4.0, + "holdTimeSeconds": 300.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e670ad424f4ada8136bd949bcb5cc9a", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7b815b72468b9b46b03684c1d09c054", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "781e3302c5776ac110e51f6edbe3690a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "031c56e62d3f145d164e16e25062218e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.400000000000006, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 38.0, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 48.400000000000006 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e135c4a9b235344eecc867048d0a2b2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.400000000000006, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 48.400000000000006 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfab4f2ca99cac67d70545820519d6fc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8be41431cabf5ec6f0392ed396b7bab6", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ee01d85dd4e75774e7e365c4e9cdd54", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecb2c8a10c42951d873d33b56f07b016", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8661d47e3a9207563207bbbe84f4bd8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.80000000000001, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 55.25, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 96.80000000000001 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78d0f748fe4d58161ce86fda4c8d95be", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.80000000000001, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 96.80000000000001 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a95451ee9273b02e787fab454b7f1d6d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1eefad554021453f425ac17be8d6a53", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2723bb34d711e70212f61840efd8326", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28806ed5ff7f61325d6b05b030f4bad8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "540ac97962b29a18d8cb78a73e10b8f9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23bc3618d18c2f155c6ce3e74460ede5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a571ce209bfd78cba2c453a13e15cae", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50e71910283f5f696a3213e5a70e2dc9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e9c52d53f24e6a8685edafe687598be", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2de4a6eb26353b76a581bf9efabc16c5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cd9224e0019f7e3405aaa47e0b4f67c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f02b910afdc874fb26d875a24dd82d7b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f9822bf5c7f66f585d62df0cfe39a4c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c70b64e8a6af50e3d1ba5088e4c41318", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b1468073c27ced42037630a6aca325d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bdc940a58590cd79ee0b77ea51e1f4f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4462febe5ea2ddf6006b887b769d1aaa", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f1f9b7c359520b313fdf6b94f5c614a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 112.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 112.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "037e3ca559e3bce3ce3e4d6439d7f6ec", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 51.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3214a523a9e8fccbde6d32b672fcf856", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f21f7c860ac58c3bc6dec12632a58d44", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "713cccf08328a40d51d8c3e552f3037e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3adc6853357e5c90a249566c3a549cc0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb8c9792410e490f89e2dad31a8d0301", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "338b6b04f58b2dbcb7eaed76ba275032", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22b3c01cda8ce6573e78b12b4883f181", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e170a4af9ba2d642a82c7ab0b787995", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8839982448918941394b8a5ac2867bda", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5035f0db0c31527c9fceb31da7162141", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66595e419cd361b9694de0feef8a76a9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e530f585c6aac72767e2f0639fef6ef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "094d2144f11459e9e5148f6572dcdaa5", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0270f0728d65ec743e63726d018741b4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4f875550c67a3bb49edb87db821907a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "072ab78e116ff6e33531e7ff21543374", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73121e94bfab32e4cc3c5f210f5b749b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de14b770a4336b05ba7e9e4b15a3ccc2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f2111767ee34bffa96fb6c5a1057d60", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec0568a40da91077b209b84565b3ff02", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31eae259cb60ed6285ddddb3d86f7694", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41b792c76148c61963e18e5fecf6cad5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd3b915262b5a22e9c51e1b3452ea2e4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad235552f41a5fa58847e5d21a3962f7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a35db2ad9b702d81a9f73aacc774b8a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "598fdda96360fdf81ea06f8a5779203f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e53613f693314f561620cb6a61f3ffff", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "898b7ac05d6a0e4e78ef4795e86901f3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8da6e2f061d8cd941de6f30f39bd738e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85407fb835750baf2b38e44f7195307e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5c05cb43e753368af27a10c8bd882b5", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0f2ecca6b70ac32262b98d5653d8448", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6e335f8815d8890027a70c68d3db83a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0b28c89610e33a7444aa08395bcce9a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30fdd5ef15fe8b9776b0bae36db31700", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02a224f49c340734a045878c8ddcc653", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62aa28c4a75b0c1b18a81f9a048a804e", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf1ba32e2c3b38a70b739583df6e25cc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95761337b959e3e086af4d37e6ed494f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ba7e75129991deb02f804318bcc270b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3193d67ff4763f78b24730bccd5cee5e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "266f296be1d8c6358e700147f4a23981", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8af4defc443d16251c9df4022f25d060", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a7a0e82dadecb73208069ea6c774294", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "245177d91f09754e5b07f936e325efaf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c43c773e7923961e82f1cd62f9c45a2e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 89.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc2f52ad6b7eed8e422a70f5794c9e29", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a054c3d0a287eb75fd6fd5b5616d3ed", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c00b89fe64197c01529945682abba9c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "249ff1d785b1118c2c0a1e2fa61304d2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e47b15b9ddb459f1066e46a335c72a9b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bc4f314444a36a8bd89bda32447fa0f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a39cdc6a2cc34e4c784e5cfd3614cefd", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2edc1b64afea2848dd80b9f8cd353c1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0034450a18303e65cb2a357298e9c324", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4f4015e939e734fd13945f40d5c23ab", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7b39c3d364bd274a3d7939a7176c322", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90cb46aa4fca709b8b068b8c8b8e825d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44310086f7bdaa5ed0e7c5c140e42540", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc972b66c4cd8e010fc55233a9c95bbf", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc133c9c32917da14fd82b2a9aa3e8ab", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d86973517074754e112a798ebbb3906", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "297d0279d9b93671eb2c131a4a9c149d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dac349d34dbd7a95d9a7767346ff66f9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7b8a69bc65d5b28617329fb52ea1992", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ed871f6560181c897ac9d4e318e1bb2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b289a82ce9c7b627d64b9c6ea4ba40d2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63809a6a18eb0019fb640210bdbbc85c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32a57be0c3c812903f961c83550cf43b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af391d0ff7caaca61511704dc2137bb4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "453050b15314a56a0d8787dfc1483a11", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "405f3142e5942996dc2bd54c35c07c53", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60d59c267208763f1aacc9c4f1c38312", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e46df42c98254c96dc484f9bc0286238", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22ad8326647802dbab1bdab570f9dd4d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff62a637d1b84afe43f51e55a988d097", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "548814b2449625612b07661a6066b04e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e7ef5cf95e69e23242fa3b937b5b49b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "051caa2b61c89cf9a8c8e58a800c5128", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc07cc4343524a7bd4d42ad011a6b0ea", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "928ad4007217086b3ec5b4f234ef4c4e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "393576ef4c4b6367407ac0d4cf005fb5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77ebb0a0656130d081e67ee5438da174", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ab4ba6e5e08c2d7d0b58d8730b8cdda", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ac11ab44afdc9f32f5cd164e70cfe96", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8125d5d976c3ebe187f645cafaa8ca9d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "522a388c8a751a4087e069e810b74f8a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "454367c1777570a3a11056bf017a7ff0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02b99757065535373ae1ced291c0d3f7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a3baf66e9f7819f34761a4b8e333914", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ecbdcfc7199adbad5849a1b5ed0ad96", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ede8dbbcac3efb9de3dc12cbf7b6e31c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95a6557bb446c7f74eb7a1462f438b29", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c987cd2dd3c6d28accef791a7f4c195d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "477e581bacc06fa4fcf4492573016fcc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aad505f210c03b230a0da5557ae9cdfc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56fa56018f0241caed0cd373698414ff", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1aad25db43dd9266c9f02480863fdd27", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3e28ee31e9d831d89d70f647548dab3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcb4f43e15bfa1f2415f2212bd28ea5d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d005d0f1f513330f665a94e0c6e22a9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "916c45c374feec5f2365e1ee3ed04575", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad095d45a025171d8f79767dae02f395", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12a81243c26dcc513a2be3ca10e8385d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e55b718244187235a00f07d3d990c99c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "894c2573dbfe41edfcffb0d4735ca74f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf13edaa1cb6e12073510957b1e71db4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1051a6e6ea4a0a851b28969eb62a82b5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcb049dca6aed830b95204cab36a3279", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75c861ed868392e970fca02149cbb113", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc1b88e19b501729488e19506ed23ff5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7c98f98414d141c5391f17669e8eb8e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "006c217c573e173e22451ba40193f47c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84d131d76616cd621cf165e6808c4797", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e991078674891dde2e4c2e3fdd141983", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5127ef75e8f8b4f8f9334560267b84c2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2660fc282946be922c35487f762ef12", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b2705d0b7c0742f670905fafe45f89a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "210ee6a7cb37c2cc14d6f531edca5c45", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "219648920d6a52e6dd1546d5b3114ab4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9085303c46c389bba7d02c8010f0a15a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f334a63d70bb64f175160302433d4574", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5efe2e89c1fbf84470368841648e6695", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b36d5d3562d037bc5a2e3a94b168a1d7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9db4a88980b6e6123aa3cc4b4c982938", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96044bda0b6f287ace2f0432a1709fdb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7eb57b88990b9ac5222d7821f6165662", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71371f6766b2d5b44b12e81672824e41", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc3d07d6f2fc19dbad826ff61d4c9313", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33d4b28184bf18b1f561b12ec7b24276", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51c746345473311f9bd6f1c79849e83d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "780364af263d939bec9c651585af5b7b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62602a4feaed77716686aaddced115b0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f73fac75ed907bc3ad42523698c1636f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "baa61502ab6adaffd8217568144524e8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03258a2e86199abe66c1521a8f35f9cd", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf1926f69020c001e187a17a4506e87b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6829a30b254aa1b93fb31cc35a8bc080", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0cc455884db36e5070138d3232cd960", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea8b792fd9b2701c025bc60671d889d0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e845edbfb5b0b7c37b3bebde61500d6f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5c9af77a4ca87e4cc9bbe00bccba730", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8128c05804409339b7d1accf031a1e1b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f1587f826582fee75e49b3e331c707e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c5391576678b446a7f6574cc33d4dad", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d107f651c69da435ca4eb67fe595b978", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd2974d50306e922d1c3ef6476d0f259", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d4cb41568eafb39a32238bfae35ef53", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "196eda235d7220b038fd0131afe6a843", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81c7730e7ff62267e79d0eea7aaff5b7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8a8728e853887aebf03716252b82032", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7d5ceb772134ff17c4fbfe589261322", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c688e4f104a1535f0952666c37ccac3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52fdc8dcff7abcb1bec866181f6ce15c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85064925316b8a1827b8f70b78aef44f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6966fac2d77d595b2005c94550290010", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca75c39ee4827f5abcaec66fa62321d0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e21ec44b9705aa35aadeba3a497f9c0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a32cd519e4f18cd3985e8c2c644f2688", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "beeee5a9db00543574a5993db9aebb76", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3de09e9bb443000d30f049d18e45b18", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f74464c4004a98c1c134082fbbf3082", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5619b323254e0ff84556adbc8812f560", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4853d24d25aaad4f2f4f764a861f259c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cdfa11b806fa76626dfafaa5a0e274f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a101f5d040ea62cabcb63751fdad93c2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7cf3c22bb2e360d26e4b4d81fc070c0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57c89d835e8ba7ec13bb7c637080ab75", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "292af6c6c93db710e43dbd96c3d87357", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9b234ea415e97389d4c35f46deeb05c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9d49a903e9f75c23ff40c9f2ad5cc0e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63f87caf173ce2a990632eee7f853dfa", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f226388c2a24192728b68f4ccf0fcbfa", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa79c75ec263baad857952d6e269c6e5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fe4b5f209d1b551890fd7c735d5ab2c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72b6befe915e8d3869b4190a9672b334", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dd044f81c7fe6323ae5a89c4f3c5281", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6fb853b9f3d97711e1f2356e68e4e38", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "749751e953d2ff896fd4136c3b319863", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "801e1c7ecdb0a60ca51f0af85b2bc63f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10cf3c8abc90316958b71021253a6ad6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efc6cc91297262b9296c22e515e04e5b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b64a17655c07930438b900b70bd009ff", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf89aa3b09c4e42f81cfe667755a5abb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8ef1c7f07c5bc77ebed56737f9be6ef", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7771a6247eb34b7489621c2e7f5c32d4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3c813cb8bf94846a6d19e787f948afd", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e79615860ee38b1fd0c45644abc346d6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c59aa028be624ab3e1396e5075681263", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e09ce83c855a4d393d7162255de88f28", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3ff3299e59d6f2fcd94d5058bc60bc7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a1a5ec1106594f2e2a148a3dfc03726", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d08528c8a848e187841c813a048e074", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "055dde1c2a2d1f51fdccaca54bef5ad7", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84b4859ed2f247d92555de50c749bcd8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cccc48b928a0e77afce0fee632b279a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54bbbcc9bf4a0fc3159265a17a1e9a55", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20c137f1f20bbfd3c06fade9f2cef2ae", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e031d1c395914cd545d91a4de8cda0dc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ffd4a4dc26b5e48176efa50b7e70a41", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff5c87d81f901254d2c6366e3e9eed1f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b7d0f303b75c30f905b75290f753e9b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e5c4fef79be460ccc4d20b92bc25cad", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdea31e2ed2595cf3fb14776bd849791", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bca2402de783d651f98f1f49f04211c0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79f6f91aa8595892705f127c48ee515b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfbcf7dd9522f7d96f846e30d410b0ee", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27df321c61e38874b8d5fc220d40d51e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "590629346352f0228d8ea5fa25a10e7e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f2014b9b7dc957d2564249c4df5186f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8889dad26651993b810910b849328731", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cb204c511157d2979fe04736ff9a0c2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a76bda9088a44b92abf00f84af8a3ed", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d62a7e884cbd2a561676d23e53caafa", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "459e2d3e6274b049fc123e90a807b793", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60ccb216eda3db4f750ac239454d5966", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90b7272913399ae750e0f8f8733bc249", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11f5f7685702c45d54ef1ebbaf5fe107", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f928cfcc4e9acd2614d4eb68e31dadbc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52e41b76245508304468da07b9f2c861", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a7f32d0f3409ab38a6d8f06257d0e8a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f90e890d5ab8c84a418e57e8282c2f88", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e432176e1f98ae8a9b5bf332c5026e4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7044e01ddf8bc1a745326703de81465", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "859a095a00125452ba72f6400000014c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd08c3088fc54aba23d0e1b05c25089d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56782464e2553eccaf8a3441d3837157", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41755a6a56231d8cff9231eec57e4aa6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79bfa3a4eff87fefa8301f693b8da4e1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80c7510956c2cfce9d15dc4c203edc80", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0dc9021151f449d9351d86c80a30e8f3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e4d0d749db2463ca9728b1c092532d7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e3128663ad2c31ead1a3eab1b4af8f4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9dba608e2a627a98fa91372f65664d9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff71fa1c3d7bea8cd1a782c13353ed10", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cc6cdc2586e1f1b906a1454d809a8fa", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cab22a05678efad4924491512cecfd4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9680bd592613e2fb0cf30a7afc2992c6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1dfe903a9b51feda7236576183878af", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a110f7b720b000e96e9b3991756be1e3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc2e3140c9b458c1cd53b54c90eb12e6", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2ac60b1bf75ea1b0b32b2c1ef4e90a1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d3e21d0872e73fe08bd06737993eeb6", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21d986d5a89d1f2f2fd8ac9f83bd5b88", + "notes": [], + "params": { + "message": "Add plate seal" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e798a21796f1fba69f276e6ed507213", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac78e1b2fa0ce9f81d72152c4aa06f20", + "notes": [], + "params": { + "message": "Fragmentation" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0c7d3da14a8591062a878b1a55aba22", + "notes": [], + "params": { + "celsius": 70.0, + "moduleId": "UUID" + }, + "result": { + "targetLidTemperature": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d72486eac12d1c8f583cb932c9f62d9", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5a51d7064eca384f7cd223e301928e5", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6259cb5ce0ecfa745c6c13889869f148", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "celsius": 32.0, + "holdTimeSeconds": 600.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76e1ad2cd0a864673a70e8d3763355f4", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20ebba8e4942b0f099d28ea5b6421027", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "celsius": 65.0, + "holdTimeSeconds": 1800.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3695a72c312777422d67aec0d7be9dc", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18af66c88d51926ac70a06ab2571b3c4", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "celsius": 4.0, + "holdTimeSeconds": 300.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70be94d155a63d07c3fa1d2d891bfb5c", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b45fb8d46f081468c0d396ceae6fdb2c", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b320c4994f473567319d03c00367d1e2", + "notes": [], + "params": { + "celsius": 24.0, + "moduleId": "UUID" + }, + "result": { + "targetTemperature": 24.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da4da81b58805194b5dd92ea0c261743", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58424ebc47f4a6efae26c8c01ba3296e", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "466968d712471891aa153161fd261592", + "notes": [], + "params": { + "message": "Remove plate seal" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1c3abf46930a8dab7105bff4571ca0a", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8faaa2824e190b89398020424b6f68e0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7525929f527586826d257adbf710c4d9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2101d3bc8d4e26dddc4e35d7bc9c2cc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1242c46493c99af211d76b16c83a938d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19ef1c4356371137ef011463947c35a6", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c08d097400f2728e00d22aadc12d712", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "969334ac61e3232f481fa89579bf0612", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "154b92513af5f8f196cec87e29a21dab", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b7b42f5e3451fe90a2b2186769481dd", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "306882f096475270ef555063cc55109c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "098b4ccc5e7d25647e3e918943d2935a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c816e2f8cc0e6ff71f35494d12c889b3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c060f7ca0a2005c0c7411e45e33dfa83", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fc3884834d37d0bc4952ccaa3b00b51", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c05beb761488cf0820ca3d2ff075fe3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f07f3bf7e8910213172ee0f853c73d1c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0759aafe3e26701d321408b3343c0fad", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "790d05c8327c5c2a55025badeb627d41", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6947ddd37e1f111c9a00446398375f44", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5b6476e69b41cc90f49b656fc617f92", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b325379cdabea0095231a68e0d64c01", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d5bcf4bf0c0dbb0055245ff403aeccc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bc917eb397df4abf60c6f679dcaf4c4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd75ba04e0aa1f9a62d8984e2debbd5a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fc8cd6840967b7f2788c14db0e02590", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3a738ce43d4dbe985c0d0d6661d89b5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca0db2effda18eb914ad5976bf03b334", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6cc4c9905a3d1c7f2fbe20113961cd70", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbee5e89d7446eb703ee299c77f7300e", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f25c76c8a2f4b85087628bf0ea608e6d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a19a2e96ed69a05f6a8829440d843aa9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dba64bb52f97a30816ba72f570311414", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "624eac6fb4c1a3ecb6345e1690793ed9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e4bfed1f9eeedc3b92c6c31925d7469", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac6b1e9d07695e70cb042aa205c6c707", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2bf8a1871dc12bd9d70a856eccd7822", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74c92d321eeeb61353f809fce10eb61c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bcf5ca1438e3c335e276a4f12349b50", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77e3d74fbc8a6c856a6fd84f60d8b54d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e596d6fb035b82aac51a2da002bed6c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea09d61b5e229f9a95a0fb8c04d24779", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "803ef362d1b2f19e8ec20c50965e0aa2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9f07a9eddd3172aa676593466533160", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40e037a18b1a8710cc5ca8968ffa0419", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fd460c0ca3cc61eea295c69eafd72bb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c54bf3da3c667fc4c20700f6d636d6b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f56811b366d80b371906ebef4f58b16a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cd4a332c7e2f08193a0875587171a20", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30db7a180309c2340debd3c40d7f412b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce34cf6d97c5db093eb30f059e1c1ecb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0634cae3c02426cd491aa52ad0433c9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d26ea433a1a51c522002fd7b4f19ddb5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51ac51f08f87232f389082987ff9db6d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "359cee1e96a283dc37d46e05cbdfd4f9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a80a8f86c512fdb3978f6997995b6058", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "340fd71b8da73b90b57449345bd1b8d2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da890b542647e9dc1946895ec25575ec", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ab9099134e5b2fb17a7b158501789fc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a78845fedcf8c69bd3dbc7de7cda6100", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0da4cb55f2d68dbc96998fff6349207b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7381c39064c01836ea0e4cf6046c8556", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "827c402700e7d975642ecf28c365cb2e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3487d75ee67399aceb2838e719b5ce5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "964f0c0cdf58d71461449f908c434688", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a2b8c90fb0b09286b85aeaf869e7fdf", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9359a15f333b12c9c2a85f225867a32c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f0a99bea074d046ee438695984637d8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef8b189745d879cc528982d6027c8a34", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d4497bda6c7d0425ca642b8f3fc7f0c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02f028841ed8e64cf601e074546f4e04", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f859ba762ed7ef481b62c4833bdab41b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9fd19b3d3290da611d48e486d1c1ce9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "836f80ff29708ec33d3f438167643537", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7842f454d04fc8aa9c9b4a1ac079d3fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e49ccb6e796447da7317a40940b4b43d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a524340750943a5d78055825e7c1c093", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ba56744ff222d278c8abdbbdd74b3b2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0adb611485c4970b66a380bfee0984fd", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80253eea1c647a957a3b5279713a24ba", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e45a2b3374f8ae3d7516f639641f2e2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "641f72b1eae47cc7488d3d238d136f82", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05e8a307f4373419dc5899bc7f578e44", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54a1e58fdb8196cd59fd8ad3d5041a12", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b62331c8dfe8838cad7e3e016bbe040", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b16ca1388cabad0e9b743f6d31e9e76d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8508007cd163da47a62857f262104b17", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca84fdf9cf499767c70b7206dc64b515", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05bc720567004197d08e6a543347b147", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eec9552db6384d5cd64361a2cdc1237f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "987cef9e52f2d53b05c63d4c8d8f8662", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45d55e888b515c3042395a287c4764bd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49844216e45055c66b49af1873c2cd01", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "670b9134b08399b2fdc72eccd9c9e827", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4553bee5dccc1ffcbee8cf17823f896", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a18fdcb71ce399025b58d567ae9ddeb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db1aa66ee320da6d99ead100a15a2a20", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21d62c2d8a2210a8bffcaa88f454d4a8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d1bcd40b6a633bca77a4d91e343164d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "058a00f60125b881953d4e9d1df6808f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b4df912731f2971d013374b2dee36ba", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9c3869b2b9f48f64493371d66e9c9b4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b1aacd5a1934c586f2f5e73ca459eb5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9df099f8f5431d3736cbec568af420e7", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c965e15e0154e28ef1c6c4c0195c371e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c86b7499b8a8fa70919fa2cc15985c6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1f889f2fbf6df757822eb4566bb3349", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb980a634eb98c962b478ea5e5537b96", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9da164eba4dcb9864108435500722c7b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db3a67f2bab571088be165c9cc2ee94d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9528511402df647cece4c674b0d4c890", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc3512065c17ebf8f15e1e4f87d5cbc3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bb372d6fc7b362362c2faa04d2088fb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1625a090be56feda4350ddea503c861", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5595520de5a1c1540eb020ec80b2da2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12f4ce81834f23f981cf9971c054049a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9eb37c9638de74a05ba33ea4e01f15a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0764fd62771233d9452ff2ce4f8b8a91", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdf13a346490e56fa1d425e9febbd191", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26adcd636078fb36ad174afbdf28f262", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25023d3a2ee26625de73eebcbaf392c2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d14331211c4b66e55556fcdafb178900", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c51b7b38ff5bfb82eeff8f42a7273d6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5b1469a19ffd24a6fd78a7c350ef1df", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a77c82c10b631927afed1794a0dffb70", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfd96fc8e053ce09cce83210fb5a9f99", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "634fd38e14b0af0e519e1d1fd5e2cdb4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da1cff606021360516f718a3ebddcb68", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a5d439ff6422ac72aed2e189f077b12", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b49b9bda261b50aa46edcfcb9179301", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df5d1f3225add072ab5f2370e3abf491", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59646d44d3757bf1cd95449e540fec78", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "655b7fd3649355dab85ef328cc38f7da", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d5c479bc539c7f2b45043d991399121", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "039b3d6c28e275a233bf6dcd0d036bdc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acb672b39732705afc4a393285b7fb20", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "323b6e3c55413a9216ed6d41540f4e3c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c3714dfd673372f0cacb89413be12e2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13521b95dff36332a7ee429655800905", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a32ac4bb4666cc461e3aad1b94d235b1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc7937217cc60d201da0ecfdca98e49d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a68801e086f12225f86f85b4fbd37a6a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "099e3c9c83f64a40a7d5b85296e3ed88", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b83a38500c72b3c132e7db29401b76d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7648f11cf4666ce5df2b33a24c8867a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b903c3f2bd67ac5fcac04952b82dea7f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16aaec702e6bcd0ba8abf553b2c23bc5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84d9833e8ad00c4f362c4ff47b0c0e2a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19e767aea724056e0ebc213c5b2c4d72", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91dcd7a8cc7a60ccf8a9035b07a928a4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df314eb802c572140780005db63fd714", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5702800e104e15fb01bfbc28cd0f3396", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae193bf362e008dcbf441abc0a38a1cc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f9b4a1c8b53e3af37dff58d34edeb72", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "049ca8316c9a71e19520b941608b0e97", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc9a3df971ec6f7678b831aff5fb70b2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1690a722bb29c5d08d5f0ea68b193bf4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef63e179d54ec2e9d558c7b207124728", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b37412701c444a69c87837cd89801d6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87c6975d1df1ddd61f8062589b633bfb", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e405fd422e44a9cedd21835ba900286f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13a567acc7b71804060a9ad0091e8c2f", + "notes": [], + "params": { + "seconds": 300.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17264fa3b66bb6895598b6fc140a2aee", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a592cdd088b45b849cb2ec829de0760", + "notes": [], + "params": { + "seconds": 180.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5375d4bcf158632d2302a5d28c98c88", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14b929f4e3492b442eb894e91e676bb7", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "332a3cb089cf6c882ed169f0441506ac", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecd429f45735595ccf8813c3a413af45", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e903de2d83345febffe7b57f40912fb", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31f7245c8f5051be9fab9555c653a778", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efda46fa7e5762e99ac136fed4c127d2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b6ae1a55193b4fb4bb78cddf8fde3ee", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf50529388b66958af3cf4f698ecccfd", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "499d7113a9bae56c5fdf3bc5e70c175f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9eecb8b4a6361b7ce141470cdea787bd", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17b564a34a569c3b61133ad8d8d3b156", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bab4fcd0191fa29793870e536b0a422", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56318d4e7d4a4e7bb2e64b0c96bae0e1", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a125eaab70979b2b2ccf4fca07aed4b", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92f2075b440ca57acd024132c503a95a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1bb16562d9db8609459860084bde4d9", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "640efbe369847d6c13a408ffbee532da", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "313b9cf0862e7edc43532fb7139ed2f2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a1285350c77754d760c17bc494e89d7", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4307fb7a171f208660413784ba6fe952", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d93596f615296a9b309cdc943846aae2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac0cd817d4ef2e24ebb803f1a62f7a8d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa572e53824f7503e616bf3e4daf0dde", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbefc53b83ea68936685c88f4b65de46", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64a79e1fa7fb6afec3f00e9eb0e772c0", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3e083884eabd8d5e18bd558e127e9d2", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9795fe1497b329bdc57e317fa5b4335", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a446cf89f72ed763a2596dcb765607da", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "792a88f04ed9c72323964a9a383314b2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8ca76ed3e071e2cb7044283273b7f8f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8d93c8bb9ca864ed057211470ff63e4", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20c58e609da1b255d6da6bf451b26575", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1e73f9484ba3b57260561a109087e3a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd80e9a20858cbcefc919e90f6172ef5", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "162284d3f4fbc2400d9a9ad8631329b1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34fd872500843ea90a70293ac8e8bbdc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8450547c0875ca999a6152e371c68cb8", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83ba89f9d5a26fc6e8d4da71b5c96000", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8033183d357e0541e955caa49813e06", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a6b511788204b62f8df043871ab16e6", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7d9f7852ed22aa01f8f8f2fec8a0789", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83b1ac9bc9293080a86e64ca64532b9b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d30ec510ea4cde1841e94ea579b25dc4", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cbf6a0725b4d4360069ee3c782aafd3", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02c4298b7ba2346beea0205bc7fde848", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f747fa9b8ccf1e282bfdd6448555c03", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e5f0e5058251fb809559706b1458fcb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cd52a6089d922a848c06777b234cfea", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10b3c31d1227866815608b64afc81d35", + "notes": [], + "params": { + "flowRate": 7.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0fce9e3e991fb072151bf01c4685c88", + "notes": [], + "params": { + "seconds": 5.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6e2e0db058a73fc27e74fbcabe1d6de", + "notes": [], + "params": { + "flowRate": 11.4, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f05d60b67a6014aec65c3407ea6d27a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18160493bff521ea77a657a75a7fa88e", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5ef6475d83b795f7b05b623619be241", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2331ed1bfa4c847f01a00f7ad29c8c3d", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "384275bceeb2fb54e3f3c69e790c2a1b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aaec8812f68158fc0da99cd049c5593", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecd73167c091c5dd900a26cb36541bd7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b13582082947a23b8b04cbd2dac0ae4d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f262f19b5ebffc364e6a6f376d2284d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f79f302a1558854b743273951ef6b74", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c96884e6d42a34f86e55de191016bf64", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab33816d80c70dd4ea6b461877a4e4a7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef5e7bbd62ceaa77e31db111e4f05980", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13192a76ee7de58ea2d26b77844f176f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dce2b9ce3244a3aa149582a6f33d5d6c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84b9f3df24beb73b800194a55fb4f52d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c909db5c306da2b2ac325abf2f4f1dd2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f01810828b7685fe7463e37315eac73", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5819102ae6b01a02c25b7b46a159f7e0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82b92a933f4ceb0e931107e3387b5462", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0932a1c396089bb10e86963853e2020", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13c66b526ee10bad1a1fc320adf33dfb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fba6de66a2c110b567102ee21b8a50eb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca04bd2c6004699a3954bd1add6298bf", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77f29b84d6ee8bc4aa3752d79801f1c1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f7d97c5724fe2068d432d09a5b6692c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "759d7ad6e47ec29d12b50d595f5370ba", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bea028dd09ceffb4a9a0ce308e233412", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "def63de700ff272292c0fd068925260d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "719768cc86eaf879f7eba07a4e00498e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aabbb674c8cb76ffed0b7e50b88a0bed", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fa1799da06529f79cb2f473a9f84947", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e18bafdbc501d539d7ebfe26b2bcd86b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "258c4beac0a15b4605d088c86880798d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd0040946df8f539768a93a730850319", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b873c8ea00a9178b925c6cc2634cc07", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dae3cd579348b0993a1e9dc281126950", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6868883cc0e2de37f9547a922b0f8c04", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83a6955ef39d0768802a04979cd958b9", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2055ab4f23941adb126950c5937b3eb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62c8ea963aa88a811dc6db205752807d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b191c74974d2070110f823619754205c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86735dfa607a8dcd9a59e3b86273a6b7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbbf968b14ed6baa87b869e6ea210472", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1653e4f84aadbdd8505af07437c7bc8", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dd6cdec2d523381639c53376c581775", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ae0546aab967cbf992c6286cd78bc35", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c115b458a2892dd9b28ae67891bea6b1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3963c022aa00152b0b8f6d35cd3e2a0d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce359977ee88a63c72f39c73b6cbf629", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19dc258537a836094fc5ed3bdd211611", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc71b322b910523d5ed7ea91041d3241", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b26e842b529a897b36c2ac7df19712bb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0131d4c03e6da7d4189499757033377f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ec401f68b52cd0d0b6e8b18675fe2cc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "955e0b6fcf060f0f8e69558806797864", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4716a0d5937137f01cce037510fa896c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b25aecc6a752c670782c5eeb2604caca", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c5f5c4e71b3f45c270ee4247b13e730", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f3cdf4d2928d18b9bbb1373b122ddbe", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d534692717736ffaca200ec39782848f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afd1f35ad246af89e5e9bf99bd932fbb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4965f344700c6e37d3805c80b912a912", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43290ab5719184970b66146bcea15e3b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bf816683906e7c913c45eb60fa1da6f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e583fb66a03fd38526167163b0013238", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f548692fc2d9c9f4d2e30a8fd2a3e323", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c233cadf6c551b2a534ac1f26d8331a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c29dfc7bab63b95e3e142dbd5c79cb88", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57aec1fd2840d10d4ede7e4f8d47c073", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b03e1e9eb962447a6a9e6d6126b56104", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd43cf1159af41a12625b75701bedc1a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e08b420f9f445419816f04d898ee6842", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "686b54486b5f965641d2b173a724cf1b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c878d79a969275c478ef737182f0e97", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0163013afc39d6e96e17b3f45d7d6e09", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c4dae4d7131968d89db0af2dbdda0a3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f594f916bcf55ad86f22a1427d20ff48", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90b2835783c5374a5ab8d9ce978769b3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71cb84daf286f9bc1a5e70da578dc422", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6e86fb1d26282bdf5ce098cdebe2bbf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "caf8de621e875f0d6f5a2d7fa092c7d3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fc4297aace7b0c9c63e6a914f921cf1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7878cc72ddbdbc404930b41e472744c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4898819789c59656ac47916ea908f5b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "146a4e5796e4bd21e118b04ece185d42", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35eb6bad781138e85203a865dcb16d88", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2273a958b8384e56b23912a6b7e84493", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a80825356fb6d65f9ace862803bf301", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84492212426be5a40562baf611e68ae5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4fd9423afef5cbc2b942ab49f4db5f5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b74d179018889a68b4e1235ba13fb5b3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89abab920985e388acd99dacbad2d62f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b247cf004f00ea10a370e9723f6e100", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d04e3011ae44f026c43aaddca1ec5e6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6b0cdc93fedb14bfcda716b4be820e1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ded74ea63c46198ac304414b630222ba", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8202a306b4968175d67c5100ff27261d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0838fcae9776902489866ed2199833e5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "178ea04e4c579834e66efbde482d41cb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "395cb513df336b3db31ecbc46dbd43a8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "330d0ed6ca1bae6a6437d279c6572171", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a29f7d685962ae5d52664ccb1cfc6106", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ea29a5ab9c626a3103696a224a76ae5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbba17d3075e1f529eaaf457ef95152e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b74f231dc43e7ea60c61ebaab3f4b6e1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "571cf191330833e1694692c32e8fe081", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c94ad52514be65d2d1427eb7e48ec64c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed309baa6624b154f930bfe5cdefde0a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ea2862cd4cf964f660f2a2e448fbdd6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecbe969a6a18081c98cb888fc58817af", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38cbb2f5f8865c33d131280bcd5db7ae", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1777e98320d2ed5d6ba15613e96c32ad", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1981cfa3c32687cceff31c6ada59af93", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aea32fee5216ea21f9dbe8cf4537e365", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c6d6c9919ad60ca2e0a65ad1fb48a5b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94ec299b1fdcee432cd0a382df635e29", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ec3d02ec6a1c938e7f420778b49a1a6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57f694151d53772c03a43d9b9e221bab", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fd79cda660dbcf41e2613a8a5763404", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d7f0e57b59a21968a9627f8b5e0c254", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70236ed5c2adb334c62a43f801db4bc6", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54f93407af6b12362c97977319b9cb0d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e50243c30a6b949b9572792cf991aa8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04472f9892ed067157eb86dbf4ff3261", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d532cd1496df31df308571be5eac286", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ee85be869029cc9bc4e09fb79754fc9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3458c979502ca2352566d147cff912fb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5f4d5c33b91be51e4d13b886222e1be", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9e56ef22f056dd3bde07deebaddc050", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e083a5d9623a061d7ea83a175b9f244b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65d64fe3c70b4986a03c6aebbc7f9698", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "535db1854221fc7fa21eb7f1cdd9ad94", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d949e7814ec60e23d1b484e3e1a51b0f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29485a6d320e94452c6a79e0a3d0a785", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95cc1e00abab20634c0a7c5c3deb66a8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccffb2ee0f71bfe1c6d6752ccea073b3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6778472f2b3cc1603b5ec02a4ee3cb7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87e1cbfee47051075603414900800df9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6645bb25e4d8f16df90d973771503c34", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05d51cc727d56d5bb444cd382ea0bebd", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "993c72b151f5ab88cddc80bebf4fc55d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "679bb7619cb70b6fc329bb79c76eaaa0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f4a1ad812bdcfa30242a4f41a3b7747", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de9578362a20a9aa71c96cc90d851442", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f902d78a84971cbf1b56c20733f35ec6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b185ff8b63e1bc835fe13309b2b46900", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68e1ec5e3d35a7e7a4247aa8fc6af324", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e747da2fa252dc6f03848eed0c1f276", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72527ec7cee0485c9f6aaa138631fc71", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "089159371f92ebb16eb2433299a2387d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f944cbbc6ecbb375d0665be9dfe589e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5607d4510671c54be572b20a7b95212f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd14d4e6e1f57905f53f44d8b39c0172", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23dd8f274dc8505b5bca692f69e3df11", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff54e8912296471f8d76fd5ccb42e501", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb76bbe992dd4ba4b8716e5016395ad5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b49a13f327b22ca36357f56074b4651", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "249e3c6ae2fb720d10e3ee5bf5424228", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2de7dd9d9b47b43edc508f760398801", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b887dee38f70844b30f7db62f497b7aa", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9417fc63339d87e2161489a34eebcb14", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6273fcbf5e03dab5c741c925927efac4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "faf5c3e81897395ce61cc1a58e4d43dd", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "409c73ba41bc150f1f2919761f0a0bd2", + "notes": [], + "params": { + "seconds": 300.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc3fd0751ba6d79a2b786a210d2db48e", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54e74db8c266831b3c2ecac6de23bd39", + "notes": [], + "params": { + "seconds": 240.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91dfb02b99ff08e08a18591d1b3dbda4", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterCovered", + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d3748dabf6760d60e82e0ab0a8e7192", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "901cc78b48386c7561377c36a841bcee", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d3487660b85301e02c0fd4640afb63a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "faa8d7d34d9a8af526029e2146690d2e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36ee0356f21a9a73bf94fbcea4a5cec9", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a325af23e8b10a725e267e8fd4bd28a1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5a69663bdd91c2cb22cf7268ec1cffe", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef238c28e698a12adc492708b263d6fc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e1fc19544f9a6aae8e433388d044c21", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33ada757122ca3ad5d623c336e915886", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1f978ef735d9fbca570aee13e3f3800", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e44a58ad3ee29cac6420a451485e14d6", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b953ad1f6cb84885d4d43591732a44e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d3a99f78193fb7861e12428169f8a57", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec91d17040ad4c020f769a20232a2aef", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3306747b9bdad7406993796f11ad9737", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd346ea5b3143a6a1a5840a7d4e1b760", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "472366251f81808e6c3076a86426fd05", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b868acdcb01a78a85d4cf4160fbdb29", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1377559d42eb8192b384bcecd29d5423", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a59ea6a5686b769daba233cd0a6f3abb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1e63c6b47a10d6e371fa62ec0533075", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "090cbf07be26f8497380459bf67bbe55", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e74389363739857876e573eacabc2839", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be4497e3abe7b989241a0b1540da0cc9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eaace5059ea0dc5f393d40a3574d5e24", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dc3129f21d9f7ca0b13bd7eb3742cd2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc4c04fa11e66acabd879ce8cfbc0d95", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f26be9fda8e5c5f670f171c5333dda8", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79d0865ecd14195ee24a12b981d68570", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d566c9cb785956c2c37920890f6b1a56", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fba1d6336ec3b445eef4baf2c437a57", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba7115ba103823d33c78d474baad4141", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b658c12ec2b83aeb7a03ac3112c53fe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ac8578274eda2ff41a9130bccc68fad", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31da59e27907773a7df3aeabc79cb20d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc2e7fb9ed4afde84329f56c51da340d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec99ea8bc51307f7c1992be9fa46a133", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c1078071d78185edeadb44a1de635c0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d9bbb23189bab38b193d7f997f340b2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01e9bf50454fe7d14e1c5890b461be89", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c95ac7b8adf40504ff728a661016ba7", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28eda9efe64009c2c077e8bdd6a5069c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57b772241590b3fdab5b7c6f3ade10de", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db9208cbfb53990878a03d51eb528e25", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "022b6fbc89ca83bb0c5fcc1ae27cd719", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a1424cb2e8306794fc4ec0dfb3d5b55", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "551a82c843141893767aab2049354ba8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8abee6cd5a7bd3f1ea986fe71f78b64c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e91ba38681359fc30b793c71818e2b4a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4eb39876c36ac794ca2ad8bbc4fdbfc7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac63828052250f3c34d9f2709c77dbab", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd55719672a6f3b19fe900fc6a8e9319", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96f34819403040daa9c36de5e1f56fb9", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7056e21827bea4750b346a90c569dd1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b203a51397b2427867421a8c706f5c18", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1f438f596f70c719c62cd25b235586e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0fd0b5bfd11ac0784988b049bebbe84", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ca8c7b29bd1e316e4379dee30065c8b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd93265ca8c5abc306c8c2422db5a0e3", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c1f8f3a80e3576cd0a07cec3ba4e2ec", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdc0717bfdf3f959ee6da515ccb45278", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d00705518547e71c545c4f0f30e4733", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5bb1675a35c247ae1ee631cc82953b9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b0e9e0dd87b2de8ccd51fc9adcd8c20", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "044231f8c0f9c25178de0f56dc5e46cc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1164d34a392a8f71f4fac43289c1a38", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "021300c852292fa86d843375f393174f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5051771485ca3b69518375c241613a7b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "818392b01b124d96b8eaf47378471eeb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a98eb1c2c09d03743a51a8e11ad48d03", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f33f94b2b31ebac2724a7577f50a1484", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3148ee20ad48527dd48d105034c04b3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f828ba0f24154edcf2fa894c0b197e00", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80d9d02afe45f4ed60340e0100abb210", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3e5b856221527eb976491590cefae13", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d604945cce6211bfd861529ad8d64d2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb4481b9e725676c029aa87e6afe824b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50109e0498a99e139684fb96d20790aa", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37cb86a36c10cd32f8afadb60a851362", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba37d04a9f4a9a27f7c8bb28e0d6f237", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b6dddaea7a00c910e8c4c97877af6e4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd4395df7d8220401366259e53ebc29a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07fc7454671f5d947c8659f829e30ca9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf21112e158c91539e6e56a38fde5ba9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1eb2a73b8836e561dbbaa34de8cbe7d6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8cfcbd10b70afd157aa295e135173fc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9b7de457b4ebadbf817172310f9c08d", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a428745b135285e2d343888f3f0f4504", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72cade4b84f5c6aff7c2b2d65295cb68", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71181ef2b0396c34bd6387d4cca9e196", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecf6baae5ecd6630b0bcc5e48b50c231", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e7adafaf8b46cb25fb6dd5e8d549b63", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cdd218bbd0932d91daffcc0ce11708f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "844c046bcbf0c29dca219e5057692115", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e544d1cd992f215fd63c7cb89a1861b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6fde72220a9ba7bca354f09b1e8dfc22", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91794bf17c7a5e5f860eb45c76e98aa1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4bf85cf7e8e3202b751b81ad910b5e8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59afd77d1cbb7744194248d75b778adb", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 107.0, + "y": 141.12, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60e0b1c7899d07b6548d8cb1abc685bc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b284c5951ac80444dfc63b0166e6bbe", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e373d225820c9078f821a6959217238", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df1d68c1260bcd67bef7f5d4f79fadc4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2abb9e8b430a4f4a69555e46f51853de", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "549c822ed8cc751a65e7ae5e45749d57", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "219b3ba327398021be5b70291168f5ef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0858cfe0e0f2720e80e1d3a38ff61d1b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0c7163f92aff0dcf6f66ac497799b0a", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b85897f9b0fad7a13c1b185d557afe1", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bea044ee60ec9a8692c4f1347fc620a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b44fe61fd9e4d8c50cf611d35fd88a2c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c20ab24074bdc229d0a9ebc84e73cff0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59674a08863d6c030a70c7b9f4e2a276", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b60b047f658af9c0630a9b937efa14e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "889de05363fb19441c36e3c3907eb2b8", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0cf3866fb0a065af86aecc16ce5a27c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b49c289dcb37d21a868a76ddaf80bd7", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9cafa66825563093b0526091918f1ef", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e3c88c875e232672d8463da4de2ee34", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e968e9d43261965534414b319807079e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69b82dc8860621e38718f2450201aac7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6957f35f3103f39cfacca4a002265a38", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "842028aab769e2ecd424c769e926d593", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb7804876e97f5083aaa68c94adb3f22", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ae7105a59ef4c5d1b0e00cebbe615e3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06905092a5210054bdc3e1405afe73ae", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c27f29a2d648c71bccb8c4c8feefebd3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61d13bc63d57bcf59a62f483d7e73883", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae2f1aade992679bfa72220335630b71", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aded5ec038f3f0c2746e598b0ce5a37", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25c1a01888de5c6b462a4d71085466c9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9234442f94814bb3a58383054f7ebd5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9be369b410895c1f3c0dad943d9040ba", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2080f1d43ce32f21c85f3aa892b0c1d4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa3e23ad76a26583e137d68c6b635b33", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b387edb008bd0244fc9f5041642d0c84", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "069cc8781a88e5f5dacf45521847152a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cae6ef0a159f925af3d446e628e26a8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3d70d9993bb7863ffbef94ad3d7abe0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "641407e8f77667024ef7263e12521eb1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78e7f5bd51d9975c3c426a0ff871e643", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3912ad809b41655eaf5a7f686877999", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d78bc7e6362528e35ad92491f277e60a", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83916346135029d132e4615edd7b709d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b89cb34de6517e0e67af0ccc4bae2e3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d43521099702be9150bcb36be60fa7f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8a0545f43601ad0e50e22add6ea1040", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ad827a49aa23801aef53ce114190c1b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57a085288285753630349c2170b4237b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "963ff22bb7c4986318a0f9dfd2489d90", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1bf10eafbce030d9fe068cdbadb57a1", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4fd82c74409acbf2695a508ba25ce44", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a301869275ee25bab150b638aa72f5a6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d6a694c4e56692442a0e8495fc29961", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc5051f35374ddee44601d2514ce831b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f15a3c7f937f4d8aaba7fa126583da8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "892e61d846a407eccd719828cee02782", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6237c05129aea76c1807977629a7642a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2314791fbf5e1094c5397f7f56e91473", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb410f68e576c48ce49971f84e09ce13", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81077cd4af593576d3388ff9058b6ca1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77cf9f01c514bb7a01a66e589974c2f8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2a50961855b7746b3d4a0855ff1edb1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "677615274b955da9be529a235f1a3b84", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99c13a895edfde2e657adf0cd9d2d29c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ac6820ed847a500dbfecf7dc62d086f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd0a55d736e335384e05ea56bfc5c02d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a78681e5b8eafe31373b6d2253645670", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c989b1a43cb25905be643eb2c09314d0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "371626b0f9dcd8d0a35d7e9ae6d72af7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "751c328789bafbe91e36c31868119660", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e6946ff17fa5b48a6f5240564206dc9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9903704c6ecccc2ad4f4933869711d34", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55e34a81f158875e68013665ce7ee00b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aac53734543d865ed69fd0cd72915a59", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1aea13063c19f6a0259a968f37e03f9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "309d85300db063bfd123406532574fe8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fd02c46cb74b28a2ba8925e20e34323", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c6f810d05f65c5b944d819f5e3abdbb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "993fd96fe8cf4a95cb33fcd869d7631b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45d8ac1e9fe71b8979a3e0b5650ab5c9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffadc051d1870b3c359942ffa0c62f54", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a7d29d8ca4aa48b94aa710a73ea3fcd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2250acfa73f44908f77db2ac531458d8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7efca82ff0f96d64b2c918e76f98d7f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af6811376a2fc5993425818bef63415f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "990db8cd806c6e84afc8238a7c33a4bf", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24c51083aea6032277c96c76b1cb1400", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25c9b5c9b169d4838a615890fd8ae2f5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "219ad9f2beace296daf1bc5b76883a1b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86ab429befdf1a27407b879a2c31c35b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "102c854c7e38fb1942f422317d17cc11", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "660b8f677211a5188a7155ace95a7298", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10fa8e6f65e2622231bb407fe9d3b13b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4237cf68ea6b279247d6d58ca37f42a1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c95a4cf683554084f5be31ef5602a91a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10cee825141a253164b78ee61a82c7ba", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de7a9a3d5a2b27ec35e47a3679c39279", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a0642d5bc8804981479b3afe3707260", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b990945d07087257131c166d35351d5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93adea845e27b0c2d34b6df3209d5912", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65f370d2849229ad5c428f67b86bbf27", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4faab5b96f6794b502a28961421c1c3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4eb24998d54871b059c3e6011d3b5e1a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9699aa8998110ea1aeab0b037946bf5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11f3a19cc4c9309b414e00e3813102f7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2d7341d9e4a113772cbffb9e55072cf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ce11c160cd27d2efb1da0a196564679", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ad622412cc90f05ed586f5c98658f95", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2aaebb7bc1a7076def917642f6ac8a3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5584c1a6c2dc215126ce9a36ebbf3e27", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abb80a5e454b24d58e8e1de388a17b79", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "525c2ebdddc3b853aa9ffb1d6658d431", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9150d9af4925608fde961c95d5158c39", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd99309ddd94b836d27a9ac69ca08609", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bd6ba586a024dd4dcb7349f309a18d2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b93553d182d777016fd1ffeed12a3001", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ecd2fc161acfe8b377bc052b3deda84", + "notes": [], + "params": { + "flowRate": 3.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "548d187e8433bcf540833bba72da9be8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf8b2e5515f594bf4eb730ee015c286a", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cbe59c2ff0fa5882517a86fc8dc6079", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f77289a8d80e9ad98678b4a4eb322ad", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "569315ec13ed4071f2af7d3f8ccd0a82", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46c0630de320434de0e5f3fdc856844b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4c4bcafb126f520778c675d656bd8ca", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc4f89c035c627519c3bd15e46147089", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0619059a07bd11864add0c5be23b434d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acd0b1ede3add254cf01b6322cfd9d8f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f949dbbc9b8aed81b7754c5f41cb838", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c86f53b2797b5be0e840f1f6c87ca475", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa164fffb7dbcf87ed10bac5697302f8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cadac851b7fdd5fc1545f341a55b7cd5", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c532557a44e1e8487393f421ea0a845b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5710ba84a43ce32c2788a068b47b6227", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6aa45fcf2b6755558eb4b5ce4704a06c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "738e36952ab8c239d436bba8de829dc2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8269e6a695142f18b9279b3f03d26d37", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bb4263e3fdb1e115865a2bc8b0cf2b3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86a3fd8cac41783cb18162d30a63982d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24c87d246887859202462ea61340fb10", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01637cf3b7fddc974648b639b4ddf1d1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd30bf586ebea7512f11364ec00cd29f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c58f2da9ff76f8a1564028c5adbcb61e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef6d2dafcad15c48c5a92884e57278b0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4075a374ea4f38e931e88d1b8810b577", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bfaca51734d825a38f2a107b4a4be03", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52351442476b24b37b8f2fb80c244d06", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4674720f606fb5e822dc06743adcae0a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7266f01f666f7fdd751d6b423ad49605", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "175cfcd9f48d00dbb8085174c42ed706", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6d88fee959a2e650a922b272361e849", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61f004753bc176ddc6655ecf0cebedf1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60b2a9630e5bc00c50ffd105af20c507", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60cb0d2b3b9abf3e4558a3d716ea6cf3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd0ea4b690d03674f62aa7b776c3a008", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea58195ca0ae4841a1967ff485c8ee96", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bda2e61e04d743e2649d650169ff3af3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41d5b24619a41ebdbd0008b4480887d8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc7d75aea45304e9cef422d85d9551ba", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46c66f32fb274df01b06f4eef413f793", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89c9a81ffb69d01cbbe36fa9a0839afa", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5653ea5659ea84dd1a68bcb12fe9e710", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08159cdf73d00410f92570c49c788531", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15173ab87f528c47f6a65b2ad521a25d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3a84991044e942c4c4a83004a8d0518", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35cf7bc5774e294fa466ef57271fd8f9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71bc07836eab17a97ed201d1014fce8f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3add30d9dc024d0be1aa368fa5bf6f5", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06b6ba2222eeb597fc5324c99758f6be", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b9ed115384cb3d32b1f50281116af28", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5561bf8de60220c9b0986c27fd6239c5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c16da06cded3dc02b9befbc4e029e74c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80153be70bccd861c657b320b8f97769", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04e58b85d6da9346104ab59e454c00dc", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14aba5771205f2bb37723567126a7691", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f1cfe5845467afcf8f88b6674b2a839", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ad174b887753bfa7e5c7ad9b6964825", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "484a1d37291d0498ce129542f7374eef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea5be5e13491d8c3a757d6a89a18f2dc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e367ed640e85a811e7546a15a0d3acf5", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15f373c28434843b99663e5da4ecb86c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70fd696cb607d8d13b6581ee53fd0eb3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9ccffc7dcf7b3d04f35cdc7d983f268", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f90d29066b77da47dfadbe4835c90520", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d491cb90a0b3d101d46b8b1fed438c05", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e9d093f7e3eb14887fe29190a593826", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0210e7cc12a8065b74aadae6cd607a3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "948e30309c0cfd546f2f775dc05808c3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4487213c83b630eb298c6dfd252fa751", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66fdfac604ae84e85fe70da6031deaa3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "998f09712e71976a6fc868fae660a264", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ce4e4deeccb1084de2bdd8935386a14", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "292dd0ac69cf9cf57d76651d6afb9c82", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77ba579b2244e71e68964609b8537afe", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae8e244b1abb4094ef138172b92416fd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c132d983e4227252512ead36737a017", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "803e0ed770376ca1ea7624888f602f16", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8dd869795dc514b5b1c5fa056c07ea80", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c18cecfb52f990ada8b45b8ee3800ace", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f1a96111b28923c742a10700bda3fcb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42f2117a68bdb5cdf25b0bb71e8ff03f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf73c954431fdf65afb1e066e7ae6539", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f59ede7924f64f083f02c15f0793087", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "614124de2c675f3e33d90df54c1f2728", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47dbcad1ac8cb6819639d41d6337b187", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d74c5c70fe9dcf6cc31db90b44b8144", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ade61916cb30b60a6c51670c065e3f7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "544515e9c0529457c6778a49406d7855", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4d827714a8b02f507ded1d87cec4f43", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed7e3b51cc3008b2efe5eed0344abb7d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c46797cbae2f2b217834cfb850e5d4d8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "736694fb03e27608bbb405078e3bb95e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44b48e9ce24859103e86e42914bd65ca", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3a0e120ff26e087167b23cbf6939498", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d05d2753d6f0aa4abe851cf8d6994b5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05ee2e469c5e0fc22e2cdf4250ef9050", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e651b9cdfeef70db75e5ad47f125360", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbba86dea560f3d6d88abe6a63f41fae", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e72af08b8b9011a4b01d84ce0b6fc6d3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d3e40cedb53f588c97795c01fe1acf1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab65d01f2ee6b5ece8ee597c58d414b4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68b8a6058e6a8ca6611e2c0c01689bcc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71f0dd6f5609681ad93a105ea7d0a824", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d1a2dc444a40b034cc6446b476d458c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43157a7cd8c8d5050d87f13ebb25cbd7", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "715678fcf1e6e5adb687c1cb686b6ba7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4b7de26f843eaf92ab84dca1c17b200", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0c3ba00ef4fe69a7e7b7c1ae8a8e0fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65d74b726e8bcb819771db8bb5fafdcb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e9054f7abd62b820f7908f1d766371a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "089818472699013c6807eb83e09840ed", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c9b98e3568a84d26dea7f146f3e6180", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce2e1f6aa7a5c106c75fa4da85ecc042", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a3fd00475dd5d9b5c72f4f3410bd12d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4c1f941f11a49dff68e0b98ffd8b86d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c284f639aaffc69fdff506321ddf402", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11044ff60923a01b7c39ee20a7a423d2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67b4655d28536255a1904d38ce72c257", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b307cd894a9699eaae8070a917a9f3c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8c08c902e6db78b4c883ea076f193a0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e13e34b4e454bb844a4079d2c53fdc35", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa7a75dbdcbd641011fda9e43e90c77c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45a9afabe8cd74f4313938453a65cd5b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cd4d5e2a2373f70eaf94947cf1cc330", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bde4c3bee55d2def384322930193cf51", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ff995ac47c0b14705a6090f0042b251", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59de9953ee4520fa2e712533a67433d6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1a2d3fdd83d227f858fc4d34feb5d96", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efe5dae04909099ea079080bc9de5fb3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7606973186ec74efc6d9d13fa8acf51f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63b7ec15cd23a0c5f3a5bdba5a840930", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54526c6d32fb0850542c5ca287cc7462", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c576ae8eae52d7f1b297dd50e7daf769", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e293c32ade398e547feca667af909ef4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbc81071701e096c9d01f15a303b5c7a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e400fb91d98a96be39095aa51aac5c29", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5787be0779f3a2d89be6a9192e0a7c32", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c680238e31dcf1abdb6e99034813435f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0af533b2edd36d346bb7a94d71764784", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f270d3217f0ec9a068098fa078263867", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8aec1cbf66a3baaa388e03adbf6a76d3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6665a9de761d22b0894748bd5a4c87d4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05417af98ff4c98bfc07731a82dc7737", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2a0445a0eaad2c515ad61da3cff4e21", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb70ae9c6385641243cf5e8dd16ebbd9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c276f1c941c67227068ddfc8b4be8b88", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "395f8320775c206dffc2c021b8a6a006", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a304c24db48f747f5785638fb5069be8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6b5922de501ee9989a1d4487cf2bebe", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a0dc4e311cc1da9ded41efc4cef8719", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "315c694534e6b1d7505f20542c89d9be", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.749999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 35.71000000000001 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20840c10385d2d137f733afe4f415837", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0c6d4c0fb368299a5c3cad9439bbaa3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51f9e577d8a5327fb39feaf7463a632f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99b7b8eae5f3f4d92c3fd36f62b5464f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9160bf25dcd91f2b3f265476c39dd7a", + "notes": [], + "params": { + "flowRate": 3.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9177c8936f0bf4227be16269ba4f103b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "959dbdb620fca1137d54533c125de151", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f133caae3c10e20f5661563b531952a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c578e0d30675072019a7b4606c4f1d1a", + "notes": [], + "params": { + "seconds": 30.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78c1378b52bf55193d9cd2cc7d95b92a", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterCovered", + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterCovered", + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76c11a6d4f490bfe91889d80f8c718e7", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fc67118608f1da653912010a17ec1c0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc04916c4d71be824658a9f6d8dc7e07", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e093fb4ce1b238f51f4db0d9ffb9c2a4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cca8342f339ca9bb0da8cb556e234dec", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69cc00ca3d740ae422548ffaec9efdd1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a41026bd88d45dc1d3f6d52df63da3b5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20169de0fb6a14363227c9182b6d7666", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "361456943152882ef77e168874fa319d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd2932f1adf751bc8c5eb9471cc73329", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc5ccc75506755d7f3f89778a167e822", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d6685a9f033930dd3cbf52661afa87d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f03ae7791ef017d604c675641687998b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ad366ec802675080a7a5e6c0ad4ee1b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ac68a057a621b52d5bd083c0e4bbf54", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9d1da119f3932e9c030ec7f477936e9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28734f7bc4d78dce18d9b63eff4e993d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d20c813190fbadfeddc397409284b8e0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f285be94d6d92da4883715574185d80b", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b84c5835b5025d94ded3ab7534e2b878", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f64c278e96449f17cb32785f7dff893", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd71ba69c5bf36ec2adb5b5e9d60d869", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b9107f298ebe30864b58554b73506be", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbbb2633fa3072f6423e1a80f4cc466c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51e70c27c4c82aa57a700484ccb7a787", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e301c14be2e1a4d421555805eeb4b2f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "663a115b7c9c83bd25a5357d0af729e0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0042159f02146085cd9285960560ebaa", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e67fa65bc3525fa0910fe10a49263047", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35bc1f7ce01ad10f39314fa4572acd7a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8b15f322729f11685dde8bef9dc05bf", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c628cd709de7453e732b5d55ef92276", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d9286a1c3d5a42022284495bd4ad398", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d998639d23c6ad6e1f809c0c6cbd5fce", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d50d95409ef4aa3e69ecaa64405c4892", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecdf9f60c06b0443eef269d196c370ec", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f7a5dc9af6c76bb89da9637c51d92f6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f81209d1bec638bb68178cdad06fa43", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed76ffff34a7e0b8ce057c454d88bfc5", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a7452557128e3889f768cb4a186ea48", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc8bc48d0d807e5824b018dd420251d0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df017bea718ffd30929b8e4b0b06583d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8622e1aba7fd42c30d95a5343c034a13", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c2efad2b79c4a1e84f8e213c13ef370", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b8f2bf239bcfb98bbbe329b9e15bef4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f5fe240a1c99ffff1806d54dcf412d5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7352a54bbd9c86cce1b527d4ad771992", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6da7082d7c25941b5455510278b999cf", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0655d21b533f86401dd9fd791c508ee1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49108cde89492b148ae732e52407faaa", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4eded44aa4b0fe74748f0f4e75c2c6c1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c38af2fc0e7a64da04d012b0c330a0f2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "282b9bf60eb152392a3e5d4435706acb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "993ab62b8a3b3e2291b52f80c961753d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e555bddc5f9399e1232c4fc7f6a5e126", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aabf8ca4d9f268a913404d25261666b4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "913a835135260f0a5bb227e7b66507d9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "156952e0ae07461eddb05c8ab15b67dd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4405cdaa9a72e72f2b5abba9f6434c7", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "325ea03f304a09d767fce4a4ebe74942", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9724a6e7adb84d0e9b1e626c2a396cbf", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8bc63fa596ddebf63aace6a75c5015b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74df412fd7a0a830746fe3b40de8e2f1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aff4bbbd6c26908a9aae9a2a3428e8f5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d55c6a7780af7f15f7cac41b90f3353c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b1b9dd050c39e0b5cd157d079742679", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d89d3f979c9eefb2a1d6da0d90cb3741", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd725ac52cb21ba2d61ee281a34d32d7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dff640dca33b2cf0731848746a9841e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26055a84cc2bb11ce7087985e1bb5007", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4240b6d1bdee4288ce8b96afdc567e76", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0e921015c85ef1559c4882e701fe02e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f52afae8daad189060f643dd857148a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ceeaed64d3454836c6c966232839e78c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ee0102aefdae30637e48a159d2b0384", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbb176c65a4c26442967b4c15cfd5950", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecf088ff8b7d3af7e3ad974f79b40c7e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15f5a2810afacea6fb49b3f480fb06d0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b6a68bdc2c018540a727673124ad84b", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3efb15718dc5cf2f3fe41eaf1991069f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a73cf856652d0419b08d447f7b451bb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f2cb5219c127e92fa8ea3170cc88ac2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bcceeda30b1629a156fb2b88c14d499", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "323aec0536ba0aeb944f5e97fb14a179", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c27e385e3cf62c1c7e53c82d3506056a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf75218b8ebe84770c9d4fcc30a1d6a5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f72e7ea0060471bf8b064087f0bc01c4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7f6bd3ac34e292afffb24d32f20b64a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8dbf51e34bde484fe11b5b787216e9dc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d69c8f396ae1e1d118146864d99d090", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b8d4b57d6050cff70c6b53e5b45837a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e51f7616cffb262752d875833c28b33", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "477b0b36c0296a6360f8f0023e2cba71", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df045d406b6baa7bd8cea5ba28b264b4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56dec8c52d2c2996b62e78edafb6b475", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99be5fcda5d3ad6a4dfcd626241db893", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e53c25db7f13fcc7cde4b35f4a5d3db3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3e8250a353eac0f1eee53755bce3a37", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6c1eba16834532f7dc3424cc631f19e", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e71ff58610db799f4f1ada5b5c5d1c6", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ac0e06fb6c2ed82666218a4883fa1a5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1900a5d50888d98be585ba3fd6b58cdd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "998d7a369b9387871004fb086cec5d16", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84615371581fc7cfeb5c8fb2c2b23993", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b5b9ffd86d1c426adccd89f96bf0f51", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b0e54377ea6fafe050c8ef4f1614ff0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00df5b7cc73006e1bdc3d40b175d37ef", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d8d9f581c4a7f3abc6a93b414db102f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9796aa21683fb46a2e825e8dccef0e94", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c160df534334d864583116a6f3aff2c7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "517b7c6e41797cb45f5eb790fafe24b5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9613a21cd24736abf9c4fec54c44a701", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e03811bf4fd06ce701afcccc64c67474", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c80bd0d106183e753fd8e92a73f1cad8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e352dcf770322bfc45aa34c32fadf75c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f4759bb0fc7cc2f2c69a5bd49a5a390", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ca438768de069c827b09e1038fbd51f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e19d7be7b2851256ccc19b51943034f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4c1e0349f7f32327d2eed79de389f9f", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e492c5f9c2933c76a15a682e9a4f8020", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9777287a5efe8cbe7fa30ea418c7fcc0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9601bc8166404d88aba3e452c8c386a6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b77ac7bdb3601d25c2505b2af6a97ed1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6798663257d09b781e9467e6abb4928", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ae528f07594aa8d8cc099a794e80c45", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4275eb1d587f41fe99400213122be959", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92cb2298535782b5c6c3456865b4cba4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee99a39b38a68127b384c220e9377153", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02b709411ddee99d6674470b3c03fe95", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df4a2686fe5a1832d2d20e862e5e2aa9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b9ade35884ba5f23bb098a2ef7a3e44", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "081213a4cb7d94b63cb545347f736ab0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b36b484f17d58214c1bdc5590211f337", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "586f243ae965f83ddc1f5b030aaa8a93", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea2a70ab325892aac5e5887841cbf15a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f4b3f348f121dfdcfa4fa912fa66412", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9faf65bd95b0127a65fa2f447b864d90", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a67b45ec7a5ad179e81ff673002155f8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc6923454a042b088c220686ccfa53e5", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9158645f09a2a7909f7fbc96100b359d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05918297d19e3025c291c8c1a0163849", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bf9d9725e5bf1f7d54e184070480f94", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdea7f0f4284454e4e5618222adcb6d0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f35360e18be82e38a2ca70983ff759f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b12d37dd24a45c217c6c44379ed6686", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa4f234a17986b7b0b34bdb24af5d840", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87997504bdf60d2247d8d05a2fbf9cef", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9a78a0637ceeef7013a2172d448ecf7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d33f8e140378b2c59fae0bc4c4f3209", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2289e9cbf1f486866629b17372c7291b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fc1ad458a9d46851875b4872370b97f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77250700d7d938089f9cb32cad6e29bd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5850104e5fd5efd4e6c16d329f7e1aa", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66d41d2afe5f69b8193c81c613f16412", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2e312a1fcaa467a01447ca265350d68", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "542c816a581e3a533620e2c3af202332", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7feba80efada6166fcb3a617662a5c4d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3a0eba80901dad921572f59c10c0676", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c58cf40e3e70bc5a0b0044b25253fdfd", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92a8dc32493f5d517ff996edc8f56d21", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15ea8fef45d59353780bf93520eea7ae", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "065fd57886442304f5855dc37f784208", + "notes": [], + "params": { + "seconds": 300.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80fe26b66d60cd9f4dabe52455cdaf7e", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c69e72ac7886c0e0e551eff42a69ae42", + "notes": [], + "params": { + "seconds": 240.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd97f59ad1f3fd0ccd6ad17b96ca660d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "876a31bf3fbacf1ecb5f175cfb62fd58", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7126c5f211a7c7ea604f0f3b7cc8f30", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8ef95ab6d1b00d10325027b569ca84a", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c298c823dab7e17f74d981081680779", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "baf201aa80ac3476482c66ccd81301da", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56b765cdcb8565a7b0319cc573fb7b9f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b35f5ee81f7b8b5ba8ca7823ad85246", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0f19d35be22ea150db18396d010157c", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4346864b9a0a882343c2be119f07d84b", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22d5e8c08d90f512497cd11bf4061db7", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e083a38b4f9f0867f0a5e4280233d0bf", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc10f2375db546723411ec633319b6df", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fd2a6389a10bd1366cb73bd2cb05eed", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fa23da71e336ae5144d20d839e87740", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab0daf421f33f3fa96dca82d166e9aaf", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98e6dd29151c3a670189d8a18d840e5a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b99c4d1f159d3af556c23d15c2968f93", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9babdd8fbaf928c306e8c7b2d49a21a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cf3984f985efb180c5f63d64c707680", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9633e373eb3b442993d418018aa17f9c", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d66bf805778e85299d7b853b22b9832", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df7c8a231bb0c912fac8c81e090120b6", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83e0ed963cbc95011552e1864f2c8de5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bf5ee50466ba12339759cac82ff5efc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f26166836088b79a7d983602f591d5da", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bc4391f10987ad87c37c72e2d0e8859", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cebf0e79d121533aeaf962bf20497c5", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbe5cfa11a759ac8d735131729755b99", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acf9dc548e86bb41fc449546bca334d9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7cdf12e16a4fd2ccd844535e40661be", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76d216c04d0f541d27bf5b8a1298e91b", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa1b348c91e8c36b5a037cbf6cba1bbb", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa61d0ddc747e4354046d989ace9a8c3", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2c2d8a318a3400b57c3c8b641e892e9", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0338804d16ce9adb6d79567e90b41024", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01e9d6b838951a49a6e36a54bf9d0143", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36eb534468c8d64497ade36ee95d35bb", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d958632cf27cc5b8a11b64cb18bd32f", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7afcfbbdf2adc55643920d3d08a17bb", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "976814d32c755e821cbbd28f308492a1", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af4b7e8c06a90a8c86ab16905207b7ba", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dedc05956187c5c944b66e3c66189e32", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e357b4b8ed6082f736bf2b90bb27dce8", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfa8e787fe2da2a7c98cc5964e1cfbc7", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56ad91fec1e9ad5dec9258209f09778f", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d83c01cd88b52b15ff94af45e252cdd8", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6746954d9509856ac7ee54da6bd2faa", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5926001d0545373c7988f8777ef0730b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b9679422eb2caaa8bec9fe7aa433642", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 169.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 169.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2a79b61f369784fc8bec13f7b4725e7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 169.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 169.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1372b62e166e5c7ad391169578befb2d", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 51.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08404d1418daeecad95043dbbb975792", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efb93c6ffa2797af07b043a5dbaf92a6", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "961a383da3a62bca5cca70ee41114b95", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7288e367ef0d54f0c35ea183c4ccf29", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 193.60000000000002, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 55.25, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 193.60000000000002 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5954e234a741ddad221eca1fa920b3d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 193.60000000000002, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 193.60000000000002 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3eeca08678055088c11d9fca80217eb", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 51.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "add1d243cc13b7ced69c0ce11ce76e25", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9acd12c5218444404b23bf577f569e2e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e119762ef09ed8d144d086fda34de538", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86bde473b34e103132dd5a80b12b5c45", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.80000000000001, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 38.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 96.80000000000001 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "151d98582867cb06d036b9e83a4e362c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.80000000000001, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 96.80000000000001 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3795281bfddb9336ee9aec96ea216a45", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 51.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b457429f97673be62571e2551fc65ef", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4de44538425cc4d0ce9a79dedd854e60", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d30248fc5af243697de5ec3e16676eb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d532d79d923e46a10b6e13d3be3b052b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.64, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 20.75, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 24.64 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "181a06bc4f5e48587bf6d880f0465311", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 24.64, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 24.64 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b537bea371aadcecfa7574c48dea41f", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 51.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53a8bc76c61e2d36373bc899c4b05abd", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0a90afaa916b9b4ba5aad17b23b5908", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d0457525e419fb8bbb9f84144faf7bb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aba346f5d1e3c927c683446f5935e79b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "711708e91205455ee2518ad73ad27d22", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b18ff859415886c6a72fb4fd858223aa", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71407d7806df99bbd7cffe1101ee15e2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "039363e12d047bc164637002a5e43373", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05355de9d108d5d8b83ce30a7ce1da08", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5a16b8b22d437002c05e5a7eb210cec", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b21ac1082016d0cdc47b21e2a1b08706", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05b547fec488f7e54421a4ba30b4c62a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86a11543f9f6596fc47a85890b82f24a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ea280a47ceb11cbf6ebb28de2e4e93f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3e2d1893629a611aa48a91f8ef34615", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "648da3c1140d29535c14b958c98dc150", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89099f736d9117f614f8d9ca18ef4449", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 184.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 184.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0747268778d0a750794a10a911e84434", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 51.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4477758f024008ca745e01dd724b1192", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ef5511ef1b30b303b3147b22ee39969", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c84a1f1f2fc23ff7c3639d009e012eba", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44457f1a79d9fcc0764480cf81c5f6d4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b58b30ec442f45e1d86be3da6e2f9ae9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1779887a2fb7ca12309d3ee70cd498ac", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 37.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25843b2baa2833016e7432d5733ef1b3", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "672586c2c5d195d2478b5ea08df60d87", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bc81345abdca4e237a71bb20a37d951", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73cc18f0e774690f9939df9e260ae8a2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "603cda723920ea75f9a059903382879f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d51b65c82f9cfdfa6e687593c4ce1a0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 37.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef2495976d4bb45a49db5d5b2e6d27cd", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bb81b342abaa3f61dde3fe6ec6e864f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f8224f4b3143b2e7664e7c92c09114f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e23ae3ba853b224de331c3d6313c7937", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96283e83b09c06b4445afa02c7eb53ba", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ec96e848c86910ed1f929c3b6cf9008", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 37.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e41793ce5723f941a82f3344866ee490", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b84f07759d06c4e2600f24c9a12d28bc", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6433d8165ac8d1a75710c6b4d069388d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c335ad5355c4d40621199affeeb8c9c2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4111ef26e37b59d69ecc9c41ea3b776b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95f4ffec2564d8920eefacd166410208", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 37.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb99d3d6f15b847e41524f1a3fcf00ba", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "956dcb29e635d10ea645c476a7022ca9", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e9a074cbb2f17153d69ac3100ea44dc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "918ae83f6756b3b15eed4d7aae8fe149", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a11eb772b8fe7f91dd7191d7c0ee971", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e7cebdafe950b1ac56e06f6b3c92ba3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 37.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d510da1a4b47a2ca27d676f997f31b30", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22ade990743d036e3ba4e2674852f534", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc6cbbfc14e4641e6a59b4781a92487a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d91ea39b00b94f1a4d50f7c13f5215b6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e3e8dcb07619363589190e198a70790", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c41514835bbfbcff864172f69dbc3820", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 37.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "386887ae0bb043824fb148daa1fece3f", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1f4ce7e9b72c08de0b9d4fce416692a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b48f1d2cced9a1bac328bd7df08f2648", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37fca14ca42f145b4688b4592cd5d0ff", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79aa9416655d2dcb1f89cae488a884f7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acec2fa3e303da79888a81a51617db84", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 37.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6228b457ff1aafdf181264ce003cefe0", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a18163f54d296e3dc85cc30731fa7c9", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c977b90e13f1e5b608d4f9cfe4e1b4a2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3469a0644463e8e47a4426673a1245cf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae0038988e9c0489e7e71b552bf8f743", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 107.0, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "243a672a3fd05c7ca3b5ef39d7e848a3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -12.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 37.510000000000005 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cffe920747e99045a5ef54de54d3fb34", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccc542484a048ff7189e15406bc17d58", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbdfa738c0a14577f72fd9d67655f0ea", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bcc2ce8155c1974955e37c210fd7b57", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1d7dedf252f4b60e268c62c13af1967", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4c484f95c9e87308bca6382b537fae3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "305f9321f06eee13734e1b0690b12e18", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54461ba80611e6b9a749cd3171e5155b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a51865a2c4d24d997ebb30a1e1827be", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4904dd381d0ac8619a6e6cbbd34b40b1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f016f51b76e08731c351e1056899e52", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "715cb32c1b3ae3dc9751245bca8c1286", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae37923e33890f74df9690b8388d6a3d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "301f743b8688332eb245a408bfd3d7c4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ca11eb4e35eb156a80c121de890fe53", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a055e1e10061d3cd1529d364f6d73501", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80554708b621fdf3e1b7587307beb5f0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5309ecf47fb5980acbaf00c67eb1161a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ee2a6e06948f97f9f6d662945233379", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "baeafc9736fe3e440c33442e30d11eab", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e525504c83bf88c88a6041a15f1c549d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91ea9e3e7d46843ed9b155f252630457", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce2ec132e515c6c8635de705bd911b06", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c0fd89ecc67c8a7223f77a6cf5d53ab", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "448f3683a3a3d21e816db125b155dc8f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d939d83b1cdde47c455fae88d81e39d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbfa1ff354a90b40124e2aa1af4da290", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23c1288314ded3dc71757c591cce24d3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f34cb5b674527d950fc8d3eb14a2442", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c81d164c1bc520988470a3932bbaafbd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63f87ac17df0dd7a766a4c0add30e222", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a086c73969984dd07b89b2c26585704f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcd88ce362bc092049c8b59e00697c87", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9425dff24a19e086c016c9cd930eb51e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f70b82fdff12bd8cd12ba1918e0ee07f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42888d0da595d86dd5fd09c8a1677490", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e9176129d3cfb57cae946cb34fcd5e1", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 65.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f43331af379b68c44e165460095d2943", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a62f7c4e09be20c0b35fcc20262d9704", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e47b06ce2fcee46efbee90f9445e7a27", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4abeafdfb0e697e3499463940561a4f3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "536093ccdf054f69bd8c965485b322e1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7f3c176cd4a2c7ef6faa6726e83b5aa", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b843875470f8d416b8bb9fe10ab7b934", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "941e44b5736c90910b29fd19c8830807", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0de020979a70df4b926b106d9b7c6332", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa70d7b935224d3f612788f44f188570", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "406cc67c58d193c943c583981c06d1b6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64f9e823d388a8b7ffb17661d47a2f53", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fa6273db13ce0f9fa990ae5914ee1fd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4df2367fbdf3dfc8c14434ecb168c62a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64d4b5ca6e2eee12481046eb2ef521a8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db49e81acebd1bd23a421e504ce11a52", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df3f51ef70e51534bdd9bec8604f248d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "989b98edbcfc0986d67c42b93a598fab", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 56.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2477141856cddd14221448445adb2418", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d90b702f820e6c1e7184b7b861b3887b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7586af58cc0c52281af93cd3defebb71", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "496455267f1045a8d74ec6b56151cb91", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe50980f9c7a0040743fa4f395040654", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12266b83644a4e88465d74ef885bb9ec", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0d724f6c034b337908436ba25433862", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4962c453abeb24a1deedb3df5f124c9b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c93ab102cf33c36019d5ec6d8a62e786", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e49ead02cde65e9106db6264c30b5d21", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01a2084363b2d869094ba3a67b6103e6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17c2d23624b9e0d090809dbc671c8b5e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5177fbdfc7aafab8e4d81e0c6f3eed09", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0a47c5133c169d86e4c255a5b5cf51d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15a639126d8d5b3b77051b54d449d0fd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df26bc9a029fbdf121ca51e5db876cf3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5646b192b6d366a01baa4c8a3982c617", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b064eab99456bd3842d33e77a9c7d985", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 47.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3313e6778beddac5574e104fc935cae2", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b17cd694e2b5e6588edf6beb10242c3d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aa91ba47c1c0886ca26337dc4238a45", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "650851c90bb98091dd5d20bee2db727b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b9a3ad9605d482d77251997498f70fc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1bc3e179f518016da7d4ac0703d2f0d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f08fc651957030e0a963a23e5d89d0e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "714bbf8a110276ee0145a3819f634c0a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "676a55f1853986f508c702e548c2a58e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bb14b2a283535678bc74bc051fecc2b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfe3ac666aeb02dc1850bb5bd22c776e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "471ea7cf822f0176773ded58ec2e897c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ab856c3b2894f55d70f6394a3f4cff8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ffd43240dcba61c6a3d49152fea31fd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6fe9d564b392c144afd539d115ed2e9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "032e39f92c3f9b210aeeceb9ef558b3f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbbc8c1cf1ebe7fdbf80466d2afcbdf4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27b503136e918e342537512ac2862b52", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 38.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff85cb921b5894f1a364ef0b56adaa21", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48a0f06202a0c24e34c8222a75a49214", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6a11a89d5c7717dcd9f16a4c422dc2c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5389acde1b797835664fa88c85ed5260", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c21fadf1af3a1a4f9c4fbc4e369f1a3b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3405f5d043902e809823d43586db0638", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad0531a71a8e0e705df1d42737fb069b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfe5ec0519478e5b38b2dde74dfa93b2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e16467220fcc0531239d12a58045e68", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa248bff0d5eea46b0cef55e4ea03f42", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "691323384f1161c7fa1b648145ac8e0f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a85641a644682fd7eb5aaacaa0504d4f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0971f743b6a42582020fbd3667703b2c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f795ed3263f1d5b068d2da9af25d3d15", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cec926366dabb3dc5efef5810504949", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02105fcd7ce9536ef500843876321e85", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "426d05e1e173bc92fcc6ef4b40d9c516", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a9fa8792c5039a7f55ea3dba2c0cf40", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 29.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc22e69f0e80343329644f9cbb8e5979", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6b718bc6b510821c624e7783b11fc3b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91f7b04584c955b69dbbc9a3b7a3385c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d69cdd47cd1a52399e75ec98ac0ba6a3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e825f21ac36e51cb0bc3a120bbeb2ce", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0591bf3ef34213c49fd2691704a8fc9a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0f84a4d58033daa0cdb34b9ddedfab8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c6211c966f122c4de8216d7a3ba0955", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db176a2e6c99d5d6b892eda83972d9bf", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb456e0cb11039c3aeab0f21f0d6d35b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78c146e0cf1c26e14c5ac964a63a77d4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68d43c4735fb5cdb662a928668ac31ec", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32332c3940d39963e705ea114179d46a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9b7bf992d67307be4ca5a4f2e3a3c8b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d4363a32c05f2a35f4a4c0aac5c57e3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "037ed9b144034e20c36389342501edd9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f3d9ff5a4b35bc37b486530aabecb94", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5edd91f15b4e63843be8fa5db61fb094", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 20.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15a28c902c477e5a7dcbb071e742b8e3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9c58aa44e3624fb006d91603f1d8ace", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a9ff032c3ccebdcac1f4af404f1030d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3646c401881b03bcee6025f91df5311", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72eed94b780fff0e846aad15c829c76c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12973f3dd8e4a02335d127546a3eba6f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52044cfc3859cab4976f8550c4af56e8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "077ecc84d0415580a3b03225a4a61264", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75792c7a6c05d40f1811b5125c9d6ac6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5910caaf2b1be234f476a7350237a51", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4cfd507f8858074181e2a8fb3c41e09", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d65d039161c9a42d77b9779713465b84", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "074de03f6befff4cb02de5908a4a021f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fb2a9e08b11c1971a101dbdd0a826a0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba797c80b0a3bd0088e18ff593dd3783", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8241b6cce895bdc4c484f0758dc9ec0a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4b6cccaf456dc438063becb0a2c5ccf", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cff1693351507038421b1dcb99a29ab", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 11.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17703d187d4c731432b4b2c42ce60832", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7b78e7ca29a61ea6557fbb0c565ad5a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c996b1c8d843caa6c164024305a3988", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f25beb612098b8568c48b3339512c9c", + "notes": [], + "params": { + "message": "Add plate seal" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7140de71232e0f15cf3e552c2f24aef7", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e02db223d80f76059bc3d690ccd233f6", + "notes": [], + "params": { + "message": "Adapter Ligation" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "498a9b94e6bc1c930551ff9e38669e2f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d8b1f40612ef6ccb0e1fbda25f54bbd", + "notes": [], + "params": { + "blockMaxVolumeUl": 100.0, + "celsius": 20.0, + "holdTimeSeconds": 900.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dacb1190103629989c8741fd3731ca6", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "184f66e84fe63b7844f1dbdf15c2a8f5", + "notes": [], + "params": { + "blockMaxVolumeUl": 100.0, + "celsius": 4.0, + "holdTimeSeconds": 120.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f73023cd283351de5c36ac724da788c", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "856cd1b9928d7853e86ba184fb08bc77", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "958ab0972c8fd8280fdceb1c08bd4095", + "notes": [], + "params": { + "message": "Remove plate seal" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c02c7da0f5a90e378a54e8a7af65d23", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49f77a3cd345dd2f8a6e34fe930f196f", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6a924261c61bd8309ec0afc0158fa8a", + "notes": [], + "params": { + "displayName": "sample_plate", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "addressableAreaName": "C4" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "100c6979b24688e6af8c413e1c8619f7", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "866594657047e18d95ff233d07558f92", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af1b9592a012bf62e7d982543da580a5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c01b551c85dad588813290ff409c85f4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e23e13cc967f9298aa2daeca81bc4dc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 14.260000000000002 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5550756de758d1cef229ca52c79d65c7", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 15.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e6e00f078428ed7bb90951f3e09d53f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19b739b8ac05d3b7c8e1c00990516000", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12311bb9f36a6e563f9124776ebad75e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd1069d492e6807c5b8bc548fae28864", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0516f3d6577b2af80021d38df156912f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 3.375, + "y": 347.2, + "z": 14.260000000000002 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18c5f05bfe8aa30ee756b3bd80e8c282", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 3.375, + "y": 347.2, + "z": 15.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba86062d53afdc8f825b8d8b271889e0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "471095ceeee3917d7aac4ef37da6d929", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44b505050d3d213a570fb09b4967ad4f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b70e93ca4de6c607597b5ecfcabba9f7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30833502ffc68d2213e360628dc61025", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 3.375, + "y": 338.2, + "z": 14.260000000000002 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcc39d05495495428fe231b8436f4cd6", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 3.375, + "y": 338.2, + "z": 15.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e8cca58b23979bce858d94aa338a711", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e89ac75e023123e7bc3d761b49ebd6a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "371eb83086f909a3d2f866b42a228eb3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efe8797c0bd38c889cdf23c913e13101", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cec527cdbaf4a9bda49582a1e4496592", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 3.375, + "y": 329.2, + "z": 14.260000000000002 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "631e0625522ce9e2e34bf15776f95c81", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 3.375, + "y": 329.2, + "z": 15.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46fdf817c4da5e4428c98ffd537f483f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e95943121d8912df82cfb7fb59a9e826", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f840e4750c34f71bc6771d87189bf53", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "870e5711ba6b41c68685bd6fe2da791b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5110ae7557701d27d43814e62a17f783", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 3.375, + "y": 320.2, + "z": 14.260000000000002 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8ba77b622917d734050149590cbc67b", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 3.375, + "y": 320.2, + "z": 15.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6efde92fc879c4b66a0e33d70a803664", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cda0926c55144e2594e70f1447ea398b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1dab5a021ca91a2637b3bc220f5642a4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff16aeb588bd08dfa94fbdf3d79606c8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63fbcb79ed451b229710528e094c3f4d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 3.375, + "y": 311.2, + "z": 14.260000000000002 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "600929e993cf1faca435e3b013e998fa", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 3.375, + "y": 311.2, + "z": 15.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c06b5e53c2de59b4d71103110f31518", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93af1e2dce0b7d30c1cabe6552a33053", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50e926af7701e886321fc4507c6b2f65", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "719597e345530ee954db0b94fffd3bc9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdc1b203aceba1b6116cdbd6503a0f92", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 3.375, + "y": 302.2, + "z": 14.260000000000002 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec908ef4b7c102d4e8b40f2d5675990b", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 3.375, + "y": 302.2, + "z": 15.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "480d5b914c9dc85d5a3625b84d5b8659", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "845c7fc0db8217aac25a48fbebb515be", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f2d37d0234a9bfd808a9843cfbd9a94", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cc935ec6e47f819cb01825e928e6056", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "935d8f1626aa4e2a582d32380840430f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 3.375, + "y": 293.2, + "z": 14.260000000000002 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68c7364ade649e74911f861ad8e41548", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 3.375, + "y": 293.2, + "z": 15.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71df2c8f4467dcef3af61e79118eb553", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95b91890651f1913c18198c278ab8892", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "181fe2dfd931294868192ef55802e37f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "debaf54482ff1b3d51a2136c97ed4e2c", + "notes": [], + "params": { + "flowRate": 3.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f6386f69c1eca8bdd91b93f7f3f833f", + "notes": [], + "params": { + "seconds": 5.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59101f37e4709f337d13769f1f677ee8", + "notes": [], + "params": { + "flowRate": 5.7, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 1.7100000000000002 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25b35db558f414d5da2e5ef14354deee", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 3.375, + "y": 356.2, + "z": 15.260000000000002 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50aa563d36ffce280aed300ea2ef4bb8", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0f2c695fe674d2b62da370c35ff6d5c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4027f7b711e01c65c2627601a5bdef2c", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9822553e35e818ad6b15e786b6a272dc", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b98c4d7cca68c2a4c60acc135e11fa0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd275beb89861a5816c49ca5fed6a232", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5247b6fcb9089fa8d6eac981db334410", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c43655853821d11377e16444134b269", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b601910bfedf5b36ce092ae690a1bcf6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f9c122ff5c8de515a780a16cbb4dc70", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26e06496a6f86c5068982d46fa91a3b9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df9886a07dcbaf60876a9b3dc2050eb8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8bf4b7941e9895b2617c798831ee33e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cb89dd3ac2791307d530319f6fc6f9c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc6090a99006fe182caa8a0a9df54124", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dec83340c2ac8800f01b2f0f1393265b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.15 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.849999999999999 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f85e006fc5787792972a4213397060a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e37f846a3fd3a854ae92b74531a29cc1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8dbf6770e706eee0dc6d88d66707153", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b3438bddeef54cc259fbc894062abdc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a764f67869e8fd510c35b0d4e913e25", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "358ca92681068164001e26feb11b6e23", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8162a8db95fcc71fc4b265bf21e73120", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96c9c465dc9a45c8d52f3bf9fb92f0e0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39479075d0734fdc53704cb3d07e320a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3f2ce6ce36227e597f1fcbd369a4dec", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf740f3e29b55cc058619a566ed3f462", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12c153d8a7618b436df7c849b9b62477", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d908db3d8b3746d705e42259229282bb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb5fff1947f9fde66fe31b3d34f84025", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0231192254fb9cc1e19ffe5288becef", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fec1468f2c3c897df61fc65f79e56f1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8f184f41739fe5f5e9366cbea489416", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7322fc82b443ae4cb13a69add8344ea", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb6ae8879cd3eaf1ba7cd85956432867", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd07feb99dbb4d9354fb3c97ba24219a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53540975bb2af72c2bf60d9e63208409", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b07f856a5b53d79043232d6ca3c71ca2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f5f16e13cdab4c1107ce106ff1e1b68", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1df1ab6e61203c4b984c032999d51eb6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.15 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.849999999999999 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f2b5f2482aa0c31519d8d2e3d387831", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58c5705514b987c6032b7303103516ff", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fe1aed9ca62fa9fa3a24a35e031cca7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29dfa3d6b85de642ef28ede77611059c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efefb51a476c498e25a33e1bab5d7333", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2672784a25ac9e7a0ec4b50da454fdbf", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ac42705e7d7a51bbf70ac3de1c344d5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "214b7ff9da9bd2709767a909dcf7317e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "106063c8ac48ccf2df6c7a576c701659", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e752c646c5bc8868f5340e4201129cb4", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b01f0433b4596107a4a8d35eae43e97e", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aaabe086c79f9b9700cb6cdedc59f9dd", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "571e3692735b18798c01983cc07b6306", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b202b71999748c8e96aedf08956b736b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24a633f22e9600f22d1ae4da99e7bd04", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ab1c7db5a7ff6e702dedc25f00a169b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edf57435a299421cef824523f0e6cfa6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95e6587c917212260ccd41546c6b3531", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46fcdbb1b1b71955daa135120861f851", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00f093162d3a2afe3d943629079b5fe9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b42efa4d4a1497040bf78fe6cf3a4a8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc0e775576aeddd78e0251e2692ca010", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3700b6947183fdad6f71d53640911a60", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52c4988bb1f40cd240b4336c72a991ce", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.15 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.849999999999999 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91d2e0546167a86dfb4c548b3ae921de", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08db3613c255065d9341ef88c22b28ad", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c0725f4a039353cf675e93c3a9e1778", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c003e355ca7c3680c8c07a346e1c39e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6972cf1090c5261d107175f7c795f43e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "089ec3ccc4711b0d6e681cad617c6f11", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "505361638e4e082951824fc97ca658e0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b19105e4900b6405ec71fadea19adb34", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8af8c4670f0acd3467bd146ba8ff8704", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac74b6c87993be283e37b6191c0df68c", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80bdf29800a332c27ecb18118c64e9a7", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82813abf938e5f1a717deb46f5cddd69", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bafc3c60ced815cbc7bdcd85e88df746", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da2f1632f09a8ddd4a2c272c17fa7327", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fec71b56969e13d1d8920ea1b55e3e9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "322af1b31cf832a4e509b64faf14a31c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3be93cdb2e8c410bc1cd44dee86dd843", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "970ae31e1f5b6f86f7d879a3951077ac", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db9b217c32610e7e834b2a48396d72a6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2452c62d2282e1d4aeec600dc2041369", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "876b38ceeb13da068653a18a84a987f7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bd364d3c812ae9bed89eea5e7462b34", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "807714c521c91909ab6af9dfcf61edc7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be7ab59696c4eadc454f4bf8115ba638", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.15 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.849999999999999 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d41412d2d72be0e054d48ded231cf45f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68a98dc6b427d209ac35e2f690ad5671", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce43da16ac57dc6c2b18808c11da8a75", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "604669b2103d0963cc67f006baf122d1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "231077c74d50a58beebc1c8fb425c11e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85b62599d3a9ec5f5aadd0d0b7a2d913", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d4aed0e851b30dc39918bb391e2a346", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9c01016fc4122b8ab97926ebd2544f7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bdec01e47aa7def58fe9eff8be7794d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a383e4e81e0d63316bd28cd68e2f592", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab1f368c2a1648fb0ce502db2c4e832d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65fb2dcd0786429ece88fbcb7d9600b0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "863a9c8fedd99c9d0d0ed8e1ea21b49d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f49727c20b9ca3159dc8001e029b78d6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fe9075169ee5aa11fb7d7f21c9af399", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b5f52b5d8b20c951547026d9a756662", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36a67e8588a0029c69c166054ca06501", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2d0ae4da8f99e99366eb28d6a9d81b1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b707120baa3e35e5178db9be5f27fef0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "719ebd52e4865f65a2b286ad06a47d4e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ca5cd7e9a734da6c0a7eaf26ea022d1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "190095939b140a05246ad47c3e496b37", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5a9f4515b4d1aad9f2c654351378b79", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38f443248ac975e1a28865ec95ad056b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.15 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.849999999999999 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7f83a2574ca5ebd52c8969a2b109c48", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bf11b628f33ddf6bdba6c829c362018", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7df0e854b9c9c3c5429e3608a8a211ed", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e49e9d91489cc22e168ae32e2fe77ede", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c0adcc505ba20b1f610d02a5159e8de", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95d86978697d3406f7787ac862b1d194", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d121992a6066c91478ddf6c91900eb6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27efbd3fef9163db3fb99d4f579f8c10", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58558ecdaed8f6784abd9fedf6e461fc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cab1ff60ccc12d3099a7b7926c49dc67", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f77e79536d3d04e0293b21a889cb733", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42d050b3958bf6625b7accdc858cf158", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ff1cfc308026dfda976b4baf428491a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f9c8a349dff5bcec4e18fd47fb190c7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ec9e4d247a6067957d3b6d934308d47", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a2f757a7590fe24814a36777036184b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "590e01a608f63fa03772e8dacc09dadc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2422db0a1dc5e81a497cfdebe9a00854", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd675c960e936f3ef99ec8c4193346d0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "538e4461dfcad7ad7867fd170c862f71", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2558707e9eb49e666ceebf2aea13ae12", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42e4b1179f006a9751c4470e9f7b4ce3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c38ae4cd3ebb041e3445c03ea33644ae", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c951aee00a8625eb62e2771d1ae039d5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.15 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.849999999999999 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1889e634e0b9e42d7a017bffca5198a3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1da6f6eee7b92b03afe594650143f22", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3f861f7bbff05e207449fab9d74c553", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4351149e79c41e475926674f22e0aa13", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84f481149547d2d997dfe96134f52899", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0fb308724950288846f413bf8b30075", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09181d6a68eb9a3c221e93cc5295e038", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b48fbe5161ffdb584fac413f3bc042f2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e9080cc696ff717abe8c97bc5476155", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6da0781881d3caaed13ab3ad7f53b077", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2eef05580151228ba2688328eb0b8209", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "770e8b155c9f35a606c113d776777afd", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a251d42519c382d8f2daa9c7cbeba262", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4564b925f07ed02dff59a2b7c0c159bd", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf287b6434d57294d0f751e6f2a53d1d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd29e91ad7d3379931dfb67ef24735bb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdc4a92c5641e16f8026368b24aca8e9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77a38285caeb9771fdf32de54f6f3c56", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dde09b58fdbfb429465b96b519af579f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8a3057a1fc1243981ff485454738376", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfb7281260b9c3c5db4e407e9437485b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e751f405e836d00b274058e45113d16", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54e7349cb9501185072a155a50bf2fba", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8a40f9a3b6c814cde1d61563cec948f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.15 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.849999999999999 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71d1627ff64f398505378c4d77c06d7d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef5e09b43b201969ffd4bdb2df95d74a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c69c265f21a4855350b74bbcf458e61", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f59348b307a7734ae7d58271442b19f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bea7a1ccedfc6baba0827d8cc3d4ee23", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea6dc46f8a0d292457511afcdd6e74b0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b826d61cd951f6f997ac3a94c3cd49d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "174c80176601c5d86584c7afd5685248", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27172bb77ea599561758242edfe2d0c3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c25a334cbb5839b78c17d3f93528c1b8", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6da91a24f2004464bf8211fead2cdd45", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f72e0e9c9f8d8ec79d628b8f4cf83ba", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfbca22dc0cbc648d00c693c67b3308c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90d3140a72075f156e1ce6311e2fce0e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71b092e50b9123582242e1dbde271780", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad91d08c4aa25ae9395084cea46732e5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0be75c3e561737c2d22ecf2456447ba4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8d0f0d5488d85b1523bbfd1c20c57e8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b76002404d2d8688792e689705c867d7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37929b7e250e911f00caf9dcfac9a331", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0df9a1e6e2507ab89f105a2be4e7a90d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "888b3169620c3bef580e2df177c9846d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca034c377ef0ca3471fe6aac7a36cba2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.4499999999999986 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2788e7895ed76f461df9a61b1c71f786", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.15 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.849999999999999 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8950935511a726f618fec6fd795bc112", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72f2ec4617c8d27f45709e71ba11a1a5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5a2358684d3f4c95f5a87b4280b445b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f407af92672c26b13914433fe9aad51b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e3341bf4452c58c352ab528b7715bed", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2487d9d28f50ef210b59ccd407f9e1e5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a585b03a993132b64c614b2b0dec71b8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "873f184ad850b3feaf4677e501670881", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 1.7499999999999993 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5824134f29b6e5f63ea783ab6de9c556", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 15.0 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17cffe20ea1ad4996782ca0d0c9c0eff", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1294eac115ec9369ba13a2b4fd1566e3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18cf8ed62c4c8ac203a23ec7b1721301", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fa84b10b303fdd1fca4c2f18642a361", + "notes": [], + "params": { + "seconds": 300.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b409cbddd16df2eb705b89e020c9609", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08f3638d76a225020cc7f71d01f41fd9", + "notes": [], + "params": { + "seconds": 600.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bd846ca7625f0c566e693dacfb1a21b", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab55d0c45d41e07a18be6eea0cb7be0d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9683b37053617b52c509c9717b15d923", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f893d8b8130e3c1b6f49183e6401d1e", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1b9b6cbc6100b1f1d7437fa75f272f8", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "104f9f0bd2b45e394cc58abb95dc63c1", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96cec55591b2b7767ef35ebd898d0793", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e856e73c33bbbb41ab9c0fc165d319a0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5466efe1741f382849f857bcc82129f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b916134979b2eed41d446282bde950c", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a39da4358ca1c71e9a8385542ff5cdf", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "403e811deaf6fffee4ae3ed96d2587e3", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca3fabd26cdbf60f1a306981e3ea8c25", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecbc02aecb0f7303569ef0cdbff37bb4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c84a51e9cc7afba4f997b9f91bf182a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a7579493173bf432d8a83a1307f8dcb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7743c86787e10e9a8e0646af2d1c1290", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d63148399e956db61729ccf9193ea2d1", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5797a30df0a953d8d91f4bfcf1cb03de", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c582d494628c66ce3931aaaaf7ab5f21", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5d0fc9137c207aa1ec994fe46f79d16", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a1b4d910de40ce8c803bbff0b9a0a11", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86fd6488461e307e69744319c203818f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "286669311a1868f976c85f00483f2238", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9859e4e22d97c93555896a698d01b184", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84d8f195e45e00ffc08fcb76fc83c9fe", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb19661b3482daf6a3d655d01264a3b4", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63af14d0f1e6128285fd07ee5b5d7d46", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "461bf9d56499ca0576541414478b3d85", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cde67a7d329da128d227f78ae5652b67", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8a6606c6391a5d001c7677693eb3aba", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cff363a49994cca1f326d4a3e7fc3564", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37c20202b3d2c9f20a665a669254907e", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "701e962d782eb7fcaab9603d88844bd3", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da1497bafb58f50927531b8899d64995", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7b0115d0c67b73bd1ca17fda53d297e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "475339d2f64c634b4897ef6cab300ead", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e5ee5b2b58f09e0610b5966a6755c64", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce6f825d5cfc862c5cf832ad60a47d32", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "934ac9a7445c3259efe534362bba9489", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f1c857366943344f7692b102a96859c", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd0b54355acf0f3a9a71e104b178ae1d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40a927add7fa796f8581d3d25ba062e1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db885f95da9704feb4f6aec2c5c50fcd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6eea0e461e8439307efa286364f7882f", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f6b369789a499bfbd42afae6afa507f", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a37779b9da75f86dbdad1114fb60f377", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d680dab723734e1246b3308870251c6d", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f931950697087321d655f20f7d48dfe1", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89c46e5c1c2befb33d3a86819abffb8f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd6caf32a942cefc8731946188bd1bbd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a37271267d0bbe5db65ba7441ebd62c", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37eddfb3cfb20ff353e427fdf0f8c3c9", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cab6ee5cb48d711eb4ad8780f45b2d1", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4ee8c685305666fbb43fa7aeaa35287", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c94792e994686687a8609ed6a6b0fee4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c562982a20390bf189d033049c15c98", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc5f460be431755148f3735422e6081b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa72aeb1e8b6e27fe9c8ca2fc8890f4c", + "notes": [], + "params": { + "flowRate": 7.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aa1e8e8197803ef7b0de12c23549c30", + "notes": [], + "params": { + "seconds": 3.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbc07bd1eda2e3e2972ffb49210cacbe", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2b46a26c72e95f554cc863ce74942cb", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a43d6a4f1b445d474c0484a2123fb131", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f108abd9567540324c989c55d320d5f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a23334f362d79eb214780f2b076ce03", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92712c3209e645b3c3b75913b42975f2", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66f91c0f539897cf0ecfcc3e6f9aaaa8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9859dadddd309385fe09c205aac15375", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d5b1009cb28002a5838d2f0eecb9823", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50d55c68d7287384c9b9c8f13b3a2ee0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36698d4c3af76bef4959e196ab2550d1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9e534d5392d82c144833f1e2667410b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bb121609e325f61d02fb7320d496380", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad1b654eccdb5987757aceda1a5ecc91", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eba069ea04f51dc4231669ba4c37d9ce", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7b158f11865312b45cec3cd52493bc1", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd05a9f8c8bec7abbcb27c354be18f65", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7ca28dcea9cc7d9d1d274c1adeb6979", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "552d37a83593d90507a017104a29388a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd25b6ed3abebee2dc4b04e1c1160e40", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "637538a2b3a08407cf2ee82303759aa7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e647300dfb9aac11cc0a5f08c93ee3c", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a120526d8e42dd04bfbadba2534c4d10", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f32742cf4eaa0d5851816f9d56adee9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0999b945eacb57d7381fc7bac48e9cfd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aebe2816f1730ddd00f22d90793706bb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57d66ffa93fb67ba08e790b34f922e39", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8f675d5bcf45f0142a67a6b9c5d9423", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4700a41d26d405820b0ad7258d7153da", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13ebb7482b10c144a18f13ec806d5c4e", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98cfb78d5accdc63c74bca4f85c86fb3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80e63b73b2d6f0e9ac810d8f98c9ef7f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd456be7faaec8818a5c9407db1e41b0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b8877a1f0712734c4b4ef00d4225c6f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2285ff4189f3fcfdba4264b008350527", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b816de76993d70a47b0fc3914305f980", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "159aebac68c14130fb99f8a57ad59c85", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38bf17487225e3849907fdc32e43cc05", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d4470048fd5d1b322f4f8a669a97920", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d87943769be7ae754ff3db7627ad955d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61cd6067c3a7776f261e930dd48dcb7d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c779f099ab916d973dcc75e9e8bb72f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a7496f51a5e0bda1ceb01a995fa0dd9", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2025cd02534d504ea3190c2dc72f02a0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4bccd41fc0dd669d80dbb62ac4c1623", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "737d9a63898bb29a70cc0c0f8c249b77", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b63c4168a8706954b8fb5b9faead3930", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23b617d707dbc701ec740117aeb17e2c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcbd7fd923427f456965a0173226693e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c00ef31641cf6c8284ab6aafa0763d5e", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a27efa29c0c007656530089e0eafe54c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a553481aeb48276999b0fe981fba755", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92034068f38582e6a700d010a6962eca", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed45b62c8fe1366d4bb8ae85ea51f37c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28450e48e76136c20b2f23807d9817a6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b72c75ae6fe8363d2b582520515ff9d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43fdfa42c54f966301e826d6133f48b0", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e351e7e8c05472e5a2d458b455129427", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68782fde35c50bf5d95ebdbcdae96248", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4b7ac5c30d03f68b8fef685de5b2916", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42f5b71d30a566a16174cd3bd08828bd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3125fa5f9f28895a8c301e480e44d1d4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd22b20183754bc7882b8089b53783cc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7da8b94b38c42055e345944c12e33d7", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2445bba2950f497c47f114e146a60e6e", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "942dc83c37131adffdbe5a70f7ea6363", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "002b7c6cf44aceec79cfa2d3834f73a7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b99a09e0d1f4472bf8569fc2c8f1c260", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee1c308d9b22dbe83a0a24bd1aece271", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6bfc26dce964919ee826a86a1135d14", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad9439cef497c69f596d02919c55b6c3", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "042dab721bb45ba0abf201eb5689b501", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aee450a2ae4bdc7f6c008473a620615a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "992cb06c3030d12119a7d6e0bf853558", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bd3b5c38da291066f6f4992bd015725", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff248c5609649369fec40739fd8a22ac", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6d273a07a170ddd9bf5c89d292ec2bc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd39b49ba2963a47d5c547d82d263bda", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d0e1a73e89568085cde384d10451550", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed5d316a3c37379f7342e6e6dc4da706", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a1da32e151f8a6933ff0cfcc9567e68", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f6f032fbb35e7580e0f27cbf8d11c20", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6f5f7a4735f1aa9f1c2f4607b8fce36", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16cd14adf0db1f853a3905a94a770fc5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23e13c4ef8874dfe2fab6d8516c44e8a", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "343913248281185a02e611596e8274da", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20f255fc4e9facbb5998a89d8ff0e583", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dca06e68963f2681a7e09a8b5b369eef", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f03d6430c8be8dab2fbfbdcc74ddafc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "006a7458a9ea81f7a61773a636918965", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51bdff90a83776ca32d68fbeef2739b2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9cf4f3fe926aec8e8b72333a7d29bac", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e875bc29d213fa7de443cc22e508fafa", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8feb17f0c859da7fbe2974f9d82d86e4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fca7bd5e876a3653b39e97a59213b35e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5345ddce21c501bbb264bc4519f063a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a96034a1d481a0b8bc1aed844fafa7ec", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f71ddbfb3cfc768c8a6f4030c7e886b1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfd9e65e576fbd9d3f16a8f575976003", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d015d600de85ce8aed9237db025ea01", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0eac3e974e265d4e0b418a47ac5ce8b2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb02d3b7291c62fdbe729aa858669ba4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e51c6ec14b9cd891175cbfc26e065fd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93d53d3978fa880a0a65acf08b591370", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d18626028d2ea7d2f50f67c20711852", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a15f6f39ffc672e64ca64594c08e2642", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94928eef873eb514b9f4c3eba3909ffc", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79709a113ba8cf1e5c76032242e2ab50", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ce2d4da0bf7a38f3b6271a1a2e93e2a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d8f8fca199dcc567ac27d78cfb59d70", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26704ec0f95c570e67b1a411143bdea7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bf894beb46e2e0dc70fd84a2e9a2d29", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ddfb2efb5bf202537dd8f0d9be6df302", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdaade0d3067808779dee91945e63719", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cd51d69b98a6d2ee234551dd60c30c6", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1834be17baa0138df5f2207e76c44472", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "394f04ffc95bc46bc971229c419cb6e7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4247b5f9fd62a6b8a3aa99d5adad690c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55ff52704689ad5a1b9451fc698b31b8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d78188bbf59df11749d3ad7bd3a5bfd8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4cc1fced60976c9be579d7ae37abcf2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "204a56c72441328c1caafa762364ec71", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09b5d0fcc3aea5b8fe75e0d0e85b4232", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69f02a4c8e9287ab94649012f7182d36", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f765eeb0d6ba676d4f9f9a553ac6dd3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89c87320034192bc5f552d9a36c68b76", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a7b376d7f9515d5c439ac3fae1cb6b5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25fb501709e1d1ba27971d01c4601e8f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb772fa96b9ab1679711cd4305e9f5e4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "514589fbb2b4c12cee08841910153547", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "628878bc3afa136f526c53cceadf4db0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7cec8a180c9af7d39396d8397d2b4e7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "998ce26e9d30b5a7c16ee8c5aea70c1f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45e23b310276716d15019cd349c73393", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cfcef7cf614b8a6b2420d16e8f7146f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b7cee151df4a7652aabce468c3ec535", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e8b60064570b910a4604c512e15564e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c891233ca661ed0b4e2569ba8fa1946", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dedf7376cf0097edd58b342fa2be770c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7068fbbfbd8a20c336695d1cc561b01", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c38cf6478f0f383fddb7927621cd560e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e90d3c5d4a6bb179a99dbee53822f35", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf85d06a0115014133e7195b15e1a3a4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b82c29140bf9e7bf555b106b265046b7", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "859ce3c56a8ff435d5c7e2c5dddb2b58", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f12c764c982d474f47c31dfbfc3c013", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63d2c07199b062b826cb1d7aaa87e9df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d64e51d81a9d6675557a52db7e0ef43", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "729b48323ff5c21a84e50587081931ff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbe2172de2b6ee380f066ce44c73bf19", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5527db30530bd9dc7f6814f2329881e8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8261388c0a7ba4b7a5d97a91f2a50f2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b8080846a0a23c4178b20dba2289e58", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6066583ca754003d45528d2c5964a312", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f652ed3ca9fe861f2af0db4f458f3846", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f05a0f4df821aa07d1af21ba53bb86df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cba3f8d2876761da9caa22b284b40a2f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1766deb9761ae5147783947f4be2e27a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebf60d8d8ce0ef1283875d42478cbc61", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9d40f4232614c4b3869622640a494ba", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "220f10d65383b5ccdcfe7de689a6c09d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b58ea79b0335707c7ec69246cc8275d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62c5242200ad3b902f9499331fd9be58", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e537cf6e1840bf83a826b2f2417f61f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f52567a8c6ee5cd52bae31929522588", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c65666b09ddb75142c8bc10cef0c416", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9556e1d854410de6e70a61105b0844f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbd95278b1856aff0905e12f22967a71", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d348a68a53f1e4e60c2a2414e7bd5cb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d96a461a918ff9a5ff5d0c983f14c0d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d216bdc20d8830e2ccf6af4a55d629a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "544f9dddfc4196ba99300923cf9cf388", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6580e0fe71d5c0315fea0676b8c55f2e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1435d8c9dac33f798b76552e310618b", + "notes": [], + "params": { + "flowRate": 7.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ae18cacfadf1ccd11e509cfe8f1e2d7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31a68415814424153db28c769b4c03f4", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1bfdbadd38e029806d3c9211dff6473", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b7cdfb6a1b91dce691c0f66bb318c52", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60a0ccf655064cc8e7812178fe5a6a47", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64804c0b3bb85c48897fa3c659d00393", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3d28c649065088c860136957c43ce7d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f23a9a32b51cdf740522aef554aaf2c0", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc850c2a2ad85abb5c750a96d5475b82", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb24841e39d21e55b260b220c46adeeb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3751d0f1db63cd04e5c43c30faaad56", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d281cc09a8b8d4f37829702538703ada", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e1c60f28c58ba9da807820c61d69341", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2cb05d081a0469b3c8cbff6b8e8701b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "539d9a9155dcb0af7cbcef5e5d30a0bf", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af613bb9061c87c4a561efc700a5f978", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67674d900da10af01ea2ffaaea4dfa27", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8064f43415e1d2f731a044cd5cf4213e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79fd4fedd2d04e255990210d6df346db", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "992a0b4b0c6a32e07ba28800a748a79e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "075f5a3e07965997cb507ee73dbed726", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2920ecb308d3c223945f840c7e7dba65", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6586f11b88eb3d5dcccab4c35a01163", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adcdcb1af5a1d9ed3ca7b112301c7f28", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "087e03d4cb9e613e566214fd608f77a7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d9fa0edfb8fb4d23130dd7359450899", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47a4ef61764deb660ff547df700c4e9c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "800169d7eaf4e1fd1cc1d159c9798870", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a99cdf1a958943ceaeb98dbb14e3037", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f357741ed321695dbc6a62e9560be290", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccb71a36983c1e8b98a0f437d62b935f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d2a281ea17748d4c797dc98a361bb23", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02227337cabd86f9b9fb1fa37b8a3a5c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb96fd76b27feeb2986119cd2cbf48ef", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ab0a54f1ecbd257d95bf45259c92a52", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbfd290dab686dda1c782a24257bc8de", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb911312c2b9cea708caaf56157356e3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41794ce230a0276cf5f0e4c142f677b1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6c8606865a607e0c402d4a7e6cb9528", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97f317883f9d5571045750bf59e8e013", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a942064168118471a7dea4f8ebee0fb8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af1e7fcac432e445bbf294c33033c588", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abdbc04862e6f46a3a99a861fdb0fae1", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a32146d0462e7a7f41672c03a334ba7", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4de72c0ec848115c125b0143993f85ff", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e663a28475a7b3685c8744244273d0e1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "950e990efd8422855ca8e1db69d0c43d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39c556a9163846b4101d006eb259a5fe", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec71e92f1329892f1112e72eb981fee3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecfe841783249eabeb8b1cf2d1360a83", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "218a1cfcce504c368ede78c66fae27a3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4a9e07f17df98d2081448f9a6fd6713", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "322811334209de0585baec6d1cbfe251", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d8021e9fbb7a4bb7d3a4d3ddf8c15f7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2717b0ea4df4f23f555b97024a84141d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 107.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b56d913cafce2a6368069975e28b1a9f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96db507d5be2156a6cfff2e8172378ed", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "563aad06f60ad3627a3395609adb3ef0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46bb2352b727a09c1d91165fe775ba3c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4649ebf192897154b51e998710589821", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c2b9b8a1e4ba249f8e4f04961b0738b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b0e938cd48b40ab9cf4f6aa2645d4c7", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7363368f9934ab1bfbc8268efe873688", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60ea33d675561ca823a1fc4ecece1e52", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57a22078f35b2261843967f8158c550f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffaf5d6d9de0e1baaf907a66debdad2c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "903832bec332e818d8a098b54783b01d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cae0eef6684bdb0e6e527eba097f56b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bc009911cba6775aa128d7d613dad9b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "938b8a32f3e1a5418a3857c9a756d0bc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1afc17a4a5483d6878d9ff0e158b842", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb341908e21f1d9eec5f0eb8e47474dc", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac615127e25191a8414ec6424b60ef5a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f828744b75035cf6a5e43fc4059a2bd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36c89b7b303d091a6995a2f2070048db", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "939ff50a79402737f771d271f2c2af4e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfe6e4ffdbdab6973daebc5ab9a1a229", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25fca85ce0fd26695690cd0e31bdf64d", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb23b66831fcb7892578f511da793994", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e9250848779a4c317cfc97ff3f5d33a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8fe972843e2e35c152db44e11b9f3f7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d9acc5503daf69a05eec07c509460ff", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8829cf017e6318d208788e020f2f00b4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ba70564cdf755e441e702155f0c0dd5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31a934069596657e6733261a904024bb", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf96c7eb17ab06203c7b662471a46ce4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac5b42dc9ae1f90d637aa31bb98b9c67", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54495e8efa9564de239c8f4354b23c2c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff5e06e4cf4ff1cd979e1ef01bdee043", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e67d54cb43fc0d258f15f91190818825", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e4debfc416e2f4255dba2e0203df974", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2924adef855e388dd197721d0b37228c", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b1ba15dca78b67e5e10504d268aed25", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52517a22306cbb644a159c1c200b5e10", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95494bf1b68bfd30faeac2a2968abbc8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0afcfe20a58987c02b557f58aedd5ca4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "602a405101f341a0c96c918b724d0dd6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d112c88e8d653fc2204778eb03f302d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a65b07f4904e651508fd0cdbfb8fab73", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2c00724af09eee9486e8a9cf267ead0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1a71badd4a591180a0e00db4a3928c3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26cd93bfe2fda00d7a8a7cc9c92a3e73", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8916bf24f8e3cb172edb35190ccec2f2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d539232bfdd67c65636820ce186a213f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8003f694f212e4f998522a5928aa1f7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "867c6bd08144f4fc75ef5ac48de57d98", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14b3f173cf7bc8177cd9ea23df58fa48", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a7d56fbaf22f4619d935940d013608b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1af84c4ff83cbbea764bce0daa7961bd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5e68e8d4a3a2b6f60c1d045508e0f53", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a89223ff27149372af091e2b7eadbaf", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 20.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bbc28afa5975a3e1916eeb89eaa5cdd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6e0b829225770677ab7eb42ed5bf8a9", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eff0462d6873e6a4be21f67b4af164ac", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35c02cdee2eb84caef2a2b13ec60b351", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6af9b82b62f600b0a3691182dd715673", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e41257dee649a680c509de4b5d64968c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "352a9dc3ef5062747d51c08408a6647c", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4dbc380f15f7ebf0618b4397c1b937e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc06c6fc30e07dc09a6a15fd5acd6bc8", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b72114c60ce469a7068ef3013e36c578", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18e44feac569a85c70cd7ad3c5fd8a0c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "014fcf13837902ad1a24f2bab845358e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "615e14969551360091535eefe08e09fc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6428444f77429a6f986e2ae88a66cc8", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6b75ba0f05d9607222396f79aafd852", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ae84954ee129ca44d376500afccf698", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "913c96c154980ec84493f45ab5dee99f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ede24e65cfa644f9cf9f5ad7cede5dba", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2577f76858689d4f6c1d116affc030e5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e061638f8d1bbf296c60f377f8eb6dac", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69de7d16a3e552428902c45000e43d7d", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c4a8e6b7d4c224d220c6520e3ab8a9b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1eab524c4d999e1e097f31ea9a7f5128", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "070a2ba92125bb507d8f9de1e7031dbf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "986836467aaf20e487785535ce3e0d65", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "613d6f0d62df9d933662f07c5d4f56bb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33ab2ed429fb465c27a9268d31c9773d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "561f0e8784ca192fe3651d03af13ecac", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea06c50d53f424c69ebdff2053572a31", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "433be4f8b04955a8213162f2cc8ca7a8", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb98c7618f11fe354015b371beb5dc57", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4ebfd9e0453c8da4275a708c4da54c0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37e22db6f110d6d16ef9ca58b8ad7683", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81fa3e1797508e0c06655a37078022e9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a8f4ec7c5236eb011aca46d85bf1fa2", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe3dcae366bc3463c57e108b610ca13f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8e96cfc0b60bff1f835a9b2b3bcd952", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "320e677d1a82eeece3db3e4eac7b47f8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d96e95ae7617db9c3f0116ed9dbefad7", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb82595430a5d0713f8cf231c2e3fce4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32c9a75f70f3937296d37e024623cc00", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "483f789a40e1b64523955a7e2361dd48", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e597db10e3f273c9289e0840960f2d93", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6772856cb93dbdd04002d26e3e6d7ea4", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "346ca0e4c873b28797b0caf978cd87f0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "990476bd19a7acec6694b62ee8a37c9d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6afe78b200e663159dfdbbe826f7b900", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2157cd89d6c553c72e5636b57b4dc7d4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "287c4065d6db293477d27000fc9f36cb", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9353b5ae456bf7d4c8a4dbc8a370a28", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "157961a144a6652c6f78217513a9a1e5", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "750fcf6d0e3dc5a5e3cb1f062769bbba", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2c9038332d9a0d6b383cedc46349a1e", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "174c2e8d56659b107e88b60aa64bd925", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa83a9951befb7f7b44b724e6c0074f5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85594ede4a996b6cfda819259dc3d9d4", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff8e3da5679c607da5607fb78eed8229", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ebab528e9ed63a29276cdc5912d618a", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b875518d9b967eecf1485fdf751f4d9b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "609cae3d1282382b1d3c94dd2bb509f3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3258be76ad653364143af90be32cb10", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9388f63446903989ec15117bff4a69ad", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae58a639075e892e4178608392d7a1f6", + "notes": [], + "params": { + "flowRate": 7.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a69636df117e3c0d70e079434b1958c7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd2b82771924bb86629ee4f86013734b", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43c470c1d03bda782b4a43cc0020835c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "805c9789a8e83f6505d5eb8753fad9ea", + "notes": [], + "params": { + "seconds": 120.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3af113ae8d3e24245dfe1d7e8b0086b5", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31aab28aba99d8453b8eb8538e0bb182", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec50a10d7f483163b3c3bc247d9d4ed0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98348cd7e3610b57f3dd670e71d859f4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08b1901b991d103aa1cb1b7fdcf7e21f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7244905632f885d43276544548d91873", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3779b692c1427a505421317fc95b92c9", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c017adca5f28343fe7a1d292c059915", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1259ec4cb09807f1556d2d3628a8f512", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "132f743141279d5d6c9217823d8cc8e8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff6a9e9927db59d2f2f5976beb16f821", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b97a3f444850020f9ae0fec25fa5297", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8eaba6cdbf1c0a40bf4ebd050474a1f0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f120e88ee3b66a54e44092f0a1f6629a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cc6b4572fc681862056d28fe84b358c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6992a9bd5650e564ee1f24a89b72bfb3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf73bb83a85f046d8fd0cf336216ad57", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef302ee1174f6c355d43b14b2c854c9f", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6a0332c116e62252d8dc50c9d643a8d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a074c86a89318da3ec2a918155b04954", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bc5e84ac8af8b6c74f010214fa9df0b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a618c163b0af3688345651492bb82c4c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "551c6671a8f79c1d1023c485782b03e3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ceb9991a90c811ae3b1e67427440e441", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8978c40b70ae4831a58f3214aa1fa2b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2d6ada8e98dc0f1ae009ee6c8bdfbcb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b76217fe6d8c49c866c06d95c1599c41", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0b9b9dae1ae2a20650a79f663ac8665", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "338c35fbf20c54c775fec4bec0b28613", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1373fd41993656462a0e36f02c46f484", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b85b4d866f1052d99d7d73f73a0ac9c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db89f6021820f096dcfc526207d1d916", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12861de9e7d693748e024ff3487206a7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8239c905f9ffe168fc97bafdb8a6492d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e63a7efeedb788d6f294f4424d5123c8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fe771edae03fc6ac503d562ac21c6b2", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ccdf6e22fd90281d026b417707978ff", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f60914abcc9616cc4e77796a90e6e1e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02044c3e450741717f37430d1cc2c92d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75a9f4b2ab3b404ee27cf628a607426a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d69d430f784430aefb28da0aa12e4cef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c920ea88d9e97fa38eeb99984bf89ae", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb97e312f4d890e8173d24f51400e02a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3ffef71e96f683550674e0581a875a8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "925a5799fe18ce6859ba7f7508bc2b47", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2dc849b27f49bd1c132f92cde48ccce5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d2ba6c1c4f2deaed2781d551185be31", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d367df62e141c2f9eb5c4bc48f861da6", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b379a1f732b3b9464d098246bea517f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b62bbf2a7729a028762d97923cd81e3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf6af23665feb5204c0b434c0a2f0dfa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c37b6587b5e4f2206ada4fb3f4c131eb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c59bad8b56f9e5e2b01feec128eff375", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18c78c120c33c431edccd3cd45aec0a9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cbabc09bb87cdba464578591bfde829", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fce8a969e21e150b7292277bf3d321c4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4e53448d3a0b31d0e260bf2aeec2659", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2dd83bd4e0e018988662791ec5cd6228", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24eb1f42c084ce11875e03f35dc9b10c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57c4bad79d967686015201df679d92ac", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ae4600bca955b7b40cc388a0818986a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d46c9b69530abcd536c392b9967f5584", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ebf32a222af733de0608b8b038e732d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1446d01d6bfe8f80b50fa6269df99a3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a047db2ed6ce303bcd8485d774f7dff", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c50695dc9f75a5140b1927bae26b35ce", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cc6d7cf812dc856636d6264e8171e29", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "852897992777c10a0cdede98d8c0b886", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cb343ff407c1395c5a44d190b476c78", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26b02ab492827025bd0a78bf580170d3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2356a0ecd1fea916fb84510ede1f6373", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f568c5cf6c4e07d124ca3b9e65efd973", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a924975bec43fb64fac10a2b9eabd830", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68202db0d6d0c6c3c0a7f54616513756", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4430ab457b85c0f6b1d8ae0fd135a80e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "514c9758fe3ecc2b93eea1569e3756a2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbc6c6d0292a136632e09626b3d3c54c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6474968a002fd2c99b5f92c35b8b57e2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f619d96b9a7950e97e661ee0d8204c04", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "810005eb548bacd5de11a1e4fcd1dbc0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0b246de07a0da80fbf7a962f6660da5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a520556f71edbf7e308e72bc5a16268c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "900b9c8bd1522a4bf11633921d002bb6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be386fbd2c6fe8c33ad2c7b969c3c2ba", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b43ac3e0ec79f2bc02dbc31e47bf7038", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "243b35d543f8aa9c7ee9bd7ae3037e39", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b40fe981c0f0455d95823961567d863", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6373212d01553f4d246ab63acd86dd1d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbdea845dd4a74f3b4441d2741e08903", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10476ebcb2211a1057a8b573486f165a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63d140b2f9f9c8dd6f079736208dc45e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08022478bdb6772fdf56242f47defd9b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e15cfd7ed8a1667406d6678766684012", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e2c4f01c6c7d9c844fa2422d3d1fe43", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "207a509d2d82b69bd684471e9fd06ed9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "daa8224011d562b3333fa6465474986f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21b035d8a59637e78cab0e98623ee59f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59b156e08f7d2d177dae648f40d1aac5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a51dc5f481f9ea110cc311d45048314", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c903115840950c75732f653c4d3f9f5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55f84357e466638f3e13308f9ded8e79", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e20b89a623c276c78341cfbaca09664", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7113e8c7f1a76a7605965855f9afc144", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80ce53eecfa67a31cf2292c5c044a9dc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "724ca3dee65cb10c8336f92ea260d5f5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b9917df51887deffefdd33ce9ccb985", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "429c6d44271822affa6225f495e797c2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9584dab354bb3583bea85aee2d3369a8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09a09bd6685ed29312937b66a116d1d4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04ef69fb5330050b5370ce232913f900", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "304d50f0b306f40d2fc4d36be2d29f25", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aa931af403c965ee5dea0fe691b120a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d5f0558dc36fcb49f32233890253102", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5224aa8699eb63b1b81fc33ebde45c6f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "204c935f895231f930d228e4456bb3e8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13c54d212069740436f40e7f74f33a8d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df2ab36b8672b421bbb00143ed2a777a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "835470b33817dc66ad0ca71313600dd1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebf020b48a38bc5c4ad2d8817ea22054", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3447cd7d141258b118ac302429f29240", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7698644716ba959170de8950143b2e08", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec93ee9a9d5e41c430537805066a4655", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6377dd8e10fc817a37c46e3c0bcf9c6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dcf099fe9a4734659fd819f2850d82d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8eb4ec466369d488a43f99ae634d836", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21993d366ac0a79f1e456d8253113d1b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6d670900603b4a1c9b07a895f3e74a3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "054d6b027564c9bdd998d47e49932257", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b758f2f6205ccd983bbc24a7f171338", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2126c058513f4017ee1cc3df180df3f4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e146b1c21d6a7288e1d8f8333c9ac3f6", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f00a5cd4204e871375dc62ddbb92e6e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b8dd08fbba5890adb4144f1082507d8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d50153978b010652e3579f5ba52510e3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6a52224e534d91f99257070dd9e1148", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b635f1f722995b981f3bafe66d57f016", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f8989f9e4fb5a096cecac932ffb3b3a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c05308cc54f28a56d4120b27e856724b", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "758895eff246ab0dc800f7cba7dbedf2", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33fe6eeda1f5e094cd4658d9b0a2b2de", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37aad95cc2f2faf4eb83f5d81549b1c5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e545e60c90376e3e9d96181192cac93c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b568dfbfa19cbf5ab2535d2508eaf66d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b3b45f8bc489ce1b02c44fab11227f3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f27975282d0235c860957d4686fc0906", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9955d5fc1ef98e56a0543e6569f32fee", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d19fba65e7adbdcbaff1b41385dfe4e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39db7b191e616270c6e7870048b50250", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bd99375649ccd7edf05dbb732fb76c0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1116d57f3145883a02adecbc460b6399", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92dc1e053d43bf70d4b24821557885a2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55d29fa73f3f76f1765e1a5be497b704", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0a6b6e6d909a062a304e4d9debc7270", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ed8e8740dff31919267c912308526a5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64bba6b7cf0abc920ac34d730ff17856", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "418c8e348f5c0244c4b15df45d8bc094", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e2eda5f30ed040027df184e331728d4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef8dd3fc732cb3e78e3a13261d9739a5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f9d86ba1587b466a50a3148baa89ecc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dee7b0d238ffd47c5e2cc267c964191", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdac6b1e22054ef9a95de5e7d6e1d068", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88c32542f8430d90ff6ad54735cc694f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22129a91af8ef3e308af2f6fce89f9fc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7c9eb2185d1fd2b0ab01d2e8aded96f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9098cc6fb2e5856770ca09026c8cb4f8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c635bc046bbb6acdeb722b51042eb10", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5235f3152b91d7de55e09dd0e341cd4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3582c6dc0ae9b50dac6f0cbed23e303", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f1d6042bac840c585a51d7f274ea599", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c589dd50b7f124e1155c5021f5b147d8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19acc48857f5427b00cc75105606bf49", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4595d538b38abd3dac3e618a6831c4dd", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f06e1f220f4450ac0a6e2a0e2399f3a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37ee7a219ade1df13dabce7a2c69e6eb", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f534fbd4df8286a13044214a09752c96", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afffececb919d0fe1ed0048195b940f2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fc8058644844c49914bf1d40a134f46", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a78e6f8bacc26e01953a661db64aaf07", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7768c28c6f06f9d64b393064834e2d4c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c4a7285105ef14281a03b987f7edeb8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f0019b1ae794399efb86d30a140062c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7232fe2d956d60634a5bd8d502e29b7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "009ed0516ace0e7f49787718c7d15890", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c9bd24331ead8d4c752b5038a483c89", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "631c399e4088be07422a59713e174271", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c3369e0711cba9caa9ad337009eb056", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08501093675a605788694aae836f2a3a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcea999b5132ff4d05411eb8a8ad86f4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c73891537afdae504dd5c0d68d6fe1f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06bd43fcc0ea44f42e3dd958f186b2db", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cc7904abf98a2168e60e984842df105", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc1c36f57083d5dff7924d57e1c090c0", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08130b983c470286601294f6a18e9a64", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2904db4613b584f93986db549748fb02", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4a58564d0a9599c2846f7093f7032f0", + "notes": [], + "params": { + "seconds": 300.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d707d50a1a1b33982f920bb3ec0ca6fe", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ea3c2c206966546ac80630a12c30922", + "notes": [], + "params": { + "seconds": 240.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c78c287ad5dd608a759d8fa673204961", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c322305fc9382fe7b1a7d8bf4c722311", + "notes": [], + "params": { + "flowRate": 7.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 11.24, + "z": 35.91 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f29058f15a91d8693c6fa94fa218ba9d", + "notes": [], + "params": { + "flowRate": 11.4, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d500a9696a03f5bf2c1cdead151f1fd6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ed4be7f0a289238a2a1ac18408c72e5", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c45e799ef678388ef757bb9592b8f87", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0012bd2a71b6f74ab6fe272be49443b8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36da8110872120a806e550fc49133a03", + "notes": [], + "params": { + "flowRate": 3.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b2200e3f5f9a70649d304a956ef9400", + "notes": [], + "params": { + "flowRate": 5.7, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ef741699cc875de44075b18582c03ee", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da699b8b1936d6dcec00fc2618ba5ad6", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dea69be32b2bdff3f1e1c41d370048dd", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f516c68979a2d48b1ea7aeb86081a7bf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3203b9cfa3d8517949c84b2b31988abc", + "notes": [], + "params": { + "flowRate": 3.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74f57249e4f7a207393759aa9fa5115c", + "notes": [], + "params": { + "flowRate": 5.7, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3c454f49535b83df33290b544978e79", + "notes": [], + "params": { + "flowRate": 3.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "948f5c950e5965221ba25f433a228530", + "notes": [], + "params": { + "flowRate": 5.7, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48c9252d70b3c9e40144c08aceef456e", + "notes": [], + "params": { + "flowRate": 3.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c494f33b9a929884216f047a3b259f5f", + "notes": [], + "params": { + "flowRate": 5.7, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88dd93e38d680aa09afc453807d0f361", + "notes": [], + "params": { + "flowRate": 3.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f16f37b0806318ec8a1a4b6cd318794f", + "notes": [], + "params": { + "flowRate": 5.7, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbfd7f372213e967d7fa7191097083d7", + "notes": [], + "params": { + "flowRate": 3.5, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37bc021ba5be3fc7e7ebe6b268288d3c", + "notes": [], + "params": { + "flowRate": 5.7, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 15.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 15.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87cdea98f9262e74f01e66f482f5cd07", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e5fa942658c63952763730cf2c3e5ae", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec96fb12c7db631b756e8764262899a0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39a6a54532f73fed3e123466dd723f44", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2657209c18f785507ecfca64336d9e18", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 72.5, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41d18fb7444dcba0cfa68c9fa2a2d0d6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86fb0c73bb7daf7be37b77fbf7dce002", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d94d92612020bb6bb31abf2f4ec8267c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f87cec99917d7ccd34a68b4fd11ffdcf", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46c2aad2632daa5aac174c20dfe8222a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4121afc8a1bb277889022ba03a4da903", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a7321194b5e08a4c18b881ecbf82368", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4600635b468c16507ef294cbaeedce58", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d97d5d9486560b64a6973f0a3143d508", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46eef9c30e670881c0c2a326d6d35cdf", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6773c8da965214a7be1e21bc08917748", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c5ee1930c46ab31dee042d8d251ce89", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "375f532fefe6328c748e1c8592439421", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab8e9e71027abb562c697344b91db35f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd8b9508706e18aa43f533dc28a4b2bd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e501c4547362063adcc330c0bc3af3cb", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b56743464757e0d091fc510cc5daeaf", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd4d43f8c81324eea778dd212c040362", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75326a3871cf3171c0cd67edcb1150a1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1de97d059fe8793db567424c8f1dc272", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 72.5, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a88d71f9c65ac4a00258843ce725738", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7bd8af0cdb0fbff7ce9e2e94b548c56", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19675cd9a6bf6183d7516210631de3e7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35ecbafcfdebcb3afa78c1204918838f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "174b2c60ceb5e3f3915984136f315d60", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfe56f69348252aedbd3cd503080a91e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00bf07ca226a12c9365c71f200f2bd20", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a439b51de1f541e931b8d5039cccb3f8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa11355ad4cc5d4f705deacd0ab9869f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df0eea1ecb3e8586d39b164f00894c29", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbce5b3f4a064f62db2333204c0e8566", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad15dab31173b3ed0d39db5f52878814", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9d1a2af6715345a5e8a47a4d00559d0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8925bebbf8e6498a105d1e9cb4ec5071", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae6c057f7a8ec74190aeba7fa89b5216", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "929f923b7e63e7e2595585b18b8f49ac", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 65.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcbe187a8f475dace4680b3e68273ff8", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae1787dbaac51be61e335bfaee654e4b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72fe91fc2621facbb5c2371373335f92", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea84ddbb7cac0dcd8535a45469315f90", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 72.5, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "860697f5e1be141f025464b6a2fbb5e6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b6722426bb955a3bebdfb8ddc380a85", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2762be144cbebb0e2e718839ae4dbef1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03378247a78ea802bf173f973a6b5e87", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33505433d35addbde0fe335d047aa822", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8cef27267f166dcbe33021550cc1af3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2af9ac2efeb6288cb65b12187d303e1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e70ece7dda19cf62992d60f5d450f7e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20734851dbca9d35fe5f566425694643", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9ecf047b937aab336bc8d8cb4d26b1a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e539325803c90385610210c480849908", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbc60c75a5f796d6bec88b63be8f9a40", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21e3f45df88464a2211e318fee05bd51", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5920d776854530494bcfabc0c3694328", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "701d7c83353dacf8f7f931870fa974eb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b15caae0d5477f08b5427453824778c7", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 56.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7e0c1499637bb47db0c71e947f6b33f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b0c11bfabf38f1a18483bff2bb6d718", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1b402eee075c6da178a468e7e1e826a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba895feb75f69d1a9bc743248b69b715", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 72.5, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7372aa6b7f292c51e1fbfe57eeada4af", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c75fa5b49182e9972c799d8de0511fc5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d09c3ff75ee9f5465f081d01b3fda6f7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84ae9ad0c43da33b589d9654967189f9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f72e095f261810ee445ae9143de35046", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0fdf26517d899504a6aaa4bff1cb888", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "513daa6a834d7d21c26a88f8898fc9c8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da69d3779020b892664c7ec932dcae63", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4831b8ba291deacef459f04d5b129cd2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "551eddf9e0b60111a33e82d401635799", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7da1b405f7c3326294841f3087ee1b58", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c01ee49f2f4126f76ace435d36d9084b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "889afde87d6a42d6b5fdcc40a3e46df0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2adbe2ac85baff7686b13d87d8596c08", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83c4ab44ce0b0f37266b5d0260a8da01", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a78990a017bdbe849a045664eb6d4d83", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 47.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00e06e94595598bf88cc44c70af6f34d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7b8b78563da6641dd7d4a90fdc2802f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "561e103dae81e1ded9ab7902d947253c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "126c7c3740b9f8cefe01049365c6051c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 72.5, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bc1a0525c4d921b92cb856e8e4b0dc8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ed7b3dae6eace1a361d0583aa39b569", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e08b85dae276f5299f7a56e076672458", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98ab9628e76debcc0515254afc536ec4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab472310b89c19b95022582b2434078c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0f73ebc296c9d70da137331c29495cb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf1d2c9c2a35cb05d6814d64a7aca060", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "758e2f70d9e343d53a185a3142adf976", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21ca22f6ecd84fd8162a25afea337006", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3f24413ebe598f32c92bd8ef1e26497", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d351baf18a354c026695b851070f55d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f4d2142ef5de06b1777d5de4080de4a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df3080c1ffdec15ebe9e6b324191c87e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6b48ad65ea74d825b6f02ce492710e2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "548e6c40383acf256598dd9d207478be", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99c9bd0d4780580fd7d971c9843927d8", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 38.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ea5ed83ef6d193745a1e78126c0784c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84384e859905d98f21c7c678974fec51", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33d7093db6b12ab6ecb7c7e375831793", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8121c3a4b5688bf84005dc0e9429de43", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 72.5, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e22ff05d6e41c1dafd94307cbeb02832", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8e8a2b6c59d16dea0795337948da345", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5417dccc94f621ad76c02407da185b94", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "711bdfb71a0cc27553f23f9b4e06e6a5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac05914c69a124ce15acf3c79158a3c7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a840e1dca1aed580ff228b85079bb9ba", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dab8de9df4b936874cc3d6d794a59e86", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6240c3527763e4bbb9b623823fd8a02c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc23d3c628ed4601822f7252d583aa6d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1a174d8986f97679d79613088edffe4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ac6003c639e7a8a9fa8fddb9d3806a3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba8aeb2c568d37851df8d6df645f39b4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56b8356c289ad7e69705ed9ed4f569e5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56dc418a3494f6e8a2d94cbc832b40ec", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42825a1c20cc1dcf5b05454df53b3647", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0329bf875f96fd8fbdf617681b6b7159", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 29.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49afdb63b25759feb125acc66d424deb", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09bb798789f32d0bfaae7f4daf17f734", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abe94867ba2add0d126f19fefd0f3bc0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d19ada57ba6be94ea97eab7f284ee449", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 72.5, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c6c85ec951de9740857e14f3a588ea6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a33ba311f7ed0e921c2733e41ad506a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b688b3df2e7c1c55a122b8344b31130", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fd204d4e084652bb5684c3da5f3ff60", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23b88b660fa885e9f3314690387d5984", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "356f7bc46d410e90cc86b60499e78fa1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4d906a221753b2b8d9c8419e1f72167", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1af3c3bd30dc25f8e2fb41d28d333e5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adde2fed4c583f88f2573c130e655188", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e260595199bb547619182df90fd79819", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79861de277cc2618846b5bf6f3efc25c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e172cf661f335647a0fcb30cf8e48964", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7278d1f7e01d5b2d38b34373f6eec6eb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d617eeabb8ece32b518a80f98af2e7c2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22287b44e4db0ddf3397ea0cd379de8d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96053336e9cce9bf15311da9e0a3fb73", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 20.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d169fa422d0c6be9b465b435a8c9a937", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "019bd790ffe45562b9b6e6a4f29d7b49", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce4cbb7bda6f3764b9b884373061bff3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2dabac7394d744ff44ca8039cd1a8656", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 72.5, + "y": 158.37, + "z": 15.800000000000008 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3ee77bec06c211af80ddee433350823", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e47b95a6317e1fd3d5a76d22d0191c4b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a7ee875cb353fa22a54ae823779212e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cc0c33d0c27609aa147bb62babe498f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ccac3c9848f6172238ef29798fdbd57", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b57ec27474b89fb886855ea0082a032e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cf1d59daa828b0327a9a933329ac7df", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "600e99765810176f580ed7df8d6fa621", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bbdc846eca1fc96bce4e8bc8bbad4e1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01f280762b0b9fd31280e7eb854a7c4d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63736774acca7cdbfd30eb7b82f92dde", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a9a33d8fc4caa7153211b3f5686a799", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1adc6e334037e45895c6f8ef6157ce1d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "561c2a0684599e14adf1dec1cc4699d3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88a361cb9d18c74b20e52f0a3bdd9bbe", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1426e0883ba9484b9f26bf0ad6d2695", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 11.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf7951f4c40b4ae7c3eebb976dc4969c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9919ba77cada69c24af246040eae391b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86e9ecad17a86970cabbef420c0e137e", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7022e5aa68c4ed9b48450b71816e1ce1", + "notes": [], + "params": { + "message": "Add plate seal" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b319c968c0f61bbfc42e094640d28d4", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "363529cbaa2a5959bcba0ec3941666fd", + "notes": [], + "params": { + "message": "Indexing PCR" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa32ee446327b2e85b13aab6233ac977", + "notes": [], + "params": { + "celsius": 105.0, + "moduleId": "UUID" + }, + "result": { + "targetLidTemperature": 105.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75dd3173787e0dadc20d2eecc2dbd43d", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5530af40b05434f4b44bc7b8fc76ae89", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5ccee7e5c9fb9c5787739cdbbe49ec7", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "celsius": 95.0, + "holdTimeSeconds": 180.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 95.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0fbe6accd8f2a75806e817e976d69bc", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/runProfile", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "817eef7fb849a0d663c23ff578c1156c", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "moduleId": "UUID", + "profile": [ + { + "celsius": 98.0, + "holdSeconds": 20.0 + }, + { + "celsius": 67.0, + "holdSeconds": 20.0 + }, + { + "celsius": 72.0, + "holdSeconds": 60.0 + }, + { + "celsius": 98.0, + "holdSeconds": 20.0 + }, + { + "celsius": 67.0, + "holdSeconds": 20.0 + }, + { + "celsius": 72.0, + "holdSeconds": 60.0 + }, + { + "celsius": 98.0, + "holdSeconds": 20.0 + }, + { + "celsius": 67.0, + "holdSeconds": 20.0 + }, + { + "celsius": 72.0, + "holdSeconds": 60.0 + }, + { + "celsius": 98.0, + "holdSeconds": 20.0 + }, + { + "celsius": 67.0, + "holdSeconds": 20.0 + }, + { + "celsius": 72.0, + "holdSeconds": 60.0 + }, + { + "celsius": 98.0, + "holdSeconds": 20.0 + }, + { + "celsius": 67.0, + "holdSeconds": 20.0 + }, + { + "celsius": 72.0, + "holdSeconds": 60.0 + }, + { + "celsius": 98.0, + "holdSeconds": 20.0 + }, + { + "celsius": 67.0, + "holdSeconds": 20.0 + }, + { + "celsius": 72.0, + "holdSeconds": 60.0 + }, + { + "celsius": 98.0, + "holdSeconds": 20.0 + }, + { + "celsius": 67.0, + "holdSeconds": 20.0 + }, + { + "celsius": 72.0, + "holdSeconds": 60.0 + }, + { + "celsius": 98.0, + "holdSeconds": 20.0 + }, + { + "celsius": 67.0, + "holdSeconds": 20.0 + }, + { + "celsius": 72.0, + "holdSeconds": 60.0 + }, + { + "celsius": 98.0, + "holdSeconds": 20.0 + }, + { + "celsius": 67.0, + "holdSeconds": 20.0 + }, + { + "celsius": 72.0, + "holdSeconds": 60.0 + }, + { + "celsius": 98.0, + "holdSeconds": 20.0 + }, + { + "celsius": 67.0, + "holdSeconds": 20.0 + }, + { + "celsius": 72.0, + "holdSeconds": 60.0 + } + ] + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d072668d2d807686eba09cb6417149c", + "notes": [], + "params": { + "blockMaxVolumeUl": 50.0, + "celsius": 72.0, + "holdTimeSeconds": 300.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a98253fe3d9380f7b25fa6e1aedeeb1a", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "416f61aa8b2e3dbc4b91725cdb67c1f7", + "notes": [], + "params": { + "celsius": 4.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2880d02959844767587b10de39c025fa", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffc0344272b35490c5d3419ff890e694", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7e12708b4b29cba4f11f35f4bfee41e", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4328a0158b46387dbdfd6d35cb4d6d24", + "notes": [], + "params": { + "message": "Remove plate seal and add 30uL to A7 well location of plate" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01ef5c0a20b9dc548e21c3854d15085c", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6721d112254b95e6f98eeba56bbdb5a", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27767589efa36a3b1cf671683db8db49", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a2c45ee26e720f1c261c4adf34860ea", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8491259504e792ddb90605e359d4a87f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "944cde3415f5cefc34657158a5342318", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92a0c8c5abefdbb73b4566c9c0d0f26a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c8c4c3b93457684c7f1532f2435e68d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c2e878bcd477a8391f3e5b7584f2e0f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b1563d8bc281aa5ddd2f2bf33da2727", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c60828089e543b4169db08c4b9ac9e5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b03796d458d71f2d8fbb88a14f6edcaa", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7a0b3f93ed9182d32c518acc7a7d195", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af25b5c4d517d14d6de0fbf54ae9482e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ed068ad82443ffed1003e7ef49722ef", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc6450fb7ccf2faa48628f5d5a4f85be", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4165c050030cb44995e478da353c1352", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a8805fb9ccaa5ec385041afa972b10a", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab08f3516b9d128534654552d4e209f3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b2b1caa37728c8e1ae9f7a2f1c9c4a6", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5da1b8b81b1e760bcb2d3f761cf3773b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dc5177760a39ab6f92a9bd10d028bcd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4f766eb06cc71961fe1899765bcd3ae", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbd686f08c99bf5a730f3a052762274b", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc2f1e0a8474e131929f2bc016c9f0b1", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a74cb976aa143b08778949c454cd6e43", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70264777c371551d766b5ec40bb47b02", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51ff6f38ec50b4a4bf5927c11b8ddb4c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88e2f121234c3138000206451df3b463", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7d2cf11945867054a7e5c48e42d8507", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39b29d420ce6508d5dfb6697c26b498c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc7b1641fbb08b63e43087c4fb529c87", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a408e44415be9451d07856bd4eb529f9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f526ddccbb7212f95ffc8affd378b9a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aac2a3a15cd6df22788043dfa67e78eb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e33cf889dd8f5c3fe5dc5c3cc2c0457", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d11d4f577d06cc2f4c9ecfaf7f9ff0e4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04ae4df46bf1537668f971701df38a2a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b1793105d42c2793d886401cd737c94", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea11bf0508fd1dc04453442b82bfdf7c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da7d0c6da37d6f4a19065b3b41915312", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efb838f413c7262e8f9e775d38c645d4", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2842be952522b2f9c65ee929f3c3ef33", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c2bb7f91f5058d9c9a81c4c3586ca27", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfb4cfdeed7445fbfaafe493f19135c1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fdf78841606c6d39798d1b814506e21", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9bf8ccbca6c0406062b18ddfc882777", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a04cc0916459423b44d658f80c18b2ec", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e57dc523247846bc5265d79f05f3e849", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "455f4fcd65d60929f3066899fa6cb85e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cea4cffd038d7e2eea17b7c95cffa32c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "998a4c2862633ecf97d2ba989c62e587", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30bb4fdbef4502f0138f1b97a566fd43", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e714710358519963ee8e0e0bc421bed", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "723d1bab1bd5f056ac60871386182512", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb1b92d43afa6448f2a4f9b94445b893", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97ed662d58e1f77cf0f2dbc9162456b7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3a0420b7c28417181de5b285a3ca836", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa12e437837eeb1f67c7815a8b7dbdd0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cb92a5009f58e4eb0e5ce0bad0b26b9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05b3492ada2a2f53a176b421f1c45cf8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82e49b7508be7373c0d0ddc1ab4a2616", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce25b2f1de8348dac82471e7e641f5f0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d09fd0c9b6ad814355a64fdf9c41fc07", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bae13c47d368291721d31692b82b4fa", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "047857aa98d24691394e4b08ad70a79f", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0221a724957899d9f146db5e3000f49b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42cf87174569d878ddedb6242654e246", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1f9e2e66127f04cadd0266b3477fe7e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68d000788f5f97873f3b092ac9adba59", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a02c898d7dab17b613885844195f486", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c713b5140f2c3a7eae73dd077d2b1db4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4be592d94c6faba881a532e7159a8c6e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e16c2bc0d3822183ca18a2e43c7d5ce2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26583c83ef860dd416c46fab78d5315d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcaf9a057a4145887ddb5f81d9933886", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "898e108ad8097583c8a524c87610ce6f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2073b6ca73bd3a0a6485a9efa86cf031", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0f9fb12e45999caeef2cb7ad88e5117", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7391e9a6d898bca18a13ee2b82e4414d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32d4e7b1a5b5ff3484a57fa0e58a9fdb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1527bfcf89d3b9ae240974816e26025", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "225e8e14b53396a0a90adab66923588a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0afee23f5d756ffa4bc6d7bdd723990", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f943d1f520a79b158c73a51255bd1dd", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3baf5b6872af531924ac60a932fa73c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2e33f5a780ff7d1e5837e374c387636", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "420d53f3f63e4f44c1f85801dd1c4801", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63816edb72b391fec3b7ad9ac5a07966", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99f9dea9fea7c28c562aa469b8e8d042", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c49ffb3785ba6750a7889a05da1b772", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbf4d8460a11e71a51bfdce30d8a93f9", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4281a188a308d36c3530db80c69d14dc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc249b83e3f6093dcbc2c17186dd9c04", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd8838784a30cfcbbcdda19344e8047c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e8027a2986bab44aecf1a7544263dd1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c5f08b6cc4431cd6cda0ac2148e0fdf", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbec08b5c1fdda4860cd8c2dd55c16d1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88ff7268c5e676a8d3203c69fa0ebf19", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63e51699f4796c9a58e5e481aef279a3", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c46e7f138a2e7943512902518e5493ff", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ebf3ecd187f7d39013014dd4aea7e8c", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e21048bbef40d177ecd21b02355db495", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9758db9a6af19351657a352f7e643b4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77963da0b958b7aaf86f933cafe2b81f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a48550851fd3fabc3e7a96f8a2e94cb0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a870de862eca625eca37622600081ddd", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0a6985a314277ceedba773ad963632d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a2d892871175def70e510fbef19315b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "156ad2d30e912f419f96808b27f28b84", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5945cf57455cb1994a9d9b3258164903", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "beafded2abe4b4106dfa8d242a77cc59", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "631dc146abab05fbb510661160cfedbb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51eb4875d25ee03af161deb55d182b9d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e092c12c096ab86e524076ecd138761", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "604fe2abf312352bcf74b4aafedceeb8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fcfae07f33cc0036aa4ec5d6de35f0b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fc71e7ea505e79f0bfea4d40e1e0987", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "687e72e773a1b14a8ae2c26e97d2aa5b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbe58ab83db3187f98b4dd03cd94902e", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3344f33a210e6b44ebbf9b3a19666c3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0843111f59e21bf34701f0c18b12d27c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65a03d88f8ae9485ac8e7f0c4f567cc5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3bcf914aadf0c2febdb5c9fbba4a704", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "679e0fba0a9bb05bae67b2ac7bcb0282", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d8ca0b794364b5945085ac64964b586", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97b3e0750f1679c3d06754111b485a8a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b0633bb16ebae94a91fa2aea9844dd5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6b712183e52196d117bdcb24245d67f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2319fe057394defa853cdb17d1b3e048", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "189ccab00fc19da6c27d5fdbb9e4f08f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18bc04b28ca6a9963198253c09191777", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ece767fa5fc4ebe203e371454fc553d0", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87ade0ad7f9611736d409ebcd260ba6f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4acd032ae1e2f5703ff00d48081154f7", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f79d8bb4c9bd76050dec5e9dc5d48e56", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff66b9c5810721e50426b38372639cbb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd239344c3c81aa25ea16682aab09e46", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3d28161385bf72233a6ee8a1ac56180", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "994c212d4616d3d4b9f328b0bac954eb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "317dc72167b46f4679280121a9b5cff7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6231b282553de3a7f55f36bd70dacb67", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b05dfaea018e5580ed3e363a076880ed", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2370bc77c758ad3b88bc49f9a308cee", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91810c3a9681b84b4112d8e4792170db", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "113d74298608e43d4b341adbd2e7d4d1", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0987dbeb11f4396af8b1a6ff0f1fb9b8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b83dba9244906b14e2ebd13b7b72d29", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8739dcb7fdc4e64963511fb5445be83f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06ecaa4d147be2453c758366a317594b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d62fbdae4322b4ac89d854f0c7560c8d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c9c7cd61038f97816f4a0a61e90053f", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f6b5eb55b3821af736f951e808acce4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b57c3a07b91c554f0b1e454f37714317", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d95a24d0106232269c2cb80f6dd89d19", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdecdec61f0b1686110c00c46b87d9d6", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bccd71e18c8295190ed4cbd021c1210a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b01e7f5ee657be3c71a7dfcec5e416f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1a370564b0b2f3fcd3bac6b8c1ca52a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f67ec40ae13e4de4fbd10f90245d14d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc95df9f154a5e4e869b68675968bd43", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "679baae62760fc9781a8118264f92e54", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b30b6609fd62c0cdd959fd301aa1ce2", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc954f95ee0b0a22b36a5ea8999f5057", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b5c7ce49a698e866403cdfbe4112f9a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a5063db5c9091585b19dc808afa2f98", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c81044a6ffe7a60487e14e40c6f9f927", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a38693be0ee0f9a79de8c84d513a2f7c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce11264f01af0780b19acdfb1f389661", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3642b51e6dba94e4f63625a198a7c726", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1de497dbe21f90fa40dc0bc05a1c79a5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a9786fe92114a544d76d2d8063efd53", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29cc44bbe288eebfed71e12d7b2d347c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d915d80f256582bfcccf577cb15c9c57", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01d3fdf64281350bf7f78de922a2b5f1", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f39c56e8f077803b452973613cbcb33", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a59c3afd69d6033c42109ae2aa06cdbc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1e8372ba0a5f3088c42e0814f7dc646", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6d1e2cb68a60b71288b486f499d4e71", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "476030cc9b2dcd03bcf9c9ccbb6e3faa", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74606c824029f78092dc1f8dea5ab4b8", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5216bfed2728685e575027eb0be98027", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac64aee9fe0e375b3c8645f0238db843", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d539c53dd853accaa31150acaad747cb", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02ed42ace9538f3d06d094a773f931ad", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bce7d417c9af96ab1b808d9ed5eabe86", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c6efc8ff45889821f814b0ebaf8bad4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e643bbe68d52b892b5a5185ccb685a1c", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50349ec7001ed37d8df5e56ba7b5ef17", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41b6be1d3c2e20507cfc3dee889ee8f4", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa1a8561f73a806c4feb194dc012d5b5", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56633cacd302959c32ed396df864ef65", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84bcf7d7ccf70bf061667d667374070f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79aba43083fdfe4f7df37515cf47a5df", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9cddb882b811d7d555baaad3af0bf5d", + "notes": [], + "params": { + "seconds": 300.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c6acbd90b9a424633328b3be51509a3", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "167cd4c31bdcabbb1be87220eaa592b1", + "notes": [], + "params": { + "seconds": 180.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d489cd0c1675cb40592ef463c10aaa5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "967dce44f6b2227cb23928b6a274d599", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed231f64879f99a19a571a0710fd742a", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b17f07bcc58536b89aa6b9bf44f43bee", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4094bc7fb4e490db3ea7d5214f6b84a5", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "581469f8ecd6352ea8f1eeae85de35dd", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b7087d4dc3a9bab7829af559d9dd255", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "169001e357c3a9d0be4be70b6087a1ed", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9eddb9d7e3aeeaf10664d6837b58740b", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35129dd181f05133172fd6689509d369", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 65.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a44adbb9d12108f689cc998fb3424cb1", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fc155b8ee31b9708322f877acbc9d02", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eafc3507c1cb922c369d21aba25a4450", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a04acaa1a420999111f9543599a31284", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77f57c6acde2f2ab1aca370fb44cfe79", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "589cb99af0120a9062c3b66cf59d89df", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 56.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9ea36f5a26cf097c01e7e5f324472ee", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fc6d5f1a0d1dbf18de6ccddacf6cd1b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d96de59063483bc462a9f47475bb24f4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a00d3e8b7120ef12ce1cdefde445099", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "891d07840841d1c07c5f866b46a6fb8d", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1617104041e380870d029b66e6ab17e5", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 47.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "949deed51ffaf0748b9031ca7d7865ab", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b3b43017809119ac16ad9d2e98c4b31", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23cf72bbe256f67006760d3c9f29245d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b197e00d5544f3a194b57d285c3ac26", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbade56ccf383528c6bb49fb57db28ca", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70e072133c960fb91433cd3c27bb4788", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 38.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53a1336f1671c17aa0035e1a4d27ef03", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b388756e701bfda857b10807829b5c1b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37f4cfb6179ccc7d3eab07c6c37ab966", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad0933148114c03853d3fba6c1fe22cc", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70a41b9a3de4012ffb10182800c385aa", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c0d9b5d054d2a49c27390f34c42928f", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 29.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95382ca698b013ff47f98eaac522cb99", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30c9b73ce5bec098c24c5fb39b8a26d9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0584733e741390bec67624e96875328", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9f54cc492d63b95d33d34f67f25f75e", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f4db047abdf5a0afe713bfe9059d276", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21c87c21540a7fc22712c310e1359d92", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 20.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ba1988f9e304f2c2f4dbb6eb5cc709f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4024daf4fe54b36513fff48acfa6f357", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6fed482cfd77e8a3524b99b33d767511", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6bb9efa1342a74c2a40477dc2e6f084", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9e4d0c2bc48b6979bd802bc39f58155", + "notes": [], + "params": { + "flowRate": 71.60000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "797586e2c8ff1600dfcb7329505e94e4", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 11.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b583b4dc463944ef27b433d8bd2f0459", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87005e436054d99492c608e80c083d53", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e77283f6d44c602a637872ae1bc41a2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad3be8be58ff1fae79b5100601ef93a6", + "notes": [], + "params": { + "flowRate": 7.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62163a1f7d397e7c3a85c9122cae62ee", + "notes": [], + "params": { + "seconds": 5.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8239444ad091c74d59ddd119d426e71", + "notes": [], + "params": { + "flowRate": 11.4, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "455b9b1ef2f03ba728b8ba3086d3e420", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47c06b3d206d1fe6d892ddd7f1a13def", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46b9249289b0c42426fffa1e24df9b46", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e847f247910b4a782d14f7a901231ab", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f359ca3ed9264bd509ca492d30a1bf8", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8b81f3fb307e53aee586bb3ebe2c0f6", + "notes": [], + "params": { + "message": "add 10uL of Ampure XP beads to A4 of plate" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbbcd375ecf16452c1da65b39a56eaec", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1af2a1ec9818bc650b55ba66c2fabed4", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54c8d71d23c18b80bf0ef167ad245031", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "314118ffe5d4e21737c1ec65355db16c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de25fe2f8307555745a5028c82fd46cf", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69f4c7f797052e239c64d0cebcb95b7b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d17f33aad9b475e0a6080bf42a2a351", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ed0df629279d8c5962637459eeff76a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bc8845e3cb38625471bc3db972a8d05", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9767e6c6ddec9817818d92308cdfce05", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de489b1e5204ca92ff0de89be64bb48e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a76c97e2aa83b658beb4905832200e8c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d620b58e6ff6973586afb1cf5d6b7fd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6002c89a4b55cb618586e22debf812f7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b01221dedcd30b2e4ad864ef2b1ff7e4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c635a2e031a49a6a46f742917103126a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2743ef2de8c5fa12fc1b81751b40a5b5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3e1cc3c0bd1a76b7686066d704d80f6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59ffd930f9758b4d63f41a3e7fe31c92", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d43739710da358481320eba6b50be646", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b393e31372654234956c61880fbc9d49", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a12cca02f2d73274dfbe7fd1a87206d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e316bd9760c02017c3fbbd39538d3ff", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d48dbd2f599d8b38634dacc755011279", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86c23da1c554cb01f41556b892ba3605", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58cecbf1b4a5a005cd6d736c98b6b378", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19428e1a74771714d76ff2c60d67dbf5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dd3c2a7d6dae66ba90f17c7e218dae1", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93fa15f080e508acb8473741989aa6bb", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "197729f39474ce081561d5cf20f94f96", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ca290c137fe98c35386f9b401fc8361", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ff94177c5ba55165ef239492ce52ba6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2566085b381d1401bf137e4a9fb9646d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fca40b2996664a193008494949003c80", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d46cffb22b188d7ab3471e093df0ba52", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb21797a142ff083872a68ad22298793", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e4df07df748f5bc831658df560bbef4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83cae144c69283ad19a1be3f05944fab", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2c751fe3036c93f3e52dcc21aabe90e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fa27061b4df69a2c1242ac24b95c645", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aa23cec011c14392693c48088b2b9ad", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ffc047854de0f6226df053edd7db2f0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41417d534d260515426ed2587b0eeb86", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c53091688db5a38993f433006370ee93", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36538c1508b31ce68716ee3cc4a917ff", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30e1392d633791e645f5af9a51992f4d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9138c46311d9b6677d98fda8145dc204", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a33e90789ab1f3d4383e315d55dfa3b4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91b41cf476490af97046ec41a7791269", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b31752f5e8a9aecc656ca2c6754fd74", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9f1cdc17c09497015b48df0b1fa8c1f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed7266cd0ab5f6a77bef7c73f5522292", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c43eb9cadaa20dca583f76de189f7b6f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "835a549871355b720d367658c02b1f4b", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5a24807b094dad1f454af123fde132b", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a67aeb7788dd595843664d39607494e7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46e09c18ebf1d6b66d661fede8712231", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3560497c86ff8d39a34ff763702569c8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d5c7e564c24bf46dfc9b7513b188c72", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fad53d1b301e4e199a0c99f8686bb62", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95c33e6e617e5f3555d195dcb2fd0b35", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51b0b2c49c853f1476748443f54fe2d8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "584839d67a75838639d2430bb297dfba", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4be84056ec4c82c2167e48b31ce585d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebc5cee0ea97c765699446efe5c3638d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94945cae794c05f6107379eda3055db9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "255d0fdb53415af1f9807ea290d7bbd7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca85f256c7fee4394d2651a7921fc8f0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8505bbef79d5e84bb49b7319379402e5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72315822a34b8fbacf2c39e40e1cf76f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f057da13c9556bdf13ce816e87ccef09", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f61a0050e9959984532a4b4df44e611b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b20358706eb4fe558d052b08fded9ff", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7135bf175f617deda37b672ccc45e39", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9238224cf5470366253e98325706e20", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c892925f7ee4968a53a11fd39618134", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a672c9335395870e5f9f1b51165a5543", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "267f9153bb2db58d33a24f9add2dc493", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e169f73c9db252fb25ffd22781ceffc0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e22fae620c01521fd5bc931129927a54", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bc1b814180477f2acd602f58000693c", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b4a00650dacf866dee0f82b1bfb2847", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35f97e3b496a66adbb623a79ea37cec4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec89406ebd5c341d6daf3e5fc7d9e6a6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df73d63c604cff7a1c9801c27b79b2a6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75e80bc1f88e40dc08170528552fc91c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b516fef6353f4631940ecd4913b9329d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70705e3778c85f71e0e8382e0d92ffad", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45b5e41766e6142c3586260deb3d7f86", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "002b4f66b89ebcc540fb37f8a8af2de4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acc81c638aa1cc204d6adf0ee5f10186", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bae44a9043fe64eaafa05390925b05c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51be8e07864db0ef3f057303cd16ca96", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28b670576642608d92d5ddd409363530", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e88ac3870c9fe782d0e0d15c272e65ed", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "458ff5aaf9a894f92bf97a9beeda4822", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78f5cf80901e34a019e79ea528aab870", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "239b14ee6c406ab4eccd567a56c6a124", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f23edc2e1c683fbf22f4280b0faa808b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "034b63ed303611d10fdd46c88bfaf139", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a3e404540047d70ec203bb67e95b055", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa23d95388da59b0b42e614e5fb420cb", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afe009c20bbcd1e23813300511313c1f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31698833a2c935d419967d3be3f94839", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c595ec471efb1409e1fd060f51963190", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06e58e103bcc0efc877f92612b971a0e", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47388050481daaf53e209bc61967ddc5", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4d9098ddee45da91406af582455db5a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "806e72b414726da8f42dd5f1ac2b4b3c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acf5445fb70b82a468f42b57ccfe4792", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4061744e09fae5127375c5392ca0d9ad", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "485e56b5ca0edb4171e56ea538747296", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b873ed1cd61aad098d66c4fc7b79d9d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4e6b45c589d141f3cbff69d301e3a00", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2881ca0a77d947543d45e0cecdbb368", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "147358a81a08c62a97958dc8545520aa", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2327016225582a8bc4d6c24a5d0f696", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa9679f8627b9db579627c0d68b958c6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f07f49dbd14032075e88eb56649d2ce6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43ecb67893785971ea026aec759445f6", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "585bb1679a170a7a7e0e8467865cc32f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3312a696a81a9cb5b715892be2c11450", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8209de9eb72f4424831bd5ca73b1a78", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1df444d49516fdc04a263f9a7c8e1e5f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b368281238da0fa23ed2b8c66e6f3f7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "341d4a900e79e2694e9d011256296c04", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83509aac912f0241de989d5ee4382874", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f2e286465490765f1d1680ffe612439", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6c8925dd4584828bb2405075ffbebbc", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d1b2857f4e91eeb9ef6b88c7fe705a5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9548fc9235eaa6c0fe78712b560e6873", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e07a5fee9c2398b5e2fafa424e12d03", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab523cbff699df8b61191536ee81bab9", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0836a1f6001c8a651d96b9bb7f268e1d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a0ab6ef2080b2f9faf5ba0f7bf5575b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81590e63d72c4185e05b92eadb52f752", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e2689b2b294ccdcb4d5be23d7ab31d3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5a2275b279c48c52165271600e3d835", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a60a4fb8658a019d00e5cede65c264a8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34a3009a5cf74e7e819043b66be22015", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e471bca25fb2ce64f12ff87a02f436f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bee2ead61abacda6e2fc833ba8996f2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "009d1fa63adbaa9cc19d49662e67c4b4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd0de453ab2e0095ab35c4d6aa06f438", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "427b00cc527caf8d2ae7d1eaa885e8c0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2eb0c5e4246735dfff03f49e597062c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7570ad297c5687aa9145c87fc63e2c88", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c6588052174f950145fd001315e51dc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6d0bbca188e71421e7bf7a7d4916e7d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5aba869bbb8ea9c7fd258dc6c708a357", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68ff172b4ee11a9d5cb569574f2bdbe4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa107ff846e1720e9964500e1e25cdb5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e4015550b50652635473a9d8d0a50b0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51bbe43119986b5867a4f47caca5d54d", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce816593671d047ec9cc72df04e8b204", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a1c067a488582d1fe6262b835e1f684", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae30ed5c5bb12564720cc2752625b83f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78e8f3b8685e1fdb47b00af26abdbe86", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfc226393febf692eb6927993394c782", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63dabcdcd3cef1890c2cb785c0571983", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c00a687cfd18ec6ba493d75ebcdd2c56", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d35594b5a76125f81aecf3130def0620", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42b9af29461b3e4697735110754075d1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e414094c8ea9a341714802d08fbb34e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbbb611c5801c1600030332dbc4f6aaf", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "256db03a7ba4a2b95e662ef6263eee12", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "198c30ba375d6c019f9863620af76fcb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72ae813cb81659a14318267c57610cdc", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3f60b205359c7e1d1edfb2ff670598a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1eaae084a36b3f86b596d078db42cd1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a03cf0e0f04e1b6fd2077414c3851bb8", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44632e2baefa1d28699012f0db224538", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21e5da1b9c28bb5e53b1052626a2b9d1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3210672d8b63467c08c65391d7b1462", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0218a5f0e0efd3c7e7955a6e5ca552ef", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e88baeb20f82a75f89ecd479ed38353", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "801d59f17d05075822de8dc06db8759f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1984213c5d9305a1f28a9cb24dd7395a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43ace39a9e3e53375c436b2abd7ebe51", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95f12c98d12aa03c0911a65c0d06d4d1", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8c20e5d9b6ca0cec1fb93c5deb11da5", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4513964a44e0f0546c773f1f4f62feb2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77cf9479e51f2d7d01e8b08fbb36ee20", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0caa8ca3be55119a71be9480e095c4f", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7cfd977873b50790f4d721f2ea9ba91", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 75.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 75.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d150405561af3bc56893fec720bff831", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1925a6063ad694dd74e8d97d3a62934a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e3ee39cc05c866be0b0c69263d6bcbd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e58768892fa57f3c1fc06076ac712e1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33faf10835854c358e9ba43d6bf9f60d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39339aede70d4806f2a84c0d3027d2f3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e75bc0400c8b953d27dcbe2e820cf81", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6fe1f91e08105b9d22d99d88db5e3c53", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "263834fc2090f2d4fb4169979bb6ec95", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11bb6698f35c698728aed1abd09e29db", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4715aed604503f6f0cf6041d3b5d1242", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd7bbf4c642a5a4806eea8d99a4411aa", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42622b49049144f142954a1cb55e625f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ea01e2978446ee3d4a3dfcc88a8bc39", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c72a7f2f05da56e8b41f8d5f3b5d4fe1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6df09220624eb4c891222e4c97ac124", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd35008a3e312f50e0d6e06e056c9b83", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f057491d7e25ef14cccea10487dabe5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4674f1a6795a32db8f1a90dab79d595b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0f48dbcf5d567706a09e3706cda320a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b0d3b2d00723f55aef00702a53c7a0d", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6a5ba11cb5e3cc7d74e6d4798a875d9", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "028b4599db60858310a9f3ff21f92c82", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3be8fb9c8016806b638ae004c242eb9e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3d40570150afddae162f95787153f18", + "notes": [], + "params": { + "flowRate": 7.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "504ec5691fe1de4c42620e4f238c22c4", + "notes": [], + "params": { + "seconds": 5.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68eed16422d48bc8b2eff9e8e2f03aa6", + "notes": [], + "params": { + "flowRate": 11.4, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08751212278e20a9afeda789b7fbb116", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30c7817ea2adb82d71369cec779b6c4b", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08f7541c6c5735a79da55cf3420befb4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d74656a38ce348f2dd7ce95ca807f63b", + "notes": [], + "params": { + "seconds": 300.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91e9e51bd8bd5fd8c1cb56cba9306950", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3b14f3edb10131db35e7b109d76669f", + "notes": [], + "params": { + "seconds": 360.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a10d40e9f88283ca1b0926cc16f441db", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7332c9e6b110e8d7af81792b93b441b7", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "C4" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd96700a2a2e1597976ed6db82cefe60", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "A3" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "B4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3387cddca31cd4639f3030e8096aeb0c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "179f50e49be27150c44fa15118ac13bb", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4528784b675b07bdf6cf3f17ff1fde2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8b8c92af0adcacc7f93f472f1488cad", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22f77d982ff58a9d8087177c82eed10c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40beeb656efb5bdea88bef585b61b86d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c7734f2bbd123a143ae82cb38e9bf37", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a169cc6f7b3a0c371b9ad54170fb64ca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19ea7cf79f8322d3a84c7b0e9ffbf052", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ff9da343de5ce4c6aaff913ee848b6a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4dd2083ac4f17381aa4100bd41d58d7c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb827cd87666aab05cc66ebd9b9727b5", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d46524f5ac95fc6a9e736687d06f90c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ccc6a14dc5a233d4ac0fa58e2bf38b0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d06e57c8d142346782f1838e6b1b40a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee755060e267327f5d39352321eb6a4d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "505bfb57ce50f3ac9a4803187e829a7a", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b342b029818f0277512cf80be93a6689", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e22b48d35bd75988d1ec90bf7cfcbb7c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6ad82bbe138e863be6db87e38511731", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ee198d5100f9d4b4036769abb5e1fdc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bf39a30cef85438d31bb9ed1eced9a9", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49067e3af1f40861afff941a497a880c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad5a52b07a73b4fe46fd02426d24d681", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54728237735557312fd613b775fef642", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec3d95d44d96a9a45c89fc04f6f177ab", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa8d2dd42d918bad63702224479d6b5b", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "346b7031273bb0369e3f0baa4873bce7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73b7d97d169136074f97aee2c912c057", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98eba0063b43c4dfdb9dbd1963ed1cf5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b27c636c2bc7a9d48503b05bcc42c872", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99a53c91519db52e7fa364de50feb89d", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf59259ee2322fdf5b80ea26b3e7646d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbd40fd08ca6a338144ce45aadf9574d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7991c5904ba82b2254df57c71b1326c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af4364aa6af1a170b277cd5555931830", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01d9e7588ddcfbf03035a6a9b846effb", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 36.510000000000005 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa55b42a78ec83ef65b20bb1b14b8e02", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 85.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 85.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8416070298c76080babf6969afe3357f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29826458c9b06a2d37710263515a3560", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4693119d0a3900a3d26ec2b34fc92a37", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d5b6e285d9273f1b6ca18125f5eb51d", + "notes": [], + "params": { + "flowRate": 7.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8001a4b83867dae1f37efb5ec1611bb3", + "notes": [], + "params": { + "seconds": 5.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "993334fa4685378edf914ab4a6a89f46", + "notes": [], + "params": { + "flowRate": 11.4, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.55 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 1.4499999999999986 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31b53051f8c0724003508f48c24d7144", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25d7053b477b2b752b93795b2434b148", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b98888707aa1a7a02864ffc8cf860630", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bca5cbc19f4ef13b94f1fdff16ab723f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a986da8071c60a63e7d29cac49b8086c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52efc4408d2fef18c4d6ea63b6e3d21b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dd70801511f19bb1016f8a85cbf7f16", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe54a6093389691129efb97dd031c31a", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4226cfbdc758fbb0a3e40a95f8406a38", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0396b70225b60c1cfb4cc2b2ee4a4bb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cf707671982ac16ed89d182d72eed93", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "713b1a146db3bb59d6e2d3a17eaac9fd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e66d23fec87e7aa2bb9147ba48532b4", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c426f17a4a195605903785a5a14b1774", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b79a2fe75cc941828457931ba1e9a290", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8eb69e4089589cee6e372ecb4e8345f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee3a338e55cbeee45cfcce3f06de5a55", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "839c1483b6802c51f3b86541dc092dc5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34238f148e8c0bb1a55f3566400e43d2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5d900b0e8ca8b45577d0bb8042ecdd8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "438fe95687d73f1b04069e7d1d2892c4", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e31926149c22384200ef77abd138ce1", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4b587acea4d2a0d5b02e06eb2e2fb43", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bb61d9a0548e6571b1108ffcc4ec93a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "077ed3ba93691537ac1caf698cd919db", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09ecffa1e3f967a8bb0294061a3fb539", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f297960ef9d901ffa9d53ebae501b8e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "178d96495324d1ff7b736a4ca02b18e1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a5d739bfc4f283d3437f173dab1c0a9", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65358ef195a7feff09c1f0de26277499", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c645a3d828bae5ec7d7c46dd443dc53b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b0894773bafc9cd19ada93f2418bba3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4e65d18740688494efa63a7a81bc06f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f07504099853ad38e0e7eda3ce855d75", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b034cc3eb54f6c5eefbe5bf44807c8d5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a42d303c65843b82a04f5a9053031d61", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6199b291353c05024fd2eb71b2823c21", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59a2b83e0f849a584ab7e9bb025daa60", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad90263eae79dce2672c3a19381764de", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24155fb6040b45e23aca1fa465bbcf80", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bd7d15ccf1a2099e36f69662099bc32", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd786e7927599651a30e9d0fc4154191", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa18e474fb6d62c71db3d760d6367a23", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8dd267538078501701575a5e28d02fdd", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f279464bea21e2871142c167cdf13c29", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d39df42a795a9c5640780e0a828d709", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad19a27d2b6793892af7765ba9c30d08", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30c401b701bf9fde0fc969182a7b49d3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35f999385907cb6f665821497c50bf3a", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87def4f61f35f58094e8bacab84c5563", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7e9a147cbc13b0cf063608431864547", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93e2b383f089084bedb5a45d17e56ff9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41dbb3041b66abf6d64e5f7656298fd2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e03070383d185803f926a69d809fa0de", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "697c53d284dcdba5d2bb5b35c2df03f8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 38.0, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f201477b3ccb76e38281499ddbebaf7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28b0271f7d50882a6d216d3a5e20c555", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3c73002278989647ff42b0f5d60cfb0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76c803a256d745714565d64e63aab345", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e45da9d5f3285d4b11a1631426ba3468", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa8afd693e6f4eb33937d1d99e9b43d9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11adf132f3c8424502582d2bda66ea56", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02ba5faa984221ca93fb8419974c0b71", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f30cd3304b16837da1776efc74e915e", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0841042e03bfeeacb889bb581426f5a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12332ab8fc2d3aed6621979abe2b17aa", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24fd0ed66fd4453e348f328ff5cbc66d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2305c075f4434a9f130950c987cbe679", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da87817de9fc36baf6fcd4f6e027ef33", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e77e44046245d2e755f3a670099930b3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f02f0928a4b2a1a7b3d4b112d0e9cc71", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a53bf63657977cc55f16710cc6a49e3e", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99868737cb2bc8ccffd467cf8618064d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "926392608fd7d20061397cf3a009960a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8944713954514c379a7dc4360403ba9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10a788ea642b2953f79a4638b35f612e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5afdc5b16592503765174cf81e594b70", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ef1c5996adbb65b977865b861453020", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c58d15de9c9bc7e3d78126cc57e68c05", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "708999fa4fde3dc794711d256ac8e486", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4a4676c2352d3a3e6b134396eabb33a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdd717b81782fa533bb9e9005fd217b2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a1c72f274ce09d54b44e9609668b96c", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1818c19f0b1204ead58e739c217e933c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d34ce2b943f2589f2c0c8a6fe3d1127", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca59b85c62c5a78634ecdc8ee151422b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1b148d408509f9af49230ec5ce61a7a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e4c76f9debd2b4cd9add531d5e0bc90", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac8f9afbe87d346a6054fc7ea712ab38", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fe8e4b9aff5041668f6453b7eb90d7a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "480ae9ea738b5b189922106261c26dff", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4a584b0f29b30cf9111223cecd50834", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65ce651a8d49c250b8059220d6824892", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f3b2de62829d2cfbac8bb1e227d13ac", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ac122978bd889a6af04f133a3be2840", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c0cd1e23e37ca077553f0802d9a1a37", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4fcb55d82285dfdfb7116750ab1ee90", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fea367abce71a5fce540d5f39959580b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37f566dd48758f45425f8a00aca03968", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3eeeeab8376e2047e4cc419a2942112b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9ca747d3b680b97f65e70e878c2a030", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e698da270c6fb77cc94fd9447cbff1ab", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54bc75233f9cde3bd4e0f5e1fa30923f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2d61fbcc86fe9ad8c4bbbf4e4db5078", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac7ac8bd3d77a36342f8a36a9f852f9b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cadbbbcec7376cd70e619aca04737e09", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f27692f051c877e14037a8b6c74074ca", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b338427e453054462fffde534c5798f3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28b2e168de63540b8699464cebb5c251", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72d5c3f22f1b03c3e6008995f53e98d0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5cd3918eef8ccf0a68fd29660291216", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 55.25, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99c7a37de435580f10de23b63480438c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c63c2c62b8e28297d879cec62dd6df7a", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6fd7ef7eb5a0a7cfaabe1669174e5400", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "677c0027554b44e72d23d394ebd2505b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "697c86e2230c892557780ae9b3765e45", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83afbca99e4da104345baba029c1da8a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40d5b8798da2735c033d65285abb7158", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1225a1d895bde1ec13d1329ea6c5d39f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a8ce061cf217d1dc2ef39a7e7eb81b3", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05892c3fcb71e5d8d4d4eaaf8803dd12", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "731e4ad9d3adbb11aee7a24ce9e640ee", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "960d82745f831b1f6f9fc20403aeabcc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47caaa92421725ab41a85fbf417f0c77", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "492497ea4d2e90caf5cce9efeaf54f43", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "313d8f2df65ef7573d21224e2b84f98a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1aa6eb6f66ab407f04faf8d0b9dc165", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be4846f899f6a3bd29c85f7cb8cafd21", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c2c4feb4f7a3281f8348cc266fb34c0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3897e8927182df210145e9c832a8319", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70958badb1eefcb69b35c7a848ec226c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c597eb19d231c1633b2ac7947f5cd7e", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "061c5e781b67ff36efc641e942ea6b7e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fcb82732012114a0312494c6b3733a7", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e8134517923d1b240d0aa5cba22dc7c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "672b6eab9d408aec36a27190d26809a0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d02986dcc03e4161b18dd80eef2e0bb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2822c1d1111f6b93acd00c9d72909c77", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "219093c4c5d58131c05b93970df89762", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9b3c7c41ce691bcdf3d26e766ff98fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1751c9839ce1bbe2398d2840ff7707b8", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb6eb9b8586fb795d48a5d1f030e52b1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45381d6b2b06a3b9959f8499b3a060e8", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97a58139703ff74bfdbd3cc37ccc885f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1c5362ccc916a5e4c9a67a4475ecf26", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5ed47ed4f8849ab3692bef07e72e289", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78c32b4d2a0bb88f438aa6332843fd5d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5228701f78ae80459c876be6a68c11dc", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2dface6484c95b5544b8902973d9303", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82a0f5bf524e160ed8c9403e743fe8dc", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9eff6ef47929155308677cb6614fece7", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbe919051b12284ce4548000ee00ef62", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c36e8430e7120a59517acc0fec60a95", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d429c557677afe2ce7ea50a8118b2cfd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f97fa583f24860caecc1fce295869871", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e5e4ad61db1119ceaab09520b160889", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da21001ac551a1a415ed66510f603c0a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f76a18ca2b86d556f8b5822f6b49f38e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a75d851837ba7574d3a763fd83af6707", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b338d72c9420812aeaca3fc7870c7e07", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4cb1341be29d9782af48ff590115ac5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfa0487e1788710a6efbb15ab9e51973", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3d7dba3baa3550eb1ea3e7945b03740", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a82886a3801222b2d719dba0a5428c55", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df9dcf50cc9397cfa367b0b41c48b9b7", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c70088f178db6bd976873d7b21a14ed5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09e6e1e9cc0a6076725e9d0dba00ff6f", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64feab3f1c397a547c635b4440551a28", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edc0061ed7f3f428336cd61d49ac5ba6", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d26ffa8dd8e286445dd62086a17b3b46", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc1aef2e7f73f041ca778d6d98181c57", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "423865a217cedb29ef4e68990037ed33", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67ad11bc26be56daa12da1e88b4b6a77", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d239a0af1a41577c2c87f1c77558563a", + "notes": [], + "params": { + "flowRate": 7.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f36fc609804100bf6a60793c120866d4", + "notes": [], + "params": { + "flowRate": 11.4, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.3999999999999986 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 16.4 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bb83bacfca232cc1024049a80c7d932", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6bdba84a07f312a456d1ffdd668df46", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fef4a9ab4f9668d68c1502eaaedd07aa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0163dd1f7c88d82ba557d17990b8c7f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "538980d87e6e178bc863b1ae412564b9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28472e9b31320d2d75fe2fc43ca7018f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebc929aed935c662c591af26b5f5f6da", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee27d2aba73849409b874babb49776c4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "910477f026e35a981075699dfd610c7e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c14aec62cfccf0d7c70a498881a0c05", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e4c73524d4178f3596ebf4a9430a128", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d1bfcca4c8674cc33d0e8123caa7aa3", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8ceb41a35d5f5223c46879aa5fd8d77", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b518ed3282a5c863972bd7afc1441e12", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0eaf354bab50f76dcccede75baeab009", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7af0886999c4bf9419ce7682c0b61270", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e49394b58774b36cbe7074d5cd322e20", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2732da9626bb5bda43d1cbbacf0114f1", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "681eb03ddcc1870894ef7a3365658a87", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "968d17b7b739d8c0b11d732e595043b9", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8db48a78ddfe9d1197ff11784d48e1fd", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78f874a694df8d0432f5b0e060160c74", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bfecc27407ecb587dae11982fd236a4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a54e644d56a7644d350acadedf2eb058", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10295171229973747dad33c9986a434b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95cb4e009362d7fa5c76d314650dd2e6", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e48a51a16ce575160512cc627866900b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21fcec3f4f46ebea8af92f169bc09324", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1d0047845abcae705302fd24aa8e897", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e7e9701e6347236e61c15d5c33de99e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91ecb7dc816be42d4618b08080cabfe7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8a245a2091fe1184bcc346831ebf458", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "914605f7dce778cebe00c0f5c31fcadc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b257b91d4217a76414f209b6ffdd85ab", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5719de8a8c4f916fc4d610bbe9a76df8", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b878d16e0881e9b9c69a07261d1d7b5a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4006d08ae27ab1068a47f1b8f9c30f0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87ecd7b5360d0f990a85961850308194", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "451750e0d8511ab22b37b42bfecadba0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09d84ddb61ee100951d1c07884b1a921", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89103a63399b77e36bd8758e3acdbc89", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c53bdd9469939e85809df6c1ab95979c", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "593fb9dd0ae5d2ebdd5c40d99f637040", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2105874d1176ea2ea05c77d6ac83eb8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b00f6775de9460e2a9030546db702b1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae5273b2f9f9354daf79cc2d2a37e780", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bf055a5ba5742b1330c4e41b4af5c74", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de2515314aa17cb131ab8605c6b8a85b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "975a5e8eff957aaea64f3556dd57abbf", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f17b6f8ec115a0d81a24f4cd7036fd8", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "848d21a824f7ef4d653699c6755443b8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90e3bbf51fbd147f94704977bb2125c9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3dc2333974c81a98730021d2d53dd716", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbcd9f0dc46191c8169213c3d1715920", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 72.5, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dda801820b5f2dfb7ead40c61b262f0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51523f80640f16faa8aa85391fa84d12", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8fec2501fd4e72992e9c8ea9249846b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d270338d1b98ca12081fb7811742205", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ff0c7a2f474fc3df9a6a2f34bc99f46", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e1ed16f4e0ecf3c09aab7bf12ad61e0", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc2a5ed5cd40c17a40c5ad6bb1b3dc2f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "918b9767776e7c18fd06a41b138599ff", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2842391bd1f8bab74b0ef1c8ef14afc9", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79b055ff0d4e0ea1aa882a022a030e66", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6b5b9747eb26964b629a084bafa33b2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2377ac0360c072afe5d03fe28caf7501", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5788b9f50494cfb6ea05f43a222da9e", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d92eeb9cff71243f3225d8b021912e80", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e69e39bf920c162bf90d81402a4ba50", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00c3a892d0cd8bbc3428cde91106f97c", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0f33a042cef82d687a8d0d4955b5f8f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff18963c6d4f693a8d691f7f363351f5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6822a269f49903c042b52bcfaf9b7e2e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa6fd8e3ccaae2624fe35dfef70ffc21", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6488534fb371d909c48b13c0960f9af", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a6474943b8bb565acbab03f0bb074d2", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2c796cc101cddb1fc0daaac9b9cd0d8", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c79c8b4e78ed2ac3efbcf077e2608b8", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd4ac7683dbeb9aa0b0977096c5e4aaa", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d86294088277e4565e4377b10adfeb2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45d7c421cfc342bdb3f10e2f11ec885f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba524fea8903547ba2977c96189425fc", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "028b9f56f1c1306de4e05a013083e1ae", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d0ecc79e82e324958f4c897e1d42200", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbdb27bb41360d77becebbebce54b8d4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce4d201fd15415b699866ec117092b29", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51e1fd5f93a9cb9a84265f26c790f22b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "224d23b379e3a49c32fac46de1a2023b", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff58d444dfc0fe5963f475ce09b92c2b", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0aedc6d197ee2a051b94185a0b5a7930", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07ae6622f28b4673929495aa94436b96", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3cb4d41213f599a2f53f2cf4f15e37b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc96258e4599647b64583ebcf443bc01", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7bdd43161dcd40fced5933b76050bd7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c0901c8d994a74826a6cd99d1504adf", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71adaebf6ab8e8fb448164888deaead9", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "305bda33d1fd231c19e2f4eb45c98fb3", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e03e7232bdd0f4de381e13b9f75c3352", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5599e69a9897d0de22e52b4e942f0fae", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fa238d840e884e6df22e8e60b5a112e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07358739b6ac7966d6dc17febe5314f3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c1a605bd7b9272e29e9fd015440b377", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "137491c89e3f9fb97fdecc565aa17f7d", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82c7f21c4e99cb0ab746804fde4109e5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02c55564eb0c83e38ea4c108e62a9b82", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c3c8bdc00adb1b5320e26377c2d172c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49e2f0f79d97b36e5be74e30ccec97ec", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5184f9c3d32842bfd0d390e0efd1415e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31e34db070d4307ce2a477bc7431a0aa", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 107.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 15.800000000000008 + }, + "volume": 107.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60e27abac791bd5e801a11da51fa657f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -5.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 89.75, + "y": 123.87, + "z": 47.699999999999996 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99ce6209428429a9d8a958050503996f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 48.459999999999994 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4b5c2d83f909be25dd0a773c8892e0c", + "notes": [], + "params": { + "flowRate": 40.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 48.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8507c0af0250f79d52acf8300534a903", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "833a47895a945d122c708e21b888472f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c03a536cf8ea069b500abceccf6a133", + "notes": [], + "params": { + "seconds": 60.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "494a6bfa9283695a8f77ef22b42d2c2e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "616c812cb585774f4c2bbc5c545a26b7", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d64625efc3ce0de5cf30ec746fc5fa8f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb761a40cbc3e231f57f57ac0a3136b0", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e4de58615991d3db369560fc8bd7139", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9710f23e8febf38583e6c52eff128329", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61dbec1ec76a7d549975a88e5fb3d163", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "454d7e24fd5ff7393e4f644178fc5899", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "baa33f51ed76b64b73cc51ba0fed2458", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0020be814a16161c963440c77bca5a2a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcf6bd710e367c13dff416a97dc6db6b", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 65.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "955f13422fb0e7321c0fef291cadf99d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c082a8d2df377abaa5b01c99083ecd9", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "548f00ef856ee310526c9988cafbe181", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64630f7972d8c0da390d91b3e083dbba", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0027141a43b086206f35a494c32ae4c", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46060ca9b22ba7dd6fa2f023fb84ce65", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05b0c443f547dd3d6878a046b93aa076", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 56.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67cac1d80989c5f8bde317a4366b0c7e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9592a27a4b9848811d4a8b7fc605e96", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "226d9684b038956f024fa3669311d6da", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbd60cf684da0db6a9640908233920af", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a4ec88588e2885a750d021e87b7c2aa", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1eed80d97e43b05f80c77d39ad08e48c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a5df2306036f74d60269e35327f3965", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 47.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c7b6f26ee659f09169a52067505f2b7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dafcc21c01da2f981c705d9d775b22de", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a77e3d424daff5f7f937388ab764181e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fd235f77c0bada4aaeb1b02d42e3ca5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25371018c2b90b7124da2bdaa7c3ac02", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c54880d4f4b61b80c55f44949231d06b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b16fe40e58a2c3887772875fb80f9025", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 38.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6424fcc300fb8d4875a35e8912448d8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "455c1300fa19dbf21a72331feb8a3e3d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a6ccc7b8939a181c8c6f6b53a8bd5d1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "481d5ad0813aeac45459ac77e752c8f9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5742a45c0c58e61780e817f055d0f48", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1871356ab62ab46385a8e51d1dece2e8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4881031e9d046eaf212b5b3180e021cc", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 29.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0c9a5e9cc523c896abe2d8ff83e5260", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd6a231e8c99402ffe88b88a90e0b244", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f83a60beda1a63bd0e02494f8175c395", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a88772e414d3ebfa5892be3d52295b2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a811f8b5407dc8c3e9f8a9dd0320d02", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53fd03532fabaef09b022e7c1b85ab83", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "433067143252c05d63c1a951d5171aab", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 20.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e54250389c390c733b9cf8423ee63b89", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0adcfdd29b72a47671b2fd17d8fbebb", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11e2e68f5643f2bc4bafdcbf3514b7c2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae012b780177be54b3b6a9858aa504f9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81ca54407698050d7ba0dd558089fab2", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80bdf0f297e110d1be46d6f73afe85a5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a86ee6583ae8ab86545fa19940116b8", + "notes": [], + "params": { + "flowRate": 179.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.849999999999994 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 11.24, + "z": 35.61 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe7fef59559eeef45998da2b2b3f2b37", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75ee4da2ff3d3d37dc804dd5d74cbfa2", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f0bda2faf40bc6931435efb4f71868e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83ff228d4c39cb69a59810510ff8a69d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27da16d77fe67573e3a7609ff47f0eb4", + "notes": [], + "params": { + "flowRate": 7.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -14.549999999999997 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 35.91 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c36d02994c07088012a16081843f345a", + "notes": [], + "params": { + "flowRate": 8.549999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -2.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 14.0 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79c11a70259ce08e0f7e545a02b592d1", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e501158b2253a0e3c72c0efc6738b23c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82109cd8d15f9d7b39842622f768dc12", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "D4" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31fad7ceded206c655b283032f1cd35f", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc69a145398b53e384c27553a3ef5b2d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48ebd0efbb3fdb14248192a6b3f4226c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30821aca58d2c42c364cc68d46addb5d", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b76e8b042818129280ce146c6515d860", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd13560c5c9aae3a12ea648546e9a1a2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5e105524c2b22e39bbc1632cdb82fe6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b6e731b3968e5ae316c145c9a595c71", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83e15f394f1a5b47cf6fdb479ea61c10", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23a4d61f8a705385fb72f114ccee2b61", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7305f96b5d72ef8560caefcd8e11fcc4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e2e1970bdfcb0b09cf65853df6872fb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3316f37d9e89470f628561f4210c2c38", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02999e9153dcbec0822987e78ca7a5bd", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bf5f8f53b0e774fdee71cd539a742a1", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8b89c62d4f424033e1b099e78afabbc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45f1de3d584a31dd01754e8a34ccea85", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e632b531409a643ca1a1ecb86d7dc3ec", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2161248859d6faeaee6ee7dbd6aa3e32", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5341709d5e25f788354411316ac9f99b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f293acb1a0b90af91756deb1fb18900", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46ec79f6628f38edbc07449e7c6f69e6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1d842a2ecc4cc8f6c6d42149cc2fd6c", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c25d2bbc82689e337cc143a7d90ccfb", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73808cc4bd6d618f0a1bf79f38aa1fb1", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da5da7f06ff0f595cf641d4aec1deb11", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0ab567abdef77d947554b1e45a0c4af", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af7216ca5fa47bd36c87a2456a7c0f98", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94922627a5bb5114ef9769d706a4948f", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f86cec72c3d217a01efeae367891e73", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d666226873292b35f6543c1b2b522ad1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "295f3eda999ecb0758b5dc4c67fff980", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b7ea5640bac8f7d6d0f912876dfbe73", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5370f93669ed0ff46ae32e7cc6bf5447", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8f09c8aec38ca86b043ae026dbb5f9d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c35b21d8f4c50a455d84c127ab29ee22", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62a3aeeaf7fadc3f4d2d572e0607b24e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "676f0f4a46174cc1fb9487d95f1e99f7", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.62, + "z": 15.800000000000008 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b70313ef916e5ff17862f5e334c8c5f5", + "notes": [], + "params": { + "flowRate": 107.39999999999999, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47de19e39954420605189c3ee39f4de8", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99b2e79d56af25b885305f49460e3bf5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf9d63db0568b95b6b8a3fdf2396a7bb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e943bc670f98b6d0bf8eba070a4e967", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d6af845ff48d0f47a1a3845c8b58d04", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b713d6e1d2f09a11f7db686a2e413ecb", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a094cae8f6d094a4932281602fd82fc", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9898441dcb5f86c6239a839ebfa72bb5", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32932dca8e7e8872f26767688c1b0133", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f67069e577eab02f193e86e8bb23ee9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89f68260be4376e9c320cfbbb84da6e2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f2732427013b45e16a0768469b99189", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba97093731805ae26c77c20720553ae3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "089b9b01418eec4fbb5bf2142413f6be", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7be20bc5f51b4da6771c5dc969391987", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35aa86c5649ac4c3faba5339a7896407", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f62e0b1fb10761d27afd35845ef14e2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6926b72f79fddb20c008361504b58dd6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09f16c9295d85f23207d0f5bc8db7436", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6413f599286c201ab26bb97365a24984", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1aed1a630db276b7bf1dbd6b3f04042e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cf230aeebfbcd9298748a3b65674fa0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0862624213e88b480a9868c8883fa4ef", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 12.4, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 12.4 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c13e82d3e801d889f15d666e035123c3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.24, + "z": 15.0 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "107017823514af68b25f907a11595214", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0946149c732520947be4370bbddd2817", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1f73c4e1b9e9fc22acef3747aaac771", + "notes": [], + "params": { + "seconds": 300.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d9158b64c6281c73fa3cbf8648a1aa2", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "moduleId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "magneticBlockV1D2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "magneticBlockV1" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6ae0dcc825460c3bbf28654a8d260db", + "notes": [], + "params": { + "seconds": 180.0 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f341ebfc7edc3ea38aa216e4adaeb1a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a59efb94a549eb02b2ba60f720563d37", + "notes": [], + "params": { + "flowRate": 8.75, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ec98cd219920ba9f9736fed8dcfeb1b", + "notes": [], + "params": { + "flowRate": 14.25, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.949999999999996 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 36.510000000000005 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59caffd448691e7d802869de9228e5a6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 74.24, + "z": 49.459999999999994 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57f70aa0a717ec3d3781ef896da800e1", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7506b24a371835ac88d5cc238a29c0a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 20 + ], + "protocolType": "python" + }, + "createdAt": "TIMESTAMP", + "errors": [], + "files": [], + "labware": [ + { + "definitionUri": "opentrons/opentrons_96_pcr_adapter/1", + "id": "UUID", + "loadName": "opentrons_96_pcr_adapter", + "location": { + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_24_aluminumblock_nest_1.5ml_snapcap/1", + "displayName": "Tubes", + "id": "UUID", + "loadName": "opentrons_24_aluminumblock_nest_1.5ml_snapcap", + "location": { + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", + "displayName": "Sample_plate_1", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "addressableAreaName": "C4" + } + }, + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", + "displayName": "waste", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "addressableAreaName": "D4" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", + "displayName": "sample_plate", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "moduleId": "UUID" + } + } + ], + "liquidClasses": [], + "liquids": [ + { + "description": "Nuclease Free Water", + "displayColor": "#6699ff", + "displayName": "Nuclease Free Water", + "id": "UUID" + }, + { + "description": "Fragmentation End Prep Buffer", + "displayColor": "#ff6699", + "displayName": "Fragmentation End Prep Buffer", + "id": "UUID" + }, + { + "description": "Fragmentation End Prep Enzyme", + "displayColor": "#ffcc99", + "displayName": "Fragmentation End Prep Enzyme", + "id": "UUID" + }, + { + "description": "Ampure Beads", + "displayColor": "#cc3399", + "displayName": "Ampure Beads", + "id": "UUID" + }, + { + "description": "Fragmentation End Prep Master Mix", + "displayColor": "#00cc99", + "displayName": "Fragmentation End Prep Master Mix", + "id": "UUID" + }, + { + "description": "Adapter Ligation Buffer", + "displayColor": "#99001a", + "displayName": "Adapter Ligation Buffer", + "id": "UUID" + }, + { + "description": "Round2 Ligation Enzyme", + "displayColor": "#ff9966", + "displayName": "Adapter Ligation Enzyme", + "id": "UUID" + }, + { + "description": "Ligation Adapter", + "displayColor": "#008000", + "displayName": "Ligation Adapter", + "id": "UUID" + }, + { + "description": "Library AMP Mix", + "displayColor": "#cc99ff", + "displayName": "Library AMP Mix", + "id": "UUID" + }, + { + "description": "Adapter Ligation Master Mix", + "displayColor": "#ffff00", + "displayName": "Adapter Ligation Master Mix", + "id": "UUID" + }, + { + "description": "Ethanol", + "displayColor": "#ddd3c9", + "displayName": "Ethanol", + "id": "UUID" + }, + { + "description": "Ethanol", + "displayColor": "#ddd3c9", + "displayName": "Ethanol", + "id": "UUID" + }, + { + "description": "Ethanol", + "displayColor": "#ddd3c9", + "displayName": "Ethanol", + "id": "UUID" + }, + { + "description": "Ethanol", + "displayColor": "#ddd3c9", + "displayName": "Ethanol", + "id": "UUID" + }, + { + "description": "Ethanol", + "displayColor": "#ddd3c9", + "displayName": "Ethanol", + "id": "UUID" + }, + { + "description": "Ethanol", + "displayColor": "#ddd3c9", + "displayName": "Ethanol", + "id": "UUID" + }, + { + "description": "Ethanol", + "displayColor": "#ddd3c9", + "displayName": "Ethanol", + "id": "UUID" + } + ], + "metadata": { + "author": "Vasudha Nair ", + "description": "Fragmentation, End Prep, post-fragmentation and end prep size selection , Adapter Ligation, post-ligation purification, Barcoding Round 4 protocol using the Flex with Parse Evercode WT v3 kit", + "protocolName": "Sequencing Library Preparation using PBMC cells" + }, + "modules": [ + { + "id": "UUID", + "location": { + "slotName": "D1" + }, + "model": "heaterShakerModuleV1", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "D2" + }, + "model": "magneticBlockV1" + }, + { + "id": "UUID", + "location": { + "slotName": "C1" + }, + "model": "temperatureModuleV2", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2", + "serialNumber": "UUID" + } + ], + "pipettes": [ + { + "id": "UUID", + "mount": "left", + "pipetteName": "p50_multi_flex" + }, + { + "id": "UUID", + "mount": "right", + "pipetteName": "p1000_single_flex" + } + ], + "result": "ok", + "robotType": "OT-3 Standard", + "runTimeParameters": [ + { + "default": 8.0, + "description": "How many sample sublibraries to process", + "displayName": "Sample sublibrary", + "max": 8.0, + "min": 1.0, + "type": "int", + "value": 8.0, + "variableName": "sample_sublibrary" + }, + { + "default": 10.0, + "description": "How many pcr cycles for indexing PCR based on cDNA input (ng)", + "displayName": "PCR Cycles", + "max": 13.0, + "min": 7.0, + "type": "int", + "value": 10.0, + "variableName": "pcr_cycles" + }, + { + "default": false, + "description": "Skip pauses, incubation delays and reduce mix steps", + "displayName": "Dry Run", + "type": "bool", + "value": false, + "variableName": "dry_run" + } + ] } diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json index 0b9d36937ed..3906fd0c6c9 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[baf79d9b4a][Flex_S_v2_15_P1000S_None_SimpleNormalizeLongRight].json @@ -1,3 +1,126529 @@ { - "error": "Analysis timed out after 120 seconds" + "commandAnnotations": [], + "commands": [ + { + "commandType": "home", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50c7ae73a4e3f7129874f39dfb514803", + "notes": [], + "params": {}, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9cac9dba72ab541665f112752004fbc", + "notes": [], + "params": { + "message": "THIS IS A REACTION RUN" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c70a990bdc4d6e06f98204ffb9f5b3a", + "notes": [], + "params": { + "message": "THIS IS A NO MODULE RUN" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08eead03f33b44adeca9012d3223a752", + "notes": [], + "params": { + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "D1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "360102" + ], + "links": [ + "https://www.nest-biotech.com/reagent-reserviors/59178414.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 31.4 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9" + ] + } + ], + "metadata": { + "displayCategory": "reservoir", + "displayName": "NEST 12 Well Reservoir 15 mL", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1" + ], + [ + "A10" + ], + [ + "A11" + ], + [ + "A12" + ], + [ + "A2" + ], + [ + "A3" + ], + [ + "A4" + ], + [ + "A5" + ], + [ + "A6" + ], + [ + "A7" + ], + [ + "A8" + ], + [ + "A9" + ] + ], + "parameters": { + "format": "trough", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "nest_12_reservoir_15ml", + "quirks": [ + "centerMultichannelOnWells", + "touchTipDisabled" + ] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 14.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A10": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 95.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A11": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 104.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A12": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 113.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A2": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 23.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A3": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 32.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A4": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 41.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A5": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 50.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A6": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 59.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A7": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 68.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A8": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 77.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + }, + "A9": { + "depth": 26.85, + "shape": "rectangular", + "totalLiquidVolume": 15000, + "x": 86.38, + "xDimension": 8.2, + "y": 42.78, + "yDimension": 71.2, + "z": 4.55 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "D1", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleLeftSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc97fa7abe20a61c5b7652166b8b4396", + "notes": [], + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "D3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "D3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5141b52da1fb1d09a21f8a65ffc09a18", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C1", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleLeftSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76a6ec260b13a865ec031bb1d86e4cbe", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9691185c5c9bf291641a27a39ba0e6ca", + "notes": [], + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2dbb80729f8bc9cfaffaea9d572ad70c", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B1", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleLeftSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a502d86bc2fb6ce29dbfda66729daa02", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39ea7394710060bd01f81228ab1fc249", + "notes": [], + "params": { + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "NEST", + "brandId": [ + "402501" + ], + "links": [ + "https://www.nest-biotech.com/pcr-plates/58773587.html" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.65, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "magneticModuleEngageHeight": 20 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.2 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.66 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c066837fe9d625127eef504d39287fa2", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A1" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A1", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleLeftSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a27078c86e8c0211c6be1e3cd6980fc", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8589558225cb4b340558fc58da4729c", + "notes": [], + "params": { + "liquidPresenceDetection": false, + "mount": "right", + "pipetteName": "p1000_single_flex", + "tipOverlapNotAfterVersion": "v0" + }, + "result": { + "pipetteId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0df935dd9ba5e5e8cfd3a3fd60e8c42", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70917c4a0e328dc8523bbc079bf05bcb", + "notes": [], + "params": { + "message": "Adding Dye Sample Plate 1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d73bca4e989bb978dd83c8222302af0e", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8aa23a2bb3fff0ca3df42b456dd8ece", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6740560d86e7b4d7cd3cb66dd983446", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eed510a910e9534fe9936dabcb751f53", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c9b72e4072e9b2802a8377ce63721c4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "998630f949310e6c916417f6259eafc1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6dfdd5c3be56fa64aad020c78c947a1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "925e93dfb7472964d996c56196d3b2c1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64db84e734dbe13e9ec67933139bc4ac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc3df3c5119651d72ffecf2434ba61ce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2da511b11822959860de445fdfc4026", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa7b9013d36d068ffdb003ad67ec3f98", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c4061552279f0e18a5c987233313021", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49ad358af57e802c64f21cf35949da11", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afddcc822f8e37ebed1e8f6caa8d0957", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7dcdc22a29f0b27e8f550da86e52ecf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "167a5d5620ce6366c44f88d6e2559050", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1363f968756897d3598acaf22a406976", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b33f977085eafe71a25f839cf9e801c4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eae727abd0f5d5e3243f8ee21b937b75", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b66053bcb9bdaddc225055e76a51769", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a191557d924ae7ff78241855b6a6490", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1a2233b86d6077404965388b834dac5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f643a025d2545908893a90ad1049ef5c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26784f2ef75d545d8a06e64c0d076e29", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94bcfbb1e7c6ac60c263f5c1cc9ac51f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc63851f76b64c98bf2ab344c4136ed2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af22cef15f1a2016d241473471a41c95", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8963daa0cc76e971d7f4b48f5d874a1d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71fe0c63dc0073a9efa67ec88c94780e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8d750279b604d028ea153907d21ccf6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d451306fada3b34aa36fae3c460a9011", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e05c70ebee6232af14504fac0e1b9fde", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "577ff168a8dbae67714f298ce79a34d6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0039411de227833e5d03bd35e52710c6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cff5f9c876b49ad65846191b0f1853cc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b82ba1cef51d265a93a36560cb41050a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b23274fddb4fb19c9de5cfa57fd1236", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6cff253adeca0ca5522a306dc12c508", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95891442bf06088ed1e59d4b58a6c3e9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0585307ad1bbff5f5253201c8fd6a0fe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b04135a844f5ec5cb81bdb078d8b044", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "502b2e57dac6fb4134a476550eb25418", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7aa22291b42a51fd91feed5fee118af", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3d3a0c8d5251c623643f4bfe8729100", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4d75ead4e9c1144ab029b33f4e09162", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dbdce8941a83011f9e0041f7c265a7d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75958ae42e3d621dfc221cbe575e29f1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41c54df51aa3e841c348ada2ddc600a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "166c08ecb4199074a56def495c9e236f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f9f53f6d8c4f80b77dfc7720eb74baf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "250fc12309ac72acca1d82044cd4bbaf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4af3ae57559e149cc60f518d1f782e74", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b8f37ac9382960a9a5d3c3a582e3845", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed924c8e36350349e04dc9861fc00363", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b2e615e311a5e55ffae4d1dfc27999a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4aecb4d5dd9d1aa952ce2ff81e349a27", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3cfd70c18a25e0ceffa64176e12ae459", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aad32bdc1b5e14b1043720fabcb8a341", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52cbc15324a5d280d9ca206699989404", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eafa0ff6c57f86d6fbff855d0c6d02f3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ff5e0f29f4a10d658a4a66a85144b11", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd898635d2f022c510d6beadf3b9a177", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07431589b91b160e68caf8b9010383a1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c802a39f1677546c04c50a57a0c5eb0d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37d9dca37744612cb702b03899ead087", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "143d05105a6396d681aca7eadf0bd0bf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25d87d34a353f47fae1a5075085827a8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a28377d24604516e00b5d6d59236b9d9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfed6985ccdf051424b710736e3050a7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0825fbd7cea13107761cb4aac1fc6e70", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36d7d376032acb2364e24c445cb88b12", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acd87db5745b5999ddb9fe8258e9b666", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5c7fb47f823fde6a3d8467873a503af", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13ef332b3bca718eb963d96ace72e4ac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf7c0ad330b8a8a4acddf3632078724d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "981801921f126bc5f99ed09c6867250c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c69da1e812dbb79050297732b79173a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be3ccd6568ac8e060be3ced633168013", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a14e8406e1891ed4858450d2549711f4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bbbbd56c8aa036d1ff20f7c3d41e908", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c57048a0e9bedeeb0931139aeec7e81e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef2a00e1e6afda6754b2f52a26f52090", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fc0c4045c9e3f2b96a7744a4794003e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f157af31e19a44fd743b3429aa681af", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b35d98faac2f6e3046dbb745c1745c4d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d47a6c63ad5732bf6f1af7cf7dbd68e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d70253c20cf22f8daeedc621db69a82", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "460832850d9302f89948daa4db629be7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c30dea3027f84ac86e4ba7e4b489696", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e811bf5dadfae47f7b8cb6a7752596b5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f954106eb4141a259e8e00956529159c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52c8d14444f31db1025d1cbab14474b6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c22c8b73182d307157106a31da9ff085", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cfd4a9503150c154690691d1d77240e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "220a587da64877a5be33108e18210849", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bf6012b06511d1b1ac2d7f085a4fb88", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7c1d9241a3ea40aec24f67aaa9355e6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "309248cd3f6687f5e8534f8f3e4f04a1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7e09cb6ded07c824683cef4d0b3fba8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ae29956d46d723286ba795d1c169f56", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2946514011c7a803ce73dec6b03cda8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3ad57b3a4ab509c21b2c7110c8bfb56", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56066166954042ab5ae90122d2ad96e3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f08fa050fdbf9d68f7891d52c0fab894", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5feae9d667f3799eb15be21dc66ebd7c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e3b22332f56c866f3a649d0a9dfe878", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ac2e05d55908ec223e1d653e852ddeb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbde1d6cb7b88abf55ebf67bf0deb647", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea81c0737dcda63fe8b4de9110fff07f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f7fd1d0b2876da8450c2208057a1f47", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0072e28496b0fe9598d06bb618b48228", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c14d7383460ddb545500b46764ce5951", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b28ee5e9a4b4fbd5b0c2e241911f3f81", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07098a39127294790ff36d05a4f66d65", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "037dc63efc6518adf10b67def8b32dad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32e8ceede37a8d6096c75e4d51a422e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a60089be7d60660e68eb7d5ac022677", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "763eefed581943b906fdb1f1b1083851", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3958a7accf47f537d42c24974319982", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "357a3834c482fe0456dd097058fbef4a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c71c1a85d024212a3bf051ce14ed3893", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5828b5f94940d791d0fffed7c0726b34", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d453e14de12a3f8de0c179069060e99", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "629d0ecb65eedd6b7829803674711ffa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59eac37c3a3540c5c15ca15f687e603e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fed40ef6cc668e806d7c51dec1330059", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bd8d975aca9a3c487a2bb70ef979b78", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc001073496007707e6b7677b8c3ac04", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a71df09a1e434e857f298fe88394b80a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e8edbe223aacf03a9366507d59c74fe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6cb0049672c9781c99061884703083df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f3488af8a22d91acb05b9c49e833c2b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "627312fd69ac0e830dcc71ef972332cd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a44bed4838a1816399029a92e48e5a4f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6369212b3ec470c06b67b20c6204034d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c11642aff6e675865c125a636b0a365", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72111a2a2dd00babb8eb766e81d4eca1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f6fb3e393bed8ecd1953f0f14a23db9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfc9c8188e7780a240f8fb784fc059a6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a93932a33ebff12e9f947df4062268b1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "277c9788aec4ec4d90b1a3cb14bdd08a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a94af45da1a7efcad4a3a7c8ac9fe8f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50f3a623a5f19f22975ef578ec677e9d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a7c52f6e3760676891dd5cf92cc2c96", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f5ff115c93a22bb96422d3919086075", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a136e7a012ebedc069ae96b88b491034", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e68556c5c91dabf48c00ca98fee38b94", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdc39d8aee981d4e76fd805ea3261e20", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a88fd98f536c5d569c4d1bdfcbb9d72", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8a9c046245953ee76b8e90b0e8aa5c8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22f30e0dd8fd921b271356b191dc3e8b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1637df839cb229e98ec9cb85cabb75ee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f8ae59d55cf78d93ba59c20cabf6b4b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14451977b2dcad3cf2e507c29e8c00ad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a64b961e38af31722969d87db7aa5903", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0ddd76158785a8a4f260b6d3776169b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dc1c492672a980599a5b8599d9adbdd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cac1fd37151b2a3758eca4b20990b49", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a40c6a532b6ce522f12d169abb16beb4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65be83a490f70769db7652281c398f68", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebcc87d8ecdae69be27e3585dd723dfe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2df324c3a0683b8bb8689cd32fba142b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80e3f2e4791fb2227ba77c58091c6d40", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c53ff22db8880e1e63c896b29721371", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11a70c8a92bbbc282b162f2c071d14e3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51c637b44d170a366bd42b7d2a729d61", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07e70cd1489ebd3d2d89a478eae9e597", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "732dba477967c4bd1fce6f60f622db84", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4fd698978b83026706e8121cc333e62", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09e6769476844d96b9a42383e8d03f5f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c319867d21e53929b26604e8ec988a5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a51877b9cb020b405dbc948bf7d8f1e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37247d7e967a677c66f5449f17b99f65", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6177783d889394a1362ed125b90a6a97", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17020365d876d68ef62b0d258ab070bf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3be98565c1a2034f300aa51cdf49df3e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c755f6efcc35b11df2481eb0d2a2bd79", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94ea0bfddc7e8758d09232b471025073", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f147b432dbfa02f8ec003c02faea45e2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "639443eba792451b6b5f04fbf680bc41", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30a2df90f95f9c03e7d1ea91a64e1326", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c912b68e2efde47c67177b69b2af963", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee09c05e74f4cf6186803b0e593857c4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83848563d8aa43a15d4052e92275afeb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50ceff11cffb0667c58e8aee497070a7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd6a827a2d4983714755928772b20567", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8ee88c8254019b29a81f5ffb57a446a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9dd96430fa3ed4812a1a632cc9ff035", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8642ae8c835ec3c2f3af40a3a6d2252a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd5182ccf2d8c50e958f4aaf7ce6c2ac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61fe7a56bafdc54ea1ee62fb0298edca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "018e23c800aa952982774023b2a5d23e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0645645b385572dbc8853a68992bc98", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "184019e2a408c0d35b4732266ab1a00b", + "notes": [], + "params": { + "message": "Adding Diluent Sample Plate 1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21579a98752672fa1ce16a3c46ced90e", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1180e4f90ac8b70488744d2a4709930", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e66745dcbbc3ff3293e2fa9f52c0ffff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17a8d822202c900d09774a6ba6a68f35", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5df390ef91376e1d849e8f67a38f1726", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae457b47ee8392e7200136d473830a35", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0711db879f61b95130c504511a493cc3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11568f01bca53912716341ab4297c8f7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f29a18d600e077994209dd0c6dfc5bb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d944953538bc7022427d4d64cbddaf8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecc744d0e952d860b529b360dcac5936", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7049f362f52e0d7650dd5dab86556ec8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8ae09e2534bdc4665ded300df3a6994", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e20212f3d56885a5efcadf190a88473d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c540fd9011e514b5786bfec53ef348b0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37bb97f6b6a928988227c1876edb6d7e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a363b3a2d2571f020e09c3640b9a19e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f326089bd179c4a336080f1dcb818d2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bea1a526e8099e0b16aa3b9133e84ed", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3667bbb5dbe253e3b670b6f496d9f0b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44c73c0c903d9f32e1d77fb6661ca79d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "998027c26e5ccaca33abf939f777301a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f67c54e35e5e359cac55a3dc823f10c9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e9d560793dee06ad1c68b87531fea19", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b44babec8cebb39b70e873c5559320e4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0456033e3bd795a74b0ba7d3de87d61", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "902c125f6276d59e7546252f4aa6c3c9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68b634c71d8a25e9c2299f5e354dfa8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66ad635e934b1ee137703ae600858921", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b49b64e7d6a9014cdc5b9637912ecdd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc4252e20119f2e34db0aa27700e0c7f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0030418c0ca8ec1e33fa305a01e115b9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c554816d9ea6c0e3dcb5d832cd7f4592", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ceb4de79700af8c03d08506d44d7e0eb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0431319325636d68477c34078b1fc843", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce8bf08f51217375129b15b37efdd1fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cd55c63f3b9c80bdf9f44142d6b39a3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca0f2158f73a36628d0b9c9931ef3a9d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "790f4d6185447282803afa9d9bf35bec", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd554684ac72b5a0db5eaa3bdef9183b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bba8c743c88cb8ff5b5ce36f6fec4444", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df2209eca37e37560d43ae1d0cf7743f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c396e6f4a26593f62f38eb69b0b49fdd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab1a70d971c50c05dbd8aa7201a4facf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9abf324509d3cd25b0450c6bf0617c98", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "242c0e863b9cb4950bbe0bc30462dbea", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35d5d2c050517ec9b9a0cd4c09b8a77d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44112f3075811b56c93a1040f51f54e3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26c924716d35ff14e452b6b59dd58df0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "674f85c052240356c28e99a67c9e5dc5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cd5518268f5ec603a56eb1382d1f3a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b38f3d0600df34bb192d85ec97896ec9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f308126bc02d5b0125eeeb91df580552", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e3ea2573349994ae5e1e768dffcd8bb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebe61eea00f9860c0b1adec766ffd0c3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83024fcdcab2a4cdf3cb3c1ee50513d5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c1c0729a812aa1a56fd50f0163ccc48", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2ddf7f9ccbe62e874635eb9d365f92e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66d06b50c78967ea9b7e58507aac1180", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "501f966662827148693bde4e5be6233e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0090a97920bb0f94b303fe34765c8606", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "186496083bbc923f412f55c1d42cb0ed", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7520e74c87174a1aff7d1d70f9e5ad35", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae47115d5eed122499395243d0c50e8e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6e22a5bf1df3b837db957dfcb048c0b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c132f6c13db0621bee967815e930ef14", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5943b7e06135f8d738a3120935ab269f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d6d72ad467a4e4d6362df5b876fd382", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd2dd5cbefd5a10ecb14c2076a47632f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db48c27fb8386178794442d2cbbefaa6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0eacfc72bdd4d6e6dfd90eebddfcaeb3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5b87253de19fdb29f4d2a2fba709d77", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12a6a45aa9eef42eecae915b5dba0cad", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50cd6ef1b3ee8233deed0d71c52b5c5a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "595fd4d7ef2d31e7c0057ff932c2d2d8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9278d54f682e3f61434d9ed18ad24b1c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35d4dcae326c7864ee195141fcca735e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e58941fc239488127339ac36442263c8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06cddf2b9faa716c9bdd15460dc3841d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "931c6d8d1e23fa9f10cda0251001848d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8b6acd2de9604e9e2fa3187dad03abf", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6727cf3668344128826a9944529a55a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea7e9da1bacb58e51e0e98a18ccd161f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c750ca8fd7eea308f11b5db7016f5d00", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db2ec5db89240abca64bb8d62e8fcaa9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c734463364bbc745940f90fd7d8ff85", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2be5be3d25224c53c4f227b211b9c181", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b59af3dc2248c8a9e990d47106e16ec7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3966335bfdb070bd5959e7416c8e6040", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fac2cc70af92b18a5228aac9352cb96", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebb909fbaa05083dff074f53be727cce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2194cce8df0212365d4c1183920b4bd0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffcc93e0bb8412f61097c899b088d41a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b559f2ea866488844d834d50c2492120", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "451a77ffb682509288981027cedd41d6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b53ee3e81cd8a2a3635338d79668f04c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25deb40da94149c3ef4cf428f0f39b72", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7e3126c3dad76a999928d796c8e412b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3d22efe91b1fa9c7b018b3a28f867df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d28ead167196ca87a941d7a654a687c1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9f1992f5eed6e217660b33e82603ad2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c969d97c2b9d44f172f7552f5569a07a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b73c02ee11adba8273b7519a954b7cc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b71366df0cd925c4507c3538f208e5f4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5607b6a5ab1200756072ec69ba97d61", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b04096622774b2bd35d665e894add30", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5d02ff366f705ef37b89f25a848c955", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "143c0a0c3204bce87d5d234078ba93cc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99fbec96b79e363088225fdb5861a88b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe0b920c466c4d7ab95b90dafba206e3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43ec1541c2800d876448b7c0b2dd45cf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a67ea8600deaa250c75049abf4180851", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8983b68f9fca056584697a1ac521fc1b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2eb811e740724f84829c29f51741df4f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f3532dcadbe5721881375d83216cc01", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a2f18577622fd12a1e580b252a4b40a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed3d2fdf003b98f7e1460f113f8045a9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66287b41bd3710bf8d6ba052bb540d39", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "436ed16da0342f2658970067d6a23889", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37391ec839b892c1642473455b2352fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31e4118f60e292f97d6ceed2b30c606c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "008464a9ec3cc74f9f0cd4f2cbaf6677", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb126b17e074f341398b0fb47b3d62d2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66e2fb457e4ffd7eb6b3a27440fb304c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3426b43565aee8f66b186aa0d3f1c01f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b597942bb7516ae78cf5a03e3736ef4b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9755ae3fd57d91c8af02c17ca5604b8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e62433548f1549cc73a2c4b6ec1af35", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87029cd8ecd3b119388eaac71032de7f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "240a5afb1adefd7bc8eb47ce01f2eb2d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcc68e4492a10b08b03286134da41c92", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "090a217a702251b8b381543b991a4e95", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13db81ca570beb07f4970ba4bef6675f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26d6761be397713faf654eff4b54f3e9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58cd8a7b6b3e1bca95b2462f7b6ca9c2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "641bad1e93f8b1c3bdf3fdb2d6faf6fd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a219bf704f5ec8dba783ce3754bd25ed", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdf793e209ae85742edc3b87a8c2b5ff", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6a59f0abcec199dbc7bad1406dfae88", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9143ed4209f314eadd201ff1d87210f6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbc7d7db237960b1b8d7533a47295a8f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94c1a998e95813ed8507aa976667d338", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5380e476d4aa8b865e200bd0f42dfe0b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4740df17045b8360d004c261e370b14", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac240fdfa909f49428af9cf0294c3df7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c552c900e3c9553804d14fde018ad98f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8de681b41fadd578e7ef913247dd185", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17da4d2c1817448df6701aaad4cada8e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "760335892a37fdfd236aa6ac5665bcd4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39c456fbd22f4bcfb9cf613765964204", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdadac27358047b46d7673f558847f81", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38490cfec41fdae1a94620aa51c12dbe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32f30dcd072479bc8262579efa732f10", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec61a341a0a45ca8865fafaf9595cda9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4af6c3f6b191441478a75050a33eb14", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49b4011dd38240be58a94a972a34dbde", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b3f53505f45469b95ff655f26c08604", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ee918118f3961f1aebed4c0bed287c2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d58beda087457896737385ac6bb48e71", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "429c4348af6b19f165cd18bef5676a96", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4629b91cdddd4aa3eb844d285a6c1292", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1fb5088445e56d04ffb777e3e44a066", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a22f60a391039cc8724eec81e811fba3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3bff0606d54821180d55a88d968b8fc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27f7740c2b0f28b317e0a3e3e960af38", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a96bf30460cc7b8aa0d315ec2914687", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02ac03f55c67ce83ff976e7165bc3da8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fe0679c77f2defdb2f884349fe3eb8d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0940820a27bdc42e698949903c756fe9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7277d1ba70a0931f58e939319838beca", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eee0b03ef985481d2170b0a4e714ede8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89fecb896a5a0fc93e72bdfecd8b5cda", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1affd5bf15a5e83ea0db49ff0861a4a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce221053d104fbb8e55a09d40821fb57", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "008baf2319f1247d5cebf51e4d0fec6b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d7fd62311f23b3b229035fec8711c8d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3385ea7e8235e647bc18fbaafdf9a02", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e803e4d2b2a292b6080f0f1dd7788d3e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ac6ccc2af06cd4eb0cbf773ebbc62da", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dca42d53b214959ebc1d163bbdc178dc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1f2914fe80415e69036052504852fd6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbe881f2c2a99698eb6134b1bc6372ba", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64f528ea1b8c66978bc46c834a2f8291", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d03150bfae50d4a0ee35c90f6b18f54", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a50e325560f2be37a2edc6615dc55222", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a79c15602bd4e46274f126ba0d7c7fa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be540f11cd37f1efbeef11bee5f33a57", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb29e33737f6ac70140e2e622f6eae24", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b414ac4a50cbf4bb19cc2ecf2eecb19", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "577ec3e50d0ef983e0197e3d6f8835c7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0947d32eb6fb4fe6e44ac7624762d666", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd0466e6b0e834b523fe9da6c3968860", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b57d37ddbe93d0244e3901c3c982a034", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6005f580dc65d333aaa613297a3fd6ea", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dd84d4fd55efdb189b5e7835d11f726", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb667be1b1244647bf6d73ce7e90b561", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4200c2d3d64c708988036c5fe90310a4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bcf1133697fa1da5a46065255dbe9e8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c77924afba8454bdcb07cac4fc4802c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b819177b8f0e67aadebc776ac2c8711f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09f8d38177dc97a59d808b3a7405e1a4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f0ede49a44681c75ce06e09c152462d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53163e0ba9129b88eefc3dd13ce35d7e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7360d3b3724a6e5e4a17ccd51f8fa043", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ade8dada2e36e54a04a8c13998f4ef9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ceaf9f2a9a6acd536604f9ea0a80fec1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce5273126bbf85cfc025a0e0dbbb820f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f6d9054cc2f5a391e9efa88188813ae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc4c172f55716bcbb5615176bd7aefec", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "172f7f61f7c5bc7ba02dcf235d179fb4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbf26964cce94d0379af7e44b5c62db1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35a3f0a2a3a43add8e5fb1e6b93c57b5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c20deeb353055972d2e2fd77d8db8528", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ca45add974f4193dc5033c2bc5b7a68", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e21c4f4480dd7caa8f63291f756e4173", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ed751bb97250e7dfb164f6559db6958", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17d680f7a9418fccb650ab52af96a498", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "384234a4a8aa3d63a937e9dfe56c3f95", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3215b796e413bce312be4ba5e5f46a0c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "123759d874a29aa79abf29eb54b73af4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "013c95443d62e50ef194ef1c571f3970", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6711b9ea198ca2039d40496c8c2ed1d7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d32a28f0dd83f0e5eb8333b2d670a79b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62c05779299b79b55cc71ac1f9f91d2e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57cf58c070d7e53b45cea7be27132cbc", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c53dc48978c40347bcace537f4f3778", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6ac81ad9fb86a5ba0a12a421691e0df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebc4f566adaf99b20a5b296a17c1c928", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f32565125be4eba5b721928a974d45c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f08b8183d8afce8430abfe92cf2958f6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59861b484f6a4ac0e09c079c03fe9541", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92391c856590e0fcbd1478edd9f7ad9b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fff0dd206167aaa9bfffdd57756ca169", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f1c4a6ed3f8bed967e7793339279721", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e26ef521a1cd16351a9354e5584751b4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1faf0181584b5c4e8e3bf430bb6c21a2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78995bc8aabc5bb9bf9d00dbbe4377c7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f8989117b03b25d3940db463470294f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6326ccde086b5d1be21bb2f482961c1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9489a4f4fcdaf720abae3be0793e37e5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5fda483f127b498f71acff8fe9953fb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43a00907ad0cce1c2e2c404ee3f79851", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f4636944b928ad34105f9f47065743b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b9f65f15306253ef04f83c931f56f37", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a03acb469b8a2d01333a026e850add6a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6e0ea528de8bd1a250a153194e5b0b3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f87889571f770d0661a635ef750efa80", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ca9b0814e6bdb7578f613dd893ce698", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95f917dc948659bc15475606203e621d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee1e5c33fbbab53566b87660fd3df869", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a75ac719930712f53b99464952e681e2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9efd62a11724c70dc0bbdbc11c91e6b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bab8ab393c611f7bfbf7e55afec094ee", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdaf3a0f473c3e9fd99ba31021cfb7df", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49cd41c70e9bf1991df137820fdb8a3d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "020232d7e9cdc128c55bcbab05027324", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39ff80653d85adab3969c60d11caa7c7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a42e744f6783ccc4d9714eab4c5c5c7e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12e7c410e2bcecb4fb199db1d256d394", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce8ed9fb8f3da3d874f3af4f9a62ddce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "419554c7f7b066648e7b4da69115c246", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c47638912c94c00858ae7638053e3042", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff62275163ffc4e1eae97f778e15b1ee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "703c9045dcc3cf65c94849a54a48ac6b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59458545840a3ed53c8fadc15cb8d464", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21ab798a56f167b6ceb20a35b1ae31d0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6ed1c9264452b0e68896c17ccb521a4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b7e5238ab66349520802fc1c1681068", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35f1f7004bce7745659494b2bef5e267", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a31fd7c19ea625a5c62f18a9e41f3ea0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf8f793ed697108eca50bff5fc1ffce6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb1d9716ab7694ffebb61b54e2f6e05e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50c8cf2cb589e823893c2a37138ad099", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aabfce8b95b45eb0036dc560c2e24258", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "154276ee6c8a6c4af3ad2cc5b3db2018", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf41532f7d5ae6baefdbd4034b3ae813", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2fbbc85069b4d1f3a2f5ac3517670d0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a4102219286c79529d51b36d6c4e7d0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a01b68f067b31442e5c20d85bcf38f8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a92ae9cf07fc8bb1026ea5e19712e8bf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65ebed6370f4a51a80e581919acbbd66", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c618a7c036a3979cdc15f63d992071a3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f1b1cf42227900ff9d797919d504a5c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b5325bf0d82caa2c9cf8919eee546ec", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ab7edfcbbd6f475c2a057c1d087d5f3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5600b3a8eee8202285df050e89ae1a48", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f1359dc8ab18abab6cc7017f9f08abf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b0aca4d02b98a2d24ec906658477808", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7969634150e6b51c4eb960124002f15", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4050ff881037fb2956f31a71e0988a8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40b38365064521155bc2a11296800525", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edf7035a8389854e17bfec8a0fa21800", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f36684bd6db14b03be280df4761494e6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e892406934bc50ec28c45cd2f169d27", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01baa3f3397ff25952c8f2375a2adda3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08f64a567ebd3138a7b6926f8ee8cd1f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9585863e4da04591aec17e3cfa7b5741", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66dbb7dcab631549b2e4b505702113e5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc1a1d3a15d8036eec1bbc322fd16e65", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8863f7b9bc0e6c860cd42d75e9e4ea2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14d6278619793291ec57c00600eacf3b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdd8c2e713a876936144db61cbfeae19", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f75291929722eaf5a9314daece9a32ca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86580cdc2628a422192ca20a93821f24", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d56f29130ee569a97b9a23e0e2427db8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec68583123dd797ed0c210e9c0d183be", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9079b959f6896720245a465fabd688e0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce3499a232763956835825abe55f062a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fb29292a204966d948ef7090602f6f5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08fa2234b53011bf08f535dcf0238678", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5639dbd26c5f2335a99bb792db1e5cce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9834d78e02e793260c64849ad3e19a16", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85d2aa3b96992e0abc7de01fcf5f3c6e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee03c227d7c6b12b18adadbb4700fae0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e936564cb3c46fb3fcd97d6d0430b294", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a35652ab5da9e1bfcd513080940f0632", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cb93b79b354150000d5d3ca46a082d6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0eada71e4ffe9ede2214abe6287cb978", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10ba44f58829d416768a882c2c5a15d8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d04be3739a1a7833b473acfdc615aed", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f139c84b5cf07dde952bcdff4fdea55", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6280349634cde06f518fc5427997639a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80317b56433210633b83ad6b11a59c90", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "669eaf7222089fc2aa60eacd22169442", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cfe63924457a057a5e49283618173c5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c654388178a0ae30587180ccf0cdba4c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b624abc24d44ad0dfbc6ea88649e7efb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93580244063183bb9527f79c3e13e17a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c65cf09764960746e5e07cad9bbf58c0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "faafd1733af81dc818b003168b697bfc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37b84dbeca4a8c2b8aaf2fd9716fa3cb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a61e262d3f8cd5815f3155590aa261f5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "268837249527a2c2f54da0348ac6c2c1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "917b96fdea853043ce26ff202d6384ff", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "feb37832d4bfc8db9b9f0634d9babca0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e775f1ce260533b8b17e12c16275de9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55e253b1b6945fe7a7907cffd9787d36", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da6c7eab9f68432ceff55cf4ec8b8315", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb3637289d998823bc21cddc218693db", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab3e180161a4577f44153aee229fee41", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87a1f80ed2a5aba8e721cde84738d739", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11d9a96ef27061fab78765596e00ec43", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d064591125dcb6a9ab52123c57c3b92", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c37cb0709622607689dbd339171fe9b7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad56c4448661f0bdef1b97a4a3005a30", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f86a3af8e5056fd7e2a4d9f8da9e749", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf037250f3ec2d2ad34906b3c9ea9e00", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab7836b532dcbade43eb7e3f22e8ef2c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f894f7ff6df5e38307bf776866d4f3ee", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "828e512b022effbfa083347e354cffa3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3c50e643f0caf30c0f2a71c2fa2dc25", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3aab2889bb9d3a2800c8a3ca2f8a08ff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "280daf23322120aaeb0a156943a1c329", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06acf9a7497b9fa5db8b5e6b7e813329", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a30920d191baa893b796399ed9e488d4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e801197c03e95b19d48db3ed7dd7dc4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57f44574db07df0bc52febd4f42a3fd4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e62bc41b2161184683171bdc2212203a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3769efed941e1e32ac2197241012f26b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94ab42757108e1c6d4a32022a36cf2d2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96dadbebb1630caed53774a0fb2a1e6c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f303e4d84a7032ead758d76567531376", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cddd7b52bb0aecb45b6e2b7beb0f1828", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8d5a2a92c341bc99179d9a4bec9ba81", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36ae52dcb8db77176b8774eec4f0d78f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a47a1bddd99ec51be3f034ef037a789", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "262735d938ae3b89f0a0cf7219b1967f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4a0eeb98743b282a0f52bf3368a3bf3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64f8727e6d87a54a63a042577a35bcb8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f23a84df1ca8260b2a80740a3edac4a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9af8af742bcf4ed32d1cd38028278489", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ae6f82f5bb7a0dab9f3ba63bb4d38a0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c2141dde592d6cb90a0f682bcdd8162", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "416011d67ee8a492bbd3c4515bdf6ec6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bf6a6a18f1b38a0b1cba89d987f5813", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91f6fb024a43ebc2c79ddbd4564d02ff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e63345bfbe635699c1fa662942abb6c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "563bf74594e558f953e02b1b7135cc73", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "201d1ff1f921e1c14d523cacfa3d1ac7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1c01f9f313819eec6a1a1442c76be9f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37b4f6bdf46948c24c3b97c637d2e14e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2b7afa0b0ef16785acbdcefb45fadef", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "915d9e3a015bcea26b4b6ea334dbdd49", + "notes": [], + "params": { + "message": "Adding Dye Sample Plate 2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ad0d11146a7d437d4dafb1856a0c12c", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f40fa594fd816cd7cba8724bfb592db", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4eec512a3dbfa94f7f27af60a7886ba7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5aaacef1afb4ee75d207fb2871edc998", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7161664ef3a47de5a793a9a4184e02e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80b0b12b02173c74095f1468c0bca492", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5190f4c18f8f5651a36e0d371582f75", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7af4bc49dcb644b9f90bba88eac56d2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a1d14328d1820722b4b776994efcf98", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ba281350bce800824eaf6808bfedc34", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fc572bf5cecf4486e12208da513092e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4aab705964f74c7a21c32994ef01fb1a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9d629fee1d614ccabea343e5ea309f0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e404f8b47a3b38ee20c1e8ccf3a41b9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1127bcc53da234cada6c356b0f2b6cfa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af7b846f7c5d8bf081fc0fdc6c0c76cf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b6f078556e57d4c96edbc3210c7d066", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3c5a5e86e6b3ecd5ca8c9edc12cb2b0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aeb15d78a9f9d8755096a4d7de7c06ee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d9b590f53b932ebde141645e412aa8b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74d81cad5ebf4e5ead1e3cb8c0b590b0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6df826bfbb218f16c261cc970cb3fdf6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97d5e4350b1dd3063805ee92514eb0f3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a5a7e664283f4034121b843ff0b9388", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69f6226dac8d9f12fa17340a34799c71", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8508080b3b96bc2f22a558f4ca3b9816", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e9f27e517834635ccc4481f7082c47e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25279ee04d29e580395afd7098003a24", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f44aa2c358b6b559d53f920e1d78918", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b29cb42d423cf4b79a131ea7e91dde5f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b98d95c0ca22277c92d4364a818655b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3932c9f300299c844eeb573964cf56ff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56fe7595114c743ab48b4379b9f0f95c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64db6a026f2f8e9421fdb25152caabf3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38a14dc23e3a92f472c87daa80ab25ac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "360ae5234856f84cfb00c1ccb01dd6b5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "900eb22a91eaee6ca595272c28bb7362", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe7c99072b7710a6aaeb756d1867accd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3745cc8ad3665d66cb1e5bb43bda1b1f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0e5db228a4dd027de2e6f7c5e73b68e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a71b225df6c7724f90e252ce9f5b0d3c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7eb5a7f4bed17adff49a28061610029f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb15c946876a21a8c507d50f30a8232d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ea0f26516e54ea471db285bddef155d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81a7a496f57a1b337d346024269c8b1e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49abd4172736b98510f36ef866ffe345", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0e628a34f44e2ad177c59d1e349106b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38aa080d5388786240bf1ad7442ef7ca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d8ef4841a2d9f4778a46df8027ae387", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02c884402f90e814706106d76fea33dc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2118719359ff2d5629c7dc5455119309", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cde424482c910440a2314c46a25e1692", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ecf2f4e12c1364f87b20822cf49e712", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58235605d90da58fc8411d9c283b4b7c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f77e456a5be521a5fbbe2de91a69a909", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a215b97543c024830db30792906404d9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5edeb321e946089b30b6f1b632ebb11", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26e2ab0e23d59f2f019eece6fb6540b4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2c3c70b0dd8b5c410d6a72a41e699f3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d224057f06f40fc5193c5740770fd8b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e12092e224603995b871ddee0871b09", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c634b8a25c89b45bbbbc507265a9e699", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa5e7dffe0265dc42a315cc96da8a8e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e098554ab07f46b737fd5a8657419d8b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25eb44e92961811e04f1e6e88618132d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da3d75ca77f1f61ad90e58c0569e7891", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "633f82ecc3d9c2269c4c75f5d3bdbc70", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e6704feef375f5c5c46363e0032b64d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f123ae383b50136c362b03a72f02770", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b4432a85c92906e5e9dd4049861054f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a04e9f2a95fa18e6bbb114f1ca358cb3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "894dee4b804abb37de633cabcc892f2a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91086d0b12b23c6aa4a4a84316b2cd81", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8093a66fb283696d2e3ec6950b165b29", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b2f80a70e247626f24cfee33b1e0354", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e223b07ada0e3313cf3a06b225ecd45", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f8702bd636d37feaee8265d2e0c214f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "affde222edef6a107010b7f2003475c5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8cbbb04a5400c11d820f3c078fee056", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6a4abee205c4ab45dfcd297049b3dfc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b63f0ac79acf70d724af17b2bb654497", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fda2e1db83537ad61fd83b42d5813c7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db501efae5584a19b6d9439fb32ff5ef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "328a75543240342c3232b91b4dc7ce40", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a15f20d1026ce4dc828e2c84857b8537", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09c29e4a705f3c8ce93340f7844c9926", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5a634e36dafc70962b311a100aaa4b8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "319af838b0868dc73f8c449b47d67f90", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8e581a13c61f344e891782cbd001660", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16b604af8f0ee6ba5d118c75a1db1045", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ece91d475486ed134eca1cb7aa456175", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f339deb1508e4ffae692c46cc420c051", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15f441a3952bf04c886b6fc3da6034e8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd3420c9c04988ea67c576ca37205a9d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3327e722d5ce1f8d4341134ed01d1cc5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "052f3e388d574d106ed87bbc6c5fafc2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c8ea0d5f0b8f50a9c0b7c936a4754f7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4461d09ed56d7c16db64813f0b3c531", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be659a28979315b27b30501486303b78", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34d5fdebcf36a548b968d501b6c0ebf5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1765d7163bc47bf9776eefbc7ed29062", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "028c452b0a9c6119131c62bf476df253", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41f7cfda393e4e0d8f5bad65fee5f704", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a22ae3a50d1d1d21231e33e55eae0d94", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0df0f1d40b82dd796245acdd33d4ace2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "543c53afc3d2b3d69f668b42a98a4dd2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dff67da3b9ee1e08b68ebde6d6238041", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7afdd3e80af2e199e6aded207d4ce1a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e1452dcb00f4101a1c7d8e850936892", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3ac1f09ffe8164d11ccadec7bce477a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dc63f8a1b829e67e3c18a5030684941", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c38a977a7d23e9597e79d810f461326e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "418466ee2da4672691b69136dbdb8faf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "858e741c0049261e8a4dbde282011ea3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e3aab61734781e110e71e85db38bfa0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a72310888ab34985ff7df7e5b4c53949", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40fdefee5b7eff3cece8fb42c1954458", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71324c0328e91b18beda5dc3ee4a414f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "207069a3446ea6597705483a7aa26355", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c861b8f52be7d983d0ce4ad2ec2b455e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcb1bfef3bac34fc95130e20cc55bb69", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f6b5e91c55e3ba1ee9bf8d613c3e4a2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d4487cf7ab41e736fd6db4fcbb9ef93", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a284765f055f278f0a53f19cb033f329", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55f01afa18fba9ddaaeb9721024a5214", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2569e5586c8c90f2435ff694bffb24c1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6586f5c2a3fac90df9bad553d1f3e976", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbe4061028a4c5ae02392b84738fcc3b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ad3655c34c799de57454d3d7368582d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed201f4330e6f0de126060edfc07d96c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5d974d66013b76be1bfbd5378d79498", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "213c9e6d4519a783c667b92b75092c2f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5edfec57092537cffe0be7c645058f86", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a897aaf5bdfbd88971d1559c843bf6ec", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4d2b3d02ac1bd96363652a62d1d5530", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8e42a1d849bcc3f5c197abf32308dfd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa9197db60d285b58ce79468ebd84ceb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b02c8084a307c98aa093e1c44318406", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99533e47d8e5652b286efc8f863d49d6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3260781815a86e5fdfad9656edb696e9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1831e91b6c0dbfd40d582b84c3ab238", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b076802caccd10758e4890d61bafb92b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c4db2c1a594c596e2d30a2e5a20c33f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36eab10dda7d24546782d02265a30b8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "331188ddfaed62caf568e01782c500d4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c79f2e081190b5c734307a1794e725ee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b139c28d6999813c3093c0ba4370de90", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "686d049585a3f62bb470e6d74d0b574d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f733303d42588d376cb25cac53ba5c87", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "612ef23b5f98383dc74a8d68f5ebe995", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b75a3396ddb80aca9fc7a3c407d2702", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34ada88a10f058a9217c12d9086c5858", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f56d65751ec64dafcc2faa06730dca19", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c555b011499599e9ce6f22da2bd7c8f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9139a6def6bb1173c9b7f9e773e11c78", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f096476414d594eb2ac2eee532ed46d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4118b5116346526c07099bad0daac663", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14334fe1b47bf5545fbd4b271553e359", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51c0c56682d4deb90d7b3282d1d09ee8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52c9eea4198471d31ab846b115eed7c0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7aba4cd0bda4ed9e5532ad35cc4796b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d089cca6308e95444b94c2e4b624a2a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f947b47f193ac1629f59236a7eabd7a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c9024076d399d9a0578abd639ca15a1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21bead5a12ce840064c329f46f2813ba", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae30d090f098c8538ab4f97755984c5e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5db75522cdff3980ababdab87e41d67e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca2e6679028ef0be3772f78d7489c01f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "157997c0b5b925a64a206d869b68c514", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2b01b47c13de81dc7cb045733841ffb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "daedf137560a95691ecc9c8ad6d9454d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "baaacaaa2ebd60f3a700ce0ebb0df4f2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63a00c38fd4eaad8d9e0e64b7cc7be27", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9249c6304c25a23209a85a9daf36af3c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "215dd9eac1d34a2e4f9fedeba3b33674", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d0c4ce2bdd7608f4324bebfcb3d8ce7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14e5404b974c20dee208efeedfee7f68", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ea0786d2ab9e8e73e36c1b862f80dca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "271c4b5fb9c6e00af331923a733174af", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a90ddc635cdb1d7f781b712046a5ee3f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b068fd0430d093bb7434b2d05bf21d06", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e6d74fd08d4a948333b9258588dac23", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63df44df9ddb31ffdcebeb666b177349", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70d5ae16b1ee212f6f7151d942b6c3f1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a4d4657c53c99cc2cfaf9fb962fa7d7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6c7aec8c6e6091f3edab31f24e3552d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82b21900aade7593744a0c35cfab0557", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d2fb4b9c3528d5dde090f7ee0f300fe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4542882ad91c4744018b55add0d9cdb7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1068955eae74cfbf11511e9a723061f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "987a96db0b8789eb295d61510224cfc4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71e45f2dbffd0a9d2b8e0be4b0f23e13", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d17202eca98c5b4b44c396608cfa454", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce0932d92c365a7a07120afe0763d038", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad085e19180c6117acb415bdb8f4d483", + "notes": [], + "params": { + "message": "Adding Diluent Sample Plate 2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79a2d10e3e40dfa6ad6a4ffb8fac9b8e", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4413cebdf5e0e98befa54d003ff6e0c9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2ad5b65ef21db1861bbf470c0ba88d9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04503db20e78360e4c273511a36d8854", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1bf87b09d261d29383ee300631b6afa", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "326d34cc854fec3d65ee2b25578cfe3f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f705d44b1010b16a956954445a8d6db0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce42bb041e5fb8095bc63ef88e481f0a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4da4111925f198580e567b4e7c274653", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff3b329853e8e0af73cf7b9d9c6ce8ad", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccf4e97b5fc1fd43ea469112c64810ae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "614919d76a8ea445cd9db695b6c0d2e0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b482e038a87ee0683046eed762573e52", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3316654dc18f1838ac38c0f159572f4c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05d4af93678fee4a94d255646209e5ef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ba112381a4339693cdf904199bdf2c7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a474e0631c94beacbfe8c4baad4d5577", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e16ee5fd9c43ded15370163888a49dd5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b000b766711eefe61c10f0c84246b0c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4dcd70b077a20c378746daf94facfac6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "301cffcc35d9c9b4a5514714fcc99b84", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f57baa659bb9621ba8af3b976b72f5f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "160b943022287ef7a973ebb192b26bb4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec2a6ade3099cd73ce2a11da3b4abcbc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b88d32225ed4d753e5aa09d2bc74e0ab", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa7334e99fb48be671b6b75765501253", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c92fe8aa3c44bb925033d7b0e8b9b4a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d0d92375cfd525e3bbd098fa5cb4506", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b7875487baa96344d9dffee352f0381", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2dd3121a3f50e4af9e700e1248675e0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88900a326341af5f01b9c1c2a5eae19b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71ed6cb8463cd9301cf3fcfeaf19ed79", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76a6e401e3fc147fae51a8ce96d3fb7f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81fff8b2825228bd2090cc70e1c95881", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adefe19571ca0644bf849b5522fe35b4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a0d6c2c113bec6803b93c6dd91f26af", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f224de6bb3d3d83fbdbffcb88adf4651", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b09dc14eb20fc6c1cc7aac382b1ec79", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76e583c37569a298b614f8275c88438f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f3db7038a81dcb4f7947722f6398863", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bd26e3f1c512775a74ef0cd3a696d27", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "addd1dd3dd94edc2b30e3f882f8c1822", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c25dd9d3222a097330d6c0db40aac3b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41bb37ad41e973f56d488bdd3dbede8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9def902c22b7409bdde78621b75257c7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bb390b508ec91cd54091335ee039486", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de43de5809343b98dce8c0d71a0d8b42", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e87d966bef3885dd672f7535cb82180d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35437a706be581fa41dc812a8617d59b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7471f98e16a104340650711ab6c182f8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7c8bf89a33f2196b235a2aa2207fb01", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0719c32e67afe5364ecb5ba7de78186e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a471fac799390d1eed772fdf71b5a13d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b5c59824a71826ba475c41926136cc5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8163e1f7d5b8ce626fa204fcba10e709", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6cd20d06234cb03d5493f1581aa0196e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2932ced941268e9150695b2a6b0c3868", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83c1317a95cc4ff7fea369f3da11c6e6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b82547aa0032fa512404ffb728060d8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1dc73742a1da594b688270c255152a2b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "115dfba774003e88b6911644d4a3b016", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13a627152ba1a5fe1d9be19536c4cd42", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e585e7236f3a413879875947eccf281b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3adb24fea3bf761a71eef1de76f92002", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad8d88ff661afcd70ffe0cd3b92508dd", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6958de9ef5997d2333a409d2f52d5c7d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed60f7aa1bdcd47b266f7c124eafcd45", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4584f50e1aca5cfea98bbf88e6559eb0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62b4ddc5ec81fde2bf8183c4b2afe8fd", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "887f791bf21d245829f1b151ab705621", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34ee90372f945df976614caec71d4db2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d3f1831d3d35a0cc78e88fc7bc850fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fabe1753f89dcf1cff03aa1bdef521f2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a8807e1acd98e638f5597b32cccc6fb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05baefb8e253dac8abdc887b8b6c00c6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26209f5fed53f64f0a2d2ebae2d0fe02", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b4dcadc4d0ea6627981e4a3c91a2ef8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4050f284c3ef4a52d0fac09ad8dba157", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aaf98b5721490eb8b0b06e36bfda95ee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d855b2f818963c7ff70d728d571dd0fa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "313e4fd255e8d533c7baa662327896f6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ac90ad5031d8b314ebb59749b8048a8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "967376bbccd4f0ac108df25ea4936589", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c843c1d4b78624389c7389a92ec3c5c7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e386d80ad7a03d4ae5a543d5095831d9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e07d7b526811f0aa186f8e32dd7372d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20e3e53d6cf7a05a42544d24edbf9bed", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8dac7c5a93083c1e874446dc89de99c1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db2fc1379e38087c12bcb3335da17f37", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a641ed2adedf025a2ebc51ba9672ab3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66a282d324370530e0ebc24d66c547c2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b18726bbeec0fd11d092800e5767b9f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21fc68ea67e9d3d97eb1173f9714c784", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f64448fe604b0da7d23aa69309a5669", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "909cdf50075510e10f8147475a60c4b7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c96f506bbb8f1c1d859bc4a81681679", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0caf42432d11519df120143ad3ab7c73", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2275779fd2a950ee6d910145545e8a0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c61b4bf97c37a44c151cca4979a5419", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a2dba58e16a07a6e1fcd0bb57472af6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6643863e443c99fc075f9a18a59cbcf3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4e259b461215611c91f0ab9a7a6a6e7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c7c9879566a8e6ef01aa07a7ea1cbb3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04336936eba7975e69fc940d1a057e3b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6206a7d073fc333e2f3ea8ab6c624f22", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62be465db03f298c53af31fda16699c4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be8aed666954932a41a5f7181c7ff002", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "018f6d459a0a179ec891c1a8bda664b0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9462c0badcad9354e2a3b51ce806250e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4749688c7fbabcb5dae16ff9c0ed18be", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "751d91cf8cad490d8e7e979fb169c164", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7ecd8e80d8766a6a643e664c919d1c8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e83d0f8989d83333c2886fea193a2649", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f74fdaf5f7749ce6fd7ef89fdd0af777", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30df883eddfd47ff32278c58e9b6711a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7efb770a3564a250b83d26f880baec3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34951a832c377b752705cc007dbea31e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4697da227192fa814c29f7d1391f236", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "429f32aba199beace50372a5eda7cccd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f31daadf9bc84a3d13a411d19bbfc8b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62d3d190d91894ea006ae08a6507f756", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "087a28fc7ddfc2fd8f82f5ab1ad2363f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2639f561480770b83b69cd52aca3847", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2697b9a32c497e66a26220e9a976ed4b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea88858a033035f9f3da31cd1b1c94df", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b514a4b566619a65e361d6c8d34d318", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "967c4c222854e12dc8b08907cbef6272", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f5b896b3fcd72e7620640e0bb39c709", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c48377f275f4774e3b3e440648d6f7b1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "929be5e9f6c10a1366acafde36eeb66a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2be17d62193d5bcfc357e4206c9dea2f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bab4d1b6ef063576bb7b7072955e6c9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30313651654f1787e2b244a6654a6cc6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d16c2b862e9d3a5c78a9acbd18b4f956", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6def35aa80e7018aa040ae19d21d56d1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfc7c0fcba2ae8051da62c7c94cf8491", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5d4d14192790dcac49d5e7aaa47e667", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a640ca4ce425f89c77b4c4b5f9f24dda", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2a048b0ed9b1f54e3638c4bc57c1305", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2983b386a708264f501e9bae8b1c69e6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fed1a6e0aa142cb609d437da0679aee5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a1ca1a85223d31ba30ccd830ef97860", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7e0d01f18e2ab72461f39a9f808cb76", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "091dfdff0be84cd8b7677dc5b0a9c629", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe3bad9a3ba9a7d75f05ab68a10726d0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d9d1c98a4bd59e1a6f6709e19db5dcc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c82974e368abd81b798b1b358e3a1a5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e4f5ab7ef6d48e86b67031f5f71f95d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4034b2ce7ee7c94b6b6cc3cca8a5114", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a6c0dc02b68a9b799b0f2d4dfa20631", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cb6bbc79229ce499d996273ec9927b7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba66d35ebe3b62262f05919d2668b8e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fabe90117c1dbc8c41ad2703e134664", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8f644662f6977a046ad753d61a985ab", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8adbb5782d7e725185672b0d1ecd881", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5d3d664e2c1968e242f7841aa9e9ff1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29f7c4df75c47e30e6fa78794b7f9e1a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab8c00a3b2daf58b61eb82c09d392403", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25212b3a9e0081abe6f0878ecf7ed9f1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "788b8092a92c2d35a4cb82c82d788993", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "636e5f3563dac46b9aaa3aa9871234da", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdafdf44b14f96301b791949077e6af3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02f4299f8556e0ba677950ee01ec3ad1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d7d3e27722549295da0ad14bcfc7e54", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a716c38fc09b76c4af5f068876e9cae", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3f04dfaa1c24c68275a77573b1e2474", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46c374ee7f01aa855ebc13216a6d3e3c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c798f190f765b3cb39db1b255c887440", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d01b83b4a2af7b805e27c8666a1ac87", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03d24156339c6001a39f5b6a4e9e78bc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f103870d47d6573e07935c8f3a374303", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5972a2ddce3d7c16c8a4ef9f7db933f0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03e9d8cf7a0fd747508b0d2961f81cc5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa0e26393ccda7bc01903fede592d6c7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "086eb38f1ae694fca633dbd74cff03e7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b69e8df85f21a580274db55334bf6cc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30afaa01704ba57bfe7eabd0d4e64100", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74521f558a9df64e81d04908eb1625d8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67a4c81aa0f7f2e10052040381584820", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "035ac9b8db9669e609a3a976dd6f738d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11d3965d15ab730b088be7435d5b74d6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65b1fb098ede5f137bb8646ef098f825", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b476940c3940176af2539bd4072639d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dd2802e42446301834027175f6dd269", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8225f50a13da94a5964410ed1357612f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d01f0731d4a8ca59f3f0f8fc5c12af7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "113a54bc64698a173833d987c4d56100", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ffad82750f6ae9b0427fcc8ecb42924", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63e6c31ea2326844ab90372e30c44c18", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43280e70a78523f22398e032d7308ff4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2f90559f26fe721cf644d330aaf31ac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8f971f384fa51af675f674ebf887422", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d73073efde03eaba362489847119e13", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cb06f1d5fccefefbab9c468fe5a472b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ae3e3c63e022bcd3b316aae6b686423", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68e1f02ec319a54c4409e560a7d5a4fd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2c8e2745d7ae253d73c3c5b17517cb8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8fd132d0f8ce202b83f8e07b9defeef", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8a6de597a0bb5a13d89d932a86c8b00", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c05e65b8c2f723e6f90eafa12af76cb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbaf7632e74df9978f6ac354bad344b3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08185df67ecfadbcb308450fedf33eaf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2eaaa0365d604154b0b4e5ed14ded827", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "483b07e46edd99c1e3654b56248c1b11", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "556644d4ecf132c61dc02e9b7a6eb4be", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "faf58c3a571f41dbcaeffd69d11220bc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "773572629c1773a0f4df2e9a8f791692", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a1831d21e7170f36e83b6f92949ac66", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cdbd203ce13ec7a42233e3c8ff87d97", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7aabf45143cd0dd7886175193bbf8fc4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99c1e8613669e33de7e24aae7451981f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d093667a3178e2ab091e8c6ce23e3c8f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb49ef67729a69488114fbd873c57233", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "871e2e86c5c4588375665f399fd96277", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05344bdd2e9e154dde13dd8c8ed3d513", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad230cfa0c515f1a05a7b507360b3072", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "facf945f5a507fd1100f65b539c13ee7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0db2ffbcd19ce4158a8270e2618873ce", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cca70de92f9fadb51d3c75ac31c182ea", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94778452d9a016732aa45c496be62d76", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a008d73333f49b629efec4bb5c33471d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3434aedae652b4c333a2648cbd8bee5e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49a78c110b05150b89c71e61e1a1791c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac0dc77b972fcf6d08ac386356e4d826", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4945e3ca48c014999e0551a6b2340bc8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c1d5cafcd4cf25f154ab8f3415c6da3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e80d15561b0b2aac864576c574f0f477", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df09eec1fcab580fe28d6dfd66b73933", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e8155da22e083754c2c4c86d7fd4964", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "208933776b30eea8c1217cae5a2cdbd5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2127cd4a60b19aca13ce520fe7b415d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e493e3e4df13ec0fb53ae5e0a52f3d0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c78bd20da74f5b5f49cbfd4f7b6e8d8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86918b120701f21f687d878f612c63b2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "205af21d024a8bce917ec2c92f81c1e2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23a35b3e06bae54a4eb719510691ac5c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93bded15d1584ca7a4afe144bb45db54", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c452bd28933ad19aee79d9bc7370aa60", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98f2aa93b67318407ce782e6cf85c950", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c561ff1f7e2db781c8b17ddee50510f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dafb3c762b960378f8d23cc4de8d6270", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fe58a9b957571f15f869796596dbbf7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4319e8c29dbd1d1117501e8a2a77e48b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24bbcfa632956959dac6aa38f6777504", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85c12afb9da1aaac0561db3447449d65", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b199ae2df21ebb5aea9ee990b73df192", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0df29e56a873ccb758a13d296bf27497", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf837c3da901b0fbb6a264197b421560", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77c438427ada4f55a6b58cb12376f113", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac9a3b58b042ca3d5a957be8a1678019", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2065ac2cad5158c9e395df13840f1dfd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6bce7257ac2228ac2de5e14e58f36f5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13563ff6f3618c132c1d08a3763406f7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98814cebf1816c44ed5606dc591f4d7c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f27e4037fd94693d293a137dd24acba3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d64f5e83e8725d0df6842f524375b77e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "489aa576ffbc44f199ecfb88732fae4e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36e8b05264bf1fff0d8cdbaada172c8a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75991ea85c6b64239af122ebf873a142", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b66ac2a6f6840802fbf2d8ef8bf467d3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "990240208efd0e0ee4d65f3a2ee4e8a9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33811c516c6963fb48787850eb4ab7aa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0a1d22737e53180dde99d4818a00690", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eadaa8801672ef66faef7c9925583282", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00fba76ec8d9887f6a0b4d67ac177cf1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f34157a4525f8f4e327d843946bae18a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9aa312d75abab3a35fe87cb0e7215b0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17a4dc0705c6d9aed8daac483d4efb5e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32ae275fcf65f27e6ded4329ac508c45", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "840bd729bfa25f5254d91bf71d4459ee", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7814dee2fe301e20bcca11ac0e33cd50", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca898374adf3c40bd29489e0bad8863e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c6f14512be1c8169aa6d7ba85ac6e0f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "766672676252b05a908f8c5c8f292d10", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83da59c0f79369dd13c9be4c1d4891e5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f4315d66dfa3982ed96a554d8d6dec5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6bd9e4ddece2ba0471d206af678f707", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0ea0b0c1ad94ac491124e8d22ecb586", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e0bd289fcbf558879dc98f44c1e223a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ca50e7fee9ed6a6fb394327f32e3443", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "993c58d37b3a026398e77bd9c807870d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a37411f07ee1395f5d4b798f098f5161", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22c8325a2876a93899f08d99c6b970f6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1541cbc05841a980d9af2bff92ec098f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da2856664f5a524a9bc0a7858d1520aa", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cf2b2ad36dc26066e3b6002a6da3fe0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5494020d44949dfecdf7d210bbb85485", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9776940e7bfa96d0d04bd0a4f551a5bd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "433ba6c0f4b1eb7af0cb74e6c01d0a08", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5679a9db606259a58df3d745873e432c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c368026c9c91154a217b5186e5510e0c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db3eddeab38ea0cc2e1c230dcc2b9003", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74cd033ea687cba3479181748f559fa6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e6305b38ff332172617171ebec0f2fe", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f4442ccc3c313189288fe2fbddb6a5a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1afbc7617ee7862971888fb1cd7c6f91", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e132c9a77000f5d887e0c4fd07c72c7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "883802ab5d6ebbc0fe203d13e60a0d23", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1676c3c49bc8e2849222b4532b32a712", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "466ef3555bcd726a3dda3367229b009b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6939737eed411e02b305b973c6ff2ab9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c88b3d4bd932c7b158de8af67e092f2c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7c401b2f33ca88e3a5045ecf8c8f4c3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "537880860b24b4b96b1f076f069f0b50", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93614165a98fabd11de38bb6b5f7f071", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90a2e076be7464a6102824fe5be6a4d9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f14165b0ad54dbdabc2e88523966c625", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e233898dc2f150b335b2d7d6c55df26f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19b469314e66d3881a69e74647add224", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f35bec9f7ddaa8ed39cedf3238c65d50", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ce11b8fb677047eb1921c9a3ebf3440", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7662f817d35c9384b6284d893e66e330", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e0c95dbe2127949493937a552035a25", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44e781f173f14283997dc1b02abbda62", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d807822d7662dd34635457fa8cdc252", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21103cec00979bb8404d144c782ef29a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49e1b83b3c9d6ab56864ca115cbfbc54", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38fb7aaf3eecd70b59efd4e677aab405", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2687ed518ac498fe8aaa687092049f93", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3be360b1082938afab14766d48b0c8d8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "358c6cc00bc2049fe6ec07fb70eb5cf2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a0ab3c5c9d702aae7a49c1acc52c000", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be1bb3d2407790b933d9fd9000a84f3c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4853d736ffeebc5d25e0201d9e854236", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f41cf9bc62548622f7ab3d9ccbfda63f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e417b46dc6480f8a053662f05717604", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d2e2682cca7a1276dcf94c2ed99dd6b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8d0e3efc4288c24704d23e58ae08f29", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ce55e9bb8b45aba625e6277d5675f1d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ab3be8dc08c702ce0a36fccf97a8684", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cf1c06788bd8e2f7a4b91a17095dbf7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21eac964b54e12e31a3e6aee69579688", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f423dfe1a3f014543de569a45683ddf", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b62e6791e46f483d2940201a643dfeec", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bee491e6333f4647e022e7665bc6bf1f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da0c3d3f5c1b2797a42f684d7215915b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb1b5c4814e285ab3172c969f3f6453c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9cbecabda855c32324813a2fcdc67e3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "baf51143a26a2cbe25cd4df5b65ba64a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6330cbb04b559dfcacac2a185cf011e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4add0441a4f7f91cf9a9d8495742a624", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77cc1b5173c474f16df1d1c6e6304ba1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88917248904e8fd957b30c9cf4d4eccc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53f1806c890132e97272cb6462aefc4e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5f2d5121c1b6f788ff6ee83b9e4f800", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "827a94bbb68ec14ba971d7925d12d2a8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "faa5e90a5060686a861bae34df18b15f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d48c68c47cf6d21bbbbfb245ef67b0ff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "202c0f8324fc0c760b6acc9c67a0724f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22164c525098db6428b039f2c7beda63", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7616587124ce9fa3bba927f2c254d36", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1567cb52c8452d66de4e940fe5a0bd28", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6acd19084a395884b20eaf57578fa06e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a5ea400fe763a0e1fbf06b1abfd58f2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86d6176ff45728b1bdc7755a4b7a8a69", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8865fa360ded1007001fdc8c47f20fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32c46a8369a6b8ca57e5d32bca54de94", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 172.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3d8fee25cc01c1fd00da2cfd9f321dd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3de481517010a24ae47bb659bb776c0e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e545985911a614378631cd0be5bcda6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "657049c24efafae9db8761d45c5f82b6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 163.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53b483679009f0d6f59c99926c0b7b38", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c51bd3a4281ce3720f2764922319007e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3ae9fb53b9f8b71b3af8649e0001687", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a7abe799efa3ecfcbdb429548fa0969", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 154.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b53518f381c94bc4a0fd9245d30b9e37", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6007622d45859ead84c0c6b7fe7b0b17", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3bd96618648f3406808d99211363efe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "612694d68c60b98cb38b5ab00eb211d6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 145.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78e48a8a012eb86b7c982be20af2fbb8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bb2cd2e64ebb13c880108e3855beabe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68e08d933bb591325528fd1205542ed8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0bb8dae9660b80d09a196cb346e3c85", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 136.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d320de9912094a57d6f1ca1ba1979f76", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f1511dbb26f99f4717b71840967c2ff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60a49ee0635c0c0863fefbad18b100de", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbec463e4c2f762b6267c64250f0613b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 127.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ea3317c63fe20303511bf6424a5d9fa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6af51f6ceecc5b8964c3c4dcf180ee45", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0211c8e47d8f2dff5aa74a5fc9807108", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "436cd044b6f4c356fa90c7281813ccc5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 118.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e945bb94fa978b3bdc48c336581059e", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "914e5641110f040cf44fc0762d3884be", + "notes": [], + "params": { + "message": "Adding Dye Sample Plate 3" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "415487137100ccb51e3c66a062787a69", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dcc5673f91ab631dd244e2ae2d1412f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ef695c6441303c4185873e82ba1fa13", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e534426330bb80ec4780d74a04789a35", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb7ae12b5082a149b33885d45fcf2d61", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62301e500d8ada0d8df5790d3e1c4945", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "959b02c75b6a06f798fbbd8dbd41101c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b0bfd164761e9f53e9f9d41216ec7fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0de90777a2481cc6f2b65a3cb0977c50", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b7249f1b888ccb8d05312dfc6c8c69d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4ef33d01edd12126a707272b8d7bac6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b9df084c0d3798da17796f3aa0bdf5a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53b7ff98ff67bd0d5426987f00fbd625", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4eddef5ddff6efb5e62c1f150239799", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcd7b5baedc9503e23936912686b7c73", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70b7bc53252f81f95195f35d4040cd7c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eeabb070d1b257d4d07f8e94c166c2f0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5804f96fa0acdeede158c121097e7ad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57d99586742295d703d91614a3abd346", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aec4b0e0bba415bd9d2d427a55aed40d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0aaa0489ffe852e25ef3bdd1bb4849e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b70cd3f007523881f03cc4d9bdec5fbb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f4e6485e98f6c0e526d880f6a65c393", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "788140a57523858619e49f35dd8d8009", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bee65a9e00025f905277cf34a9e030cd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5828fb9ce88a74199535a63de113c72d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0afdcf214e1ad938961f42ba2271f8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3bae9a3659513a7c75997a1fcddbf7d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f36e74eb1626e929c60fcb5289208ed6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c91858ec313de2aa5b713db2a400f76", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eba9cd41977ac304df3c48c0d3772b8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21a72701f48b31196db886c31c16ec23", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04eff158ad749076feca010aeb8fd6da", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93038f6c7ac669d5a27ae77080e4b256", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c029dcf01b1c256e9a3b376e7d1fca8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c01ef21e77c0f94d54fe43f500af78b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34a148673acd7af27baaf6bfd6dbe166", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c87b7b651904e7bc28ef96ca022d784", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f89c60ec9345e470ddebed71de7e653e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac4cc0f6f5d27b98c618efb9ab239b98", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5377994c26060b541f98c5f1ea30d7de", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a589f3cfb5266ba8a421b7b9accd55bd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6846099349b28d92d6185d5b56fa74d5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a244cbebcc99d514a69e6761fe6fa6ba", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c9ae5905b4fa6223e5cb3014f0f5e1c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f53e9101041d08fe91abb6fef451005", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d36d7446622e1565372b29b8a1707099", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1406ae4c6ac627ad2d4b9aa18faf16c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de4f0883bdcaf53238a93826418f296f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59800ea6aa2bccd12309a3acef34631f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df50074a3eb73c147da1141364236b05", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b99f3781d7d8cdd50e835ff2ec495dcb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "162b3f620c89bed4fa2c345816a941bf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc8c88a59e417f22c3aa67d9eb75e912", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e88716d77f4c04851b828cb576a74e52", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08e5597172ea48e7fbc13911500117ea", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15a1607722eb8cf05a36ae62468d9bd6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23f4b1369a5466eb79a6de3d86e6257a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "929ec8ed96d0e5c17a844d3bacb63769", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22d9f88c45bc286b7ff965ee87f532be", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8db41ef8dac5f9888aa34496a495b90", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e19dc5fefcf2ee7195cd0edfb28f1df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7319608fcd4b9a6948da9ab83f1c813", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b14176925ea4ac692775e4bc990b41d2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df51f44780c703737d6c1c59c36122b9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "367d44d0e5569b490c962b654da7dae1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab24dfda3f1fb5e3e9234d29f4a12bf9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b80f5f4f28ac225a4fd84c0c3081a0b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c00ec86d79ee68d06fbd9c3a5246f5bb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27840c52f0c4908db4823873a41ceb83", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2e0974971cd14adab52d39eb409077b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b5d8e81085b685a688e56ded5e66eef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f01ff27899853db4ea5ff43385595296", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30c4cd68936a13bf312ea9354eb698e5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d31a8de4d068ee0a0370511a621aed8d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75c2c9d112e5381252cba20b7fdd9c0e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71f48f05b41ea72e369c6a13fc315ff0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d1b0359f38e248b0b70d833637ef487", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3f7c47cfa24d9703a854e0711cfc17b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67eaa1994fd67b0528c848be606a195f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0772b01f7fe372b79da16db9d15efcd5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "730ab5b8a1636080f813b3b556cb6547", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc573ca9b28cf0bcf20f066b7219008f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d47b5e0a93ce32d6dfd41cf4019e396d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25d8083323002aa15ad5fe547d3bbc39", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11e7a7f6a1b967269af925fe89ded60c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eca41a6c99b706561a71cf1052ddefc6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b31d24a58a8675c249e627d5af6f384", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "970abf8ae4bd7c1ca28cf87579973d17", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "559ac0280fb9b198ae1a72e644346900", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d552e1a2985decacbb42c77de11c6572", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a739028578c017203f6282149d64daee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00e7509283d30465f78b36a6eb0e5e4e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8e1789fa8a1a066093fe91061fa19a1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "692a1a959cbc9863bde0b8ce24cd1992", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63b70073841db1bf739b6ff41477bee3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27f328d7e601d17fe309ade190b2b4d7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8852a5ff3046f0cac12bc18a567311c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "329cbdfebe001201b5e38f2ce9a11791", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8118f75cbab140d4eff2a20db1125f6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbf0624b7d30cec6cccaea7b2d67f336", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "256223be60839d7a960adba477771469", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "322db9448f441f27018072f09c8b2277", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "491a0c8dbb15e3bde8a9a3c564858581", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1904b85b28d8c7193df3908b307a6992", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12cc0eda87834bb9e69d970a54923829", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "343d8c09c4ac99a733a3cb15ac1b401f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d7536892b6c0620a3e2873707ae357b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d93ee4e69eb71c0d1af9a02fe77a30c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c1dc88f68b98a9b9aa444342e4f2429", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0777ef55f1d983c4e4868e496d9afbcf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d50286652e01562f1afdd99ba540fbd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "220cf7f7c359c6cc5219bdf82482ffd1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba8bff6b362de060be9ceaf5b887d412", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d0bda3514ba41c525f3d75d51cc76a6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11104f742b4a17eb54030690c8305e40", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02f5bf0274aa9f09cf590e4bf45e62e3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3de81d848b29ccb9ecd3058bd39ed342", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c96dcd419b920d580a0e3ab135887d7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6b151388ffb2b1ee0d077db78a3f055", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f92a1a070f2207ec9566fdfb37a9ebd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "793758c91ad02d1d910aec9d865b8267", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7233663d8b0ac6c9757e488db7dfb53a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b25714d3e9cf69e46a1e5b29c6c34318", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ffec93ab2886b41140b3f3674ece517", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efc295f380f6c60145d4cdffa5a11076", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63a6dc67e4cd7a62169f48dd60d50951", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c301a74b92d7fd7ce6691181b036fd6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95011f5b04c3689ad71ed527277c6cdd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4524fcb961f3836c1553c24b57b022b1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56967ba76d4aa5320c2390708c16c684", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d23755c5c82139f02870beb220d924a7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac5fa83758df4fe725df627c0da83da7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37ad30d640e5ba75b04f028812162dd1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32f494ed0c70dda7311d49872c588f9c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82a8f2de7043b568fe1335174a159eb2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ff8cd6311a4b01b7d4f80be9a8147a8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed0400f54c9979e7119e14198bd03229", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "247f166020e914c8973255d7c0e10990", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f213f6101e90de49278c5d9d67b7028", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6aba019a3730d42e29f1b53d4971337e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c90e93c4ffcba6e016134044884ea1f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37fbb0bcefb0cb2d8b399fb070c30287", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "805efe1b5c93718b004ca1ff9c58070c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acec3b1ba86b687542038f459cd07040", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20934e52d432409aa6b66ec12525b362", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83e9d227e89bc76b01405ed6fd58cb70", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45d45a9293624a82b30b9313d58036bd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f27bdd754cb926c79f6d4bf109203af", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1544dee272bcce9f4c3f0821a772d3bc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c086138b080c0c48ce151108374f7264", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6147a361b5e8280eb5321e16256e3b66", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "999d2e688d5b985ae5743edd57583434", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8ed5befa16dc9a31ee1d49f40e474f0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e36af319385288896b62228bcc09a2cd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "871c085ba44df7bf9aea91a5ecb204fa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c271b176d499d98871debe201f73540", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ed5a520175848a88fbd3d43f3e41ed8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "712a664b1fe833ed374d391ee5e1943c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aadb45b01f4b2b79b960ed38068e7f09", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f50f8a600f6c9f2e0a418e0dd3cb979", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea611241ff6d2f4b42182f1ef1d0aa7d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb4033b9794c18bbd86c6a194aefe657", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3481dd7f764439688cf05a4a02c281cf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "694330d0f6fea7f6bfdac0ed173fa190", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc3af235f88ebddf820202546b5d78d9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fc96c86f63dca75d3785cd368c3afdd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4f7b343603bf843a2e2c7d46344a837", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c29ebfaf39b2baf840438f5034d3dcf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "026ae429163da928371a0edfdd8c0f83", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ac68808edbbe1e2bab2ba406bb5b66a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "053e3893d7a8ebf243ee53db9323d160", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa597506870e48e418a6b0a7ccd56ba7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f23809b8c88fddce1ba9f9fd461a4370", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95a9d28b37f515e26f1e021330f399ab", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93f29f11c146d9dd8a05e8145e2f6637", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf8abd93ab49fe19ed7588d8fa884f24", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "700c67b3b4380d3f46f6770e36d3b1f6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc1cece31e39e0c044fd28d425d5772e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4c55742f346fe13117a7b9a9143111c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b5d9b6b947aacef08898ede2e7349ad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a49356ede1de07e71b5cab88de5a5046", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9541da1f842e5437388854ab949a7f4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfe5d63d5c279bc2f22e5d90a38b5f18", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e618f0768de191af3b5ba7085b396a1d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8c7f0269d807d0813a39e4b174b66e6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8c5ea102d54fd024932d8cb337fa3bb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69b51feeb404a73af2f663176df2f6bc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1268ab578b8f20069a43fec85e86d88d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8989ee9729203fc1692070dba1f8814c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43385ff1d558465dd56f9b10445e2752", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f35f8d2f0fa12c467b6aa3744240732a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c42b0c64dc9ca6ad5d122e2d4fdecf18", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0149fab2a951dc79ea4fe3ef5d6b13f", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22ebf102295bada868daed3ca2e508da", + "notes": [], + "params": { + "message": "Adding Diluent Sample Plate 3" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73dcfeb856ca5135ba1987fc76845f38", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0c71bcc6a322397c13040a92f6c6426", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "962cbbde3714194b3df7fba8da0b6a77", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36ae4e95f8b5a9c59a67530d30f1e400", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6761cb6448fc3247a5170f1d24fd8615", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf9be5169263d02fbfdfc54b485db8a1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b37037c2c99d7e022d669ffd9bfc41a6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "680ac05c1bb0bf885e0cd105294ffce0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc8967a97b178e8fb5a715e6393581d9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d6acfb5ef29923ff177dc336ac84620", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32a583aadfb0a7c08d6ba1342fc40cd9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "898c1d11a93803d49d948509396059ed", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19fccfdc1466665b49be9ef97f47a895", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73b213aea1cc488a767b42a98a5cf210", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "176093363d188ff015d8829d0c7db721", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "645fc434f77aa53edd24a664ee3defa6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "579d95c5727c3c6393c796af322bcd56", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ea9837c6805b9c103b8a956ae8323b4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36c26cddaa2ff3fe8e31a4e0592e481e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "553564003698974a822b4d43c47fdfd7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "442ba1a87254ac27d2de190ae043f02b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58a16e20470d15a61015845c37f7e72f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0df3d055163ff215c6e3f38cbd0222d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f8db948daa3d5bab333e7f0e9cf44c1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4dd3f55b0b84abf5b37a83935ef1331e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce5f3baad8a15f96abb4e350ad9bf72d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20b4a3f7213094fbe8dc91ec275295e7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1cd2d092210cf594be91f396d22b3e5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf7a34014fc1f26ce29e27cd271daa34", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdae607e188a01419b3886eef8319277", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5802901f8b8213b0ceb568ff4be85bee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ceb5e051d2795b9604da6e1d225b7c6c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "151517c639a05569a784ff8204873c83", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ada7995c74d924e4d471f6a85a24ee3c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12e2790deef42eb47654972798f073c0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b120f0ca0ec5e33b6ebf1a3858249ab", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b2daa13144a28b983bce3ab1fef2229", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "420e1ad6e5901142221a7b81ed54096a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88675ded0067e4a0f953e41a3427b241", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eec1a87231bfd2c626e934236620f11c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1229c84b84de641e507ab9f78bab3b12", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "664ee3a96ec9eca72d3922a95ad41c8e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe12eae9f066c29c56509fa62a8f7b1a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d706c40ca407fee75175a68d21b4d4c7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3d06b55177c12a54638844e11d194ef", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef5edbe4d5cd0081adc636159e0ed429", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3271f1cdf74cd95934fad6f732acada9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d41e448a3c75e6918477b2556a644e25", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63368c12ff77a2e4f339ea60fb002db5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25a805180f58b612697d0bfaa4d429cb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42fd22d2637d0a5a44b68484a120d6e1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b57cdecc744c830c608ad3030eedb0ad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfbf517e8703745b07c75226b3f192a7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c65dec0f4340a0499a3a9136f9bcb95f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27bacf0046e59379a5fd4a47e1b321eb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25ae78e5e526edc9701581c736c1d5c7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e40c23e107046eb9c0c60e7322c7f2c5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c986d4bd1455d577ef58dc79292cd48", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94357048c52250059a8462ddc8a9a79e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b00280d98c1c471977febb7551c9bfa3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7aaf1bf6ebfe7116526697abfb70b311", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42cccdafac7bdb8750328939f573e9fc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5a8dbabb4f14913d94f39938fb0567e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0eada76ce2807e06bea604a342bd4238", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e37f7b0029bf9f2c783c65cac4fa4b04", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a1f12df226f09dece16b5e67a347be9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f9e1a15497ed71a4d0b6cb5ebdb2820", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a9b80898b46d2ae22dd35f36b527d6c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8d825834e77d5b051c7cdebb8f41b4c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "609bc1ab8e012d9a8d29edec3f71decd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adbe4ed1a0fc8e9b8313bcfc81615fec", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f13ee34400f663795c0e9896d3604664", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b1a0f78cf44b7ffac96d270a307e481", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c41275347194bf94e3d50f35335835d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b339172e5332cd652008427c2e5ff378", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31045732b532c57adf939db31ce48d25", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ae5f34b2593d8adbe91fff0ecb61366", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "833f02737e84a8d7c7bfd103de60b441", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "733ac18a18a6c97199f8d86e393964aa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4df929afb69837ae4313e79ec80ec27c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38bc304ffdd7dd2f988fdc41aca249f4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25dbb18885eefb2b93d0013f82972cb2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a90c7628c01c339f5365c36566feb5eb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ee5f857ef694dc06b332c2d7cce3085", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7a0f91d8cbb1dc50e9e644dbbbe40eb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bc9dff98e4f8c3a8847776301656083", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "623a798e6f86dca0f3271fff9beb274d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d121e17a74c410e8adf83b999c55fd70", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ea71ec96c3f16705c657990f4d2bc87", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "664af64fec4d802fac25a75b255c5701", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96513948b81118fe77369c4985f62be8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd8fcf994afe585a3bdcc3b23fafee27", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ac877ef6cbc71721fc161543cf6cc2e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a68da97021a5eb4c381f14e61779273c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11806ac2e157426000776a3a3b0702c9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "028e227c349a2a35718c8bf03cbf400d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23d3bca5f4bf236bd991a3081d13e03f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7706d11e4cb1219c42420133e8cb724b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b964df11c4175e24ace00b1aecdb90a5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88d05f008b23cdd64ebab3d9359ed099", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01f8f220c056bd439634451e88533439", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7f6f2e7ed7def33e07b2e5c6eec4b07", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac818c13d58533ddf529e38444b71b15", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47f9826cbdbb6a1c953fd738b10e211d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b161180de0cc4a966d0ef35cd138fa10", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7232c605ddf0e12f871949e8daedc3d6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "274c92d77e7f40f54ebdcda94f084ac0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34ac5af59096eec24d5c0ee94452e882", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20cfe2fc5fe96f980385fa085b4fe069", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "597c3f43da39113494797c58022bde71", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06ac810009b5104e271217b4396836d4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fdb983666a9ef12a0c276d54c17bfb7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d11cbd507a417161a47f3a396921089", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4235f299fcbc4c392a7c1c65e7570d4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb172694f18bcfe2dafac85fed601cf2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02337df70d6c6312b3e7243775a4470c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ef6ed871c4661f7bf84c351e059b46e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03a46129c7c2d59181253b5674e78213", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d151edc949501bdfc2a0e4c4c5c552fc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b02ccc7c313d2f4ed7aafca6176ced5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d1d87e3a9505ab9204213ff478a2609", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9522c37c1ca1316a729b0193fc0fa24f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b34b7a8b08a9c1fa9680e7d2ff3a3a58", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8b88e4fab095c80aeff25396e165a22", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aae723f0af69350bdd899ccc1d3b6bca", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c889f927b74f7a24f0482994efd783c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94226e5b36734445de3928539e551459", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f7b7d8c136215a4e05b1dc39c388bbb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f16d1f1f262aa3029ada3416f7466d64", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce7cc4a011046ad55d820d1f52744c00", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12dcb48bea73764aad2e054e37006432", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de98d5d8133953b059155c6fb6e4e8cd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14d64400d899a5d32c7fdc0326ac244b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1311a5cbdd2764fe2bf8df5535370085", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4acb11fe1f9afb43e8152a2ada7f0696", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b48127dbfdfbb929956e5697587c5e55", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "589fbb659605549daea6b313733d5ded", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "935e0eb1dcacfff1a0e367d384c74d7a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df9496a1101ee6ea8a205641c1645d35", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3708d550b8a2f1765d1b7cae70d2057", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "999fd1b50c2526d4bb92c1d8b51c221f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea2e905d1c8fb4db70d5fb2690030213", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "450a8bafbb5f94071819758add4a5d07", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e3b45e642bdc6cbddc243a26459d934", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5672257c9d3d8a5a39dacaf2a584a106", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5af5b3a08c6b34d91384bb88f6f8bad", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc8ec3b8d06904e6aceab8ade5e2e5ff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b8fe7785813a084c87bfcf1b93c23ca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ff796721ebd9cf20c1e7158f37354b2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72da6500ba990eebbcacce328867b2dd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccc75d086b8046b0d943a287b921cc83", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b01b2333f21397c8a3536877b927862", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d87cd209784ec7c76c201e8ea4fc3605", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6770b2524adbc9ad668b6d6e94d7d446", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab0a09eeb944881ce3c7df98da3a702b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5d3109151c004a27b927c9297bafac0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c494088c526a684e684ee85dc26aa11f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f116c3c8b859331c472daae94051deef", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bcb8009fa038daaf2f431f1f744f439", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc5d6ac8df3f54e31ce9173871ee9718", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74f0053cd708033b0371b14697284650", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a6171c74ace5099dd36b3323ef7457a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c82cbfd1491843956556c63031768e89", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7588a64c733fed3a738c36d58b42360e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbd97dbb83e6a5f8995f706977223dbd", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8368fd923e9a0efaa6349f136a911453", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50e2968c1c5cbb96e2d0f10c9c5a0457", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4d9f474732320235dcc5ba9fec600e7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1787f67243fd6904012bb4e022b1e13", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "309d03c5976b7ff26e72d9fa2bf44e69", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "296496d1ee5b848a2ff1f9cb07e63cab", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90957ce45f89610790a6e1e1f351948b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0eb577e4fbfdb536348d68353ed20888", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3f71e9824ac03fb6b5557f4bb8e4e78", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47056a630ae923e24c532f7e1e5aeda5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4613422c55b441aa1da2b46fea439b6c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c7b70355f3f08e035a40263c733d5e2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ad388ddbe6bac3f65542b4629aaec61", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10adb5942495d75a738303ed39f5cda3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "637226f8b4f41af6db76ed762977face", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d318f41cc6400ab869f2a8485e472424", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f3514e28cf045e87cac55b7ca49beba", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9d616d481b800513c3e924b7ef94589", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fba677fa7ecdaa7eced619f3d6cee48", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd24fa62b45c5b2a75c01fb6edfd3a6a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03eaf847544a01d68f41254eb42c879c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "302c3b1f51fd0eaccc48f752ec1ee326", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70c781c7ea11a6636ff9895791adb603", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae077c4aff7694955e297aec442460b8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c5eaf5e140950b66ce3aa2d8166c20a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21397411484c74b41447ee0a1e103b25", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c57b3cf283549ff66d34895abb42cc6b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc1518248688d1b2c0ac6f195526c451", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "862c2f6c2c655513eda6d4ae554b36a8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34dca5886d864b057fa49f7660717eca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7272260f7c9f6bec2f00efa03daebcd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6d6cde0dccf9f6ce9ac944e276f0772", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "493280db004102227ed0dc6f60e7c677", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dea1bcead9e38b0df8334e8deb393a62", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a35c20d3b1f27712fbc1081c921ab64d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3df189ab62d0117da67973aeea3152c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcd2f4dbc525ef747851c7f4428d467b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e216436785272e96e2d4ffa026ea190", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da0f64b3996b1f8ae3f7296b43d45fa3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b937a0796878e54e12555625f7989cc", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e76bbec6ebe703453fe2695349657ebd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "384b84acbc96602d6904bd16a588930a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cef3d5df16d37f43df5b2f0f00d0926e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86b37f3c27bf206bb2f755ed5b3efb4a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f253ba964576e6999eceb62813aba36", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c78f8cd0c52d1be7e6d4456fd7fff3f3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc98a919b06fb1d2d4976b7eb84e986c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92f6061a8829bb8da50a850ce834a834", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbc20bf67bed7f161ee220d96069e8e8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a14ab0d6efa48e31659c10c861e4c85", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4c23c294afa664b0c4592646f60de18", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7cf96ffc2ea6bec1b9e7599506054d5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ad6fad664d02085db1af65740b64d17", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a94fd7cb5aa913e6a978348d9f41fee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ba114b5cdbd585ca62c55141c7eb8eb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "473cc8e88a7009ec51bb614f2c9bb749", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45bd571024730627c72529346c64b39e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d9a9996f0687e703dac6effe171df31", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3db7b53c28b94893c81cf0964fae698", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bedd9797b53515aef2d436f9ff27f44", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26eaaa51623d6fe28b4bb4752ebc00f9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14dd896108387a81d0e4cf7fccd6d6b7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebec24eb362370d55b82550b9c0fff6e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9afcabd6924e83561ea5e3b590ed7bc4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96615bcca68b16694b9d1165e9b7b7fc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "762c853bc35ed990bf4c51a0d7aae32c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3046072a1c2a2e35cb2d0b71c0bd6907", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7e9b9da8b26cdfc214647fa89456434", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80f006a0eeafad3a1ad9c645d19f9b4e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26b205845b5f5970522e104e4ca96b81", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac85b6b44f75f1b21590227289371b96", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4359ca5463687e03d997519ac01a9be7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fc256dc8e02b5810bc02cd7f4509f06", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0af151b973c1bc9684a54dd05ea9afde", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba933c46cb3881b690ed9e0de549374d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "416efffc5f928da2b66f0bfd3104291b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b14eaed700a4448d22b499da110b216a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b0dc4f9f935f8fa9519d64a05474e0c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0871859751cd1d48bbb46819ad742a05", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f866226b1b70ea47de3a198c633a2216", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0639dd5f7b3de585eef51e114e1170b8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdfe33573b7ebacced624873fa367c83", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb029ee611d70674ca27b4619c440742", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8067545aa5b97c5e888fdda466314d95", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba343918a4c20d77b8717a1f947bd16c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a987ab4a9019543a657b8c45ea4ce3f7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a3c0db13b7a433315cda0f848bf456e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "251c70317e896d9c2e5092ed72f8fa4c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b833b1c511a768831772e9c8da09ea2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a98ea8bc199f922a740219db39ef8fb4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8f29dcfafa06d99b0dea749dc066cea", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae9237319beb006f676e39d1d5cf87e4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "225f35d68b78064f5503bf6f51b14e35", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2fb349bdff53654465b0027de639131", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55e6269d859f0df9c9ed305bc05d8ad3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ad91292f510ff6ea6f96548a808cfa1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fb0df147148712fa90c1e26a4919980", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c4752b20247abe076e25d019566bb3b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a4d0308b4a8f5118d8f40f035cf6f10", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c39a9a0c3249aaa420192e63c9747bcc", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "befa03f604ac408bc777618c06853662", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd62e84fe909bdb40f96a65467cc5f23", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96e28bb8b03a456fcc0652fab3582f69", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c51ad7baa8358ae79c2c7758ee48fb8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9de123237640ab25fd37c6b4d398818a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "769cbdbf1cf59a030b7e5100f81b4fc2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2af705954d8e930a5b3e4aa0af25ba6a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "baa02c837a44a99fcbd7869656000a50", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be0c3fb4a160af47de475dab24447edb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a71ce1ac09dcbb8f645de3ab6e74c5e5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6210902c3dd778dfc7e11e42aaf7f31e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3718b9545e25a7450d0b87fec76f292", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "735d76bb56d02ea83f9e5c2f6126f261", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6e34ffb2a7031ea4e998000399a27bf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc4738976e622a0b3fcc802c622cb20a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cf9211206448cbc4ea65a13967d6562", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a51389d9d7738592f190c91779dfb16e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c96f14395e28fb3c99b713dae1f0eb7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "065f66faca3e8ed176a4e81f1a2991f2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73e33d49bc10af0481acecb54216156a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7aea70b1c8121a775b28ab2a9575d1c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bc6fdac0f1819084e088d0df64352f1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3e6fd1911c953ba9daad8591f688f41", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed5be49f8564c004e3fe7a144bc5a8ce", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d654b1428590379f0b2235a80db431ec", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acbee64cf8a3e2ce567d6beef9e869be", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85b63f02daa11fac4c18d05d9f457dcd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad7a4fb5d19c670652ba7411ad6f7a46", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "224d1f0730747bf3709aa5246126b143", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fa0fffdd3163e38b9b49e6dbd3df6c3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05b3501d75ce81606ec243c7480605e6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9adcf70cafa9a2c9747e60575bb2ad96", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0fe8475888a93603a31aa2e4af37a24", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05459ee29dff69cb68cce7caa833cb34", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb5605c1bdc3410f280ed8a6ab9837b9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f82a066c80f7726c437babffaa1f3e8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0df05eef986345923884c0c409b6235d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d53cb660b74a27a1b1183fc575695be", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6756c495b951c8aff39ec5479b8c08ed", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5955be4ce12a3828ef0d0907938f1144", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee31c4c575cea7ee06fb35d5b2da0cd1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9aba68270f8b964b07001dd67312ce02", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "627c98eb09f3db56818f08c714047f73", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47d49fea26909bc64bc9f9447335b224", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a474b80d851e2c81b3fe7abcd715e5f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7368354ce784aed87330ae127829433", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4e40b6c3dd0877b8eb199f98c07d69a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a1be3b04721453bc733addf6145ea6b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ac754c4df1364c97f86b200cabc50f5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ad1ecdb93bb0a70bd0b2498f46e02f6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97fbb5c2863853eaf97ddd0c6988ea45", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c25ff9396bb8f99aeb46df115c355ca2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d34648dbb4721bdb3c609db1e76c004", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70d09bd9b1e9057bef384c85a0b34bce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e24df7c27a71ca9989ea2620bead82d9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1fdb83d4e230c1714320e7ba0d95628", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b21131ff913a72b0d9fbb53dc042a67f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9b83b068f4f12fa03feab1a0e5d3568", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b6fd98d550bd5ffd853e2934a59770d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f93e29e69dc6e0f02301acef1e0507c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0625e1a6f29ee9d999c3ad63651653f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1022d96538b435ddca09c744a40b278d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb93255561a27aee96c2c32b6445c8fa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4ffb96e6399e2cc844751ca5f11d97e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "135a860605c9fb31f913c0873eb70adb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6874da8887b4e5b3397f23afd5e28b3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cc1d9ecb8b16de58e056225affbc494", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61e098f8abb3a36a8fe6f702e9250c70", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03710e02799418470bf4432dd7f68479", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cbfc5290f6cef4f1353e6e4a58a6550", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f146a5fb298cf3d146ff5694dcb38bc7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f1f8817e06e3b481b074560340487f3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "495717e946f04d58605c6785d0ae45d1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ffb25e8d84163f42e4c728f6806f2ac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdbcb74b4c7c86a9708cddc27d0112fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b8db762a48ac39adb462d8576bf20bc", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ca06681f573b4a9e46733c94114ba0a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fe1cd8e378f104bd2c1d4b887b1fe56", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "216b23921233c542be621c33a8791494", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e244ffa3532e1b172e36116c7ad1e19e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fba27397c2f6a060f23430cfa25fe280", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34c29e7d54b8275667409b9586a3789c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "def5f50db8866552e192ed83091ba86c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e9d2dbea2c5dd0f1a39cc4d9176ea62", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c37b03b643dc0bcc81895a7d4c51ede", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df04de3348c4c96bba67dd04e768c424", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89ab7b2fdec2f3819f3714c9552b0119", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a5c5e9e2f2063baf4a9ee48a73b6ece", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "008db59dd64da469e6ee8ecd11c14239", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "385042fc59c99b922373c90a1068ca9d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7187300003d676b7dc5841cfbc79100", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bc632419b8060356911152c0f5550e9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c3b266e5a1d43122539e8b963fc24aa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dea1b0ba52df118a04d23b1d989d05a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5bbfc003e963fbb2a6daebe24a37e62", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d906713128c5255387a485b4fac40aaf", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aada9bc04938dee60ea6fcea6302608f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dad077584610be2fc088af47bce82603", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41a93af176b9e1b4df1008dce60a2e63", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8909a45a9c4511a1ddbf7df15e50f7b8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9e5eb67dca6049cebe44343d63fef32", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6636258d92f17aa6964597bb1dc26231", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40121711ccae019e87e797b577fb81ef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35744580bf0458a2a4c30a3933fbaf55", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa72c4dd09bfbacac736fde4c9e17edb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbf6a51d3a64273ba963baf72fe08938", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d7b5dc8f191a232912092ae15bea555", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ee73c8f42a71503f39823773001dec4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59f7531785eb80b06bfd2cab9976588d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecedb803bc68c946d3dd1301d3816dd4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ede597c9a13bf4a621b8beb5bb0cc3ad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a36a17aef5c2983e772f1eca2a4a937e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f33affb9d319f69b7250a10103dc8519", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4137269cba8ef8ae7760c74babb6cce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90712cb0f79f448eaea9cc21a087d63d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ada711ad76fefe78e96eff843a37fa1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f4654e141e3a007b15cbc1285b4a2bf", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bc6cd20c5a33a71f089756ef75cdb7f", + "notes": [], + "params": { + "message": "Adding Dye Sample Plate 1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed8ded1ff2d1ac3f8a5588c95a3bc1c6", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be7c2fa2e5052f2cbf9b6699df61be69", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45430360ef862fed6fe4321f4be3aa91", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d410b103bf386957fd97683e063032b4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecaae20906b8a85e0ab821291806f300", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b73e1ead4372521e59521bb50e9f3ac4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f95858fd4848c297f43d466bcf16e82b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bf2aa187c428afabb605dd0ab318dbb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9de6beadd0a44dfad30129c08dce121b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e5a2269d51f1e2b68d74500e2ccd9e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f64493973ed45eb546fe45c90087a41", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b974998d89c1ccb348558769b1a0ab4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "072df3b767a6b1a8baa6b9cc2644816e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0660ab82ebd517fd5123f4f64ab3bee4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c54c3f93ad39bfdc8b080896d678eb26", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21e93f1cb40a35776d0bf76da7e6b972", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f925403b358fd0669764142490617aa7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75bf5f9c6ce3eb9f4ca20a6afea31920", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bea70f99c0caa20725c1952b4e0cab4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ca71e49c881f90f8a13f2aa2f98e40d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e9005d3e6d23062ec391919f4987df9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8343959215c2f2e473f8033a43e3d1b4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f107bdba685e1781ad312cf85f5a602f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be0ce6454d833dbe1eefc6d67352c0d1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14afca76beff119c66f65787780ca349", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6372fa74a66448c8a1350089086ea72", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87cf368bd1ea7e9e2514eadc98a7ce41", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdb24a7dee1d96bff3206292a5a0c606", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "664409e9007cfbc963087fec9c279ea3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3765c5b7326b39d0f0d6f2a84ed6d8f2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e75e58536712cca312adec3f52543c0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2767c070a72175114950320ae27f77be", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bb71a6947a1ec882ce9bb0999002d97", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "342a790b8df22ec7c5891d561db7afc5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9090d07d0d80731f81204dbfa2c28474", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "caa37430cee605dd680ffb7cfe8c8dab", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "103bb68cb551100d90c09f7ea868578f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "267ee58eb2f674f9bf666daf58a92225", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcf8332990e04f88339b9ee7d340633c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80f3a3688e745ab0d8c1a1e84f7093c2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bd61591db72dd9b91e8c77c0f66e06a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cbfbd9cd1fa6eebd49bf488b735164b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b362867ccfd9dc9634b857309b8a958e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b54cf7ce0773f3cc86b27ba5005cbac1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe1e3e001751654cfa2930423925d16c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af1ea0de9efceb36e834a60c6f427d09", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dfd2adf4d28ee8dc34d4b44c8b38046", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e21f825b290a6218fa9cabdb8e1a1ee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec29bd2d836670f829afb5029d069e81", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "595d5da4cf643ba47dd25664b7517f9d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9469fb388d4516646315d9a5e403ee7d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "336b88ca32217a6cd897bf989a61826b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23a75004e921f9894d67fc2953712192", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d83147896014badbf3eaef710a191f12", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ed68d4a326bf1370e59178b03a05bc9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3b73e3e76aaebc7b84a79e9de54fbec", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f422756240cb880f471bb9dbe5dad94", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0946a93937a56bae48410eccd3095c31", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "912747f9798b9b16f6d4ccda5605bcef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9dfab368e9e7cabe60b877c7723a628", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "492207ba32f4e6d32a74e9af1c558e6c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b57eeccb614d44bd7e5f960545aaf14e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c91e17223e203ec5d64db194d75f1904", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef0352b5c0e48daca9c1f5df2aaf10cd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d58f94ac27f4737d409b59d328fb88f1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b96fd6569c555760f68e10fab342f9ea", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60ddbc96f6523613ecc28bdf22b992e7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1efe000cd5b4c6e95eeee5be4e95aeac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2cb5ac6c1c8354ad5aaa174401b1553", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ad1b3e31930212748cb59b44dcdb9df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "387125f6962d635be4ce67d75bb614cb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b17cd2bfd1f1ecffcf8f11d0900635dd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "848cd38aa6936bb797613f979fc65249", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "905e10e4acf13c208eedfd9b28e9a4ff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b832f0bda995d61f71b0c92e28e0c59c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e6ef78cac72dfc30486298a922e0de4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc65b10f50624910a305b231aa7b85fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1a0a1545974f54433527b09c104e7a3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "560814ecc5850ca8d111d95bae95703a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6debc6a93e342f6a84aceaff4f7f7f1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5778bb96b513746935a05ce113011870", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86affa22c75da297eb3610c7980012bc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8c0d05fdbf624c28e0c83a1dc3544ae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e8579c15f37739eb1e7aaee780cb81b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "297ce050f265daf982486f7da69d2522", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "910002d6694780c51fdcc2df658a781d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78bdf0dba74d5794d3bdb03d1ed78f9b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f20cc0bc7cf85666059057cbe35d188", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc23b006dcc730169059866f6b2d96b7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "471e7601efce0f33c11f7ae634deb4de", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e62b9285cad35745d9ddd0ec907c28ef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3d34aee8d7d1c74231e3560ffc4861b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cf4387fe6807f5b1dd7fd44585d9cc6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b55c65187fe46f346ed94a789ffdc08", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86e477e8920c7d7ba12518bb9e4a04b5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2519b41cb0e5caece62dbbebdb948fd1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a58e678d379795535a1c4a1cd7c1ab67", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fef24fc2ff13213cb73c24df5e674512", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13d0d81734458858d3bb8326aefe061b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bdf309decdd9109ce1e8654c6903b52", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea42c78f5254fadd1dc4693434db3b40", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9ce3f32fc70dc94f875961e88ba05b9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bbfa76b145331b6bc667d5e72616cf7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cee77dd98567e815942f6367c09f48b1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f1815cc45f6f8dd548b09b3d7725343", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52fd25e7f5d3c19d0fc3d21cc2395674", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b94b765b10a2a7d18e272e10b003f711", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2ee98db4c15aa44eeef1a50747105a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c97d606fea283712d2d3db94bd45f481", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b930c1619d07a441c6582dae63b62d2e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e133102f1ba10cbcd0d8db75b0b31f03", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f2633b8b3600ebf0cd8d7584c7cb9b0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee89d19be42491d22d53b5df8b05220c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76761ca6b9f852da14c6aa7a1746ec92", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d69816ea1e62a6bd7b1a3c30a9507b5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4e63174adbb433d0971bb744ae5808f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edf68548945dbf180bdb123de398d20b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d89560b03fd850a50240fc341058720", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fc32f8e8b9a17921f1a80df8b45d854", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35b65536998fee80a681450094b8932e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec13fcc6e7ee22653fcca2da12397bcd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "146cb851de9b1b9192594f2aa333fed7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "482d8707ff8504b90e4f4a33e6d613e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05bee7fd6aa7bd0dbda93b6be5aeaf32", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "121634829040947d0a110572cc91e7ec", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29d6fb2176365a34fbefebdd079ad992", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "634016c1e1a883425e90aef7f9e1d5dc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffc22f71afc66d5a724b20199588b4e0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d073e3a34a39680ffc4b8e43332474f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03c0bf1641127964e7cf098c626a57f4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27fc8dd9e0d5eaf249a4b98b7993a51f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c67a7f3e20968c53bd4b57fa16bb3d7a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96cee2eb7c480ebf0c69f8d3e3d39e6f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09c6cb6fc6aa3bd59fd31f9ab889c649", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2e9222c048e920da2c7f8168edd6930", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b40b09d55cbab1be4237489423b6efa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acf35d31953fa7714994e38dca41dbac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a3216ee39f555291b0cf128f59c98a1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "273944c03a68bbb16daaf8405d615c64", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5fe2c8c044e960a93ad8fed9662be9b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd7989075634997002c21c011ca62c35", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36dcc0f00dd9f8fe2bd0f85dc4e5674b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "444af49c5b6495cbd0fc15f629e1c43d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea4d10a6a24ccefa384ee7c5fe9ccb6e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8fa16ba847e2bcf93a2aefb5a4e99c6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7aa6345ff0086ad7f2ed1a38c4d8a607", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03c5d864d619f331dcd555ce023b9bc5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3b577df2d85e1739ef495327d7dd9d9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9563fcb6961af5d46ef3697871a51153", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af3369974dc7fc173027d90953cfbeec", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdcc8e47f7be6ca47197e92261afba27", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d330f4282e72881831d8c74cd7cc14a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10cb192f81218f255f73e1660ea7e094", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "108fbd8dbab220192bdfbfd2cc5f1882", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b303f1637a20b8089895de7e7e6cdf96", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0907fb06268fc16e1b64947b9fea8aa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94add2d634b34cb1af7f90cbd12a573b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e21f67a6453394d84d76e94f9a7ddbb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "352bbd220774ce5062e13508e7283f21", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66b5a162b2fb027d88340ef6ebc33644", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c9e1e82c80e67a7f1a7ecc9ae7879f7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed0a0603301db02339f9ffd7641fc443", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77b208e9db8baca0aa364a20e499cd6c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70331196522e6dfcabc437c10dfe362a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e343a2c7e593e7a5c9745e9a3e344796", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9e5bb3a0fe89d6039f9c9e4f96f0467", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00c4732d732835a612fbb50ac9251c77", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1be238f662ee4c7b1d65277dd748430f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3c972cb758f37186d9d36278da5220a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a138503ace7de1ac6a4e5a2283ac97fc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4f1363d90cbb8b7e718a204cce989d3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12d9e85a559ea9fe1d8732ce37cbcf16", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "333082a82c75957c96cbf42325bb5193", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3170506b3f64e8d88984954faa56260c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0a2a6e10c27ebec0f19d0412795efd5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bb193eed721d8e12f4c221cdada0dbe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b821808313e1bb1cc5ec0d81c64b66b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d53a807b9260b628f79f1f90c169edf8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51e1c87df6d9c8c2805609232a257f02", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05b91398a00e4f7e6e57750392f57dc9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 65.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f454d157fe1e2b1569df07600b1bda28", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc15a4cf4c6c628eae4e587a6cf29c61", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 56.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dc586ee66fd0d062935c79c616f14c2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f9a11c7276214393e5c32b2e56b2067", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 47.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1c1b4968e5c2b8792c71f0abae642f0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23c54692b3994df5e4a644f024592cf5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 38.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2833f26da41ba2cbf77cfc8dc9073f36", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ef0b1054ace6d28c62c2af334a86ffe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 29.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "211c163032224813833e8793ceae9401", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4da2ea534d51f235a95c6e81c69711e5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 20.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a63ee1c7ba1ad52e317b794e88b8f063", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a636385667c2bee4f8f841a18f0f496", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 11.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73c9bc3ad28b1ae11170e437be15ce9f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8feb823dba95642b9d04b10ce505f327", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "170f88e148a47e0e18659a8828d65737", + "notes": [], + "params": { + "message": "Adding Diluent Sample Plate 1" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36f8cf44667ee5cd3cfbda9d97557cb8", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "393bb026f13b1a7efcacba6c0b91d632", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cc218a9f1c23bbcb46f8c9f9a01c72d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7331187b0d04942ef34e497f9d934aff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6a30374855fe03f7b4030f72f66bd14", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1631b9387c5968193b7c00b0c9d73fec", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f8ecc98d45f6541bd1723d65c6a02ff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82d3981770b6f007a99d4226e857dfa6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d14ef22a1c5e6c56e1f453d3f5b858fb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "610ed4b3ed8f295164201887a4873a72", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb9f7a1dba89f5a8cb5829f520eed2fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0aead3c3e923c8dc3772df7ab96ac7eb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0596b74c2ca65ece6caa847ad9ef01f7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da0e77ec36f7fd9bf6fa731dd3a58c38", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a529c5f3ad3271fcb3ab317e13ee93e7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a8c24bcf506307e786c15221e6b25bd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "204eafd304f9e86f72319c0f62c8c39d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7452503ba84acc8f85454a827bfe5b09", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3730deb4ba48dcf2905a8c49d506781", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd26375929ef13ef316765b2805f864b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96d98c678184626f7c62dc7c59005f23", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6c29b1f42ff874e6a5ac9c5e62cd613", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0849d3f1ebb51c4a074f24c9c02cd89", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6fdbe8b28b5836031afad6753e5e28f8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2006448c18a015ed9095a651577f5541", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de52ed968f42f065aff8eeb860186f67", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9770d4c91a46e9bdd667b0e79a5ce61b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee30ae41f990f740f437136a9a1159d9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "609d9b45fcee6f28d1c23bac3e4f3686", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fc97b75c7c3d3bccc82af62b4e513bc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f7463560379836337d5379d399c0c74", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2610eeb38fb7d9446d43a38d15068743", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23ebc0aca0e000931cdcad75cca36739", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acbb0f4fab285a60bc05cb5e269e1950", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b071de677050150447570ce795c65bee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dd4abe5cc714409eea9be55d3f15d88", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "811a64cc48e5f602ae7dad359dc333a2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea750120a518423fe9b2bc532763ff8c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a48faff333eab2ebc6b6b6f8554a8971", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9143d9993a7a901e9d59783082d3ffbf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6123d868903aab2b09d7c5a17dc9bcc", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd46043e1c91d26c0ce51a87a7103604", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84a2da18b599f45f7e0f8e2fa1b510a8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad7812220b727f5f69e56b1dc425a272", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "117d9d120b9300ee8070742a0c4030eb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07a9b86a151322f1e2b7cf6331f0763f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2fdfbd48262129013da80099734147a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da4d61a05300a88b30951f353da0646b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "134d4b16577b76ac557249a42b032a5d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35cb2be2a51ac030b23924f0519c3f13", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "441bb9cc754d297cb451185c0a56a176", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15bee432765e70e4d4a70ef6d37b1959", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a2177bc8573eb3ef233e9e785c89b71", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42599d88aa52e69f495575e6289acf30", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1e72fd8e5d7e10d6d055f636211ec51", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5be4ae32d71b53c648ca7caa504b1955", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f40d80c223095eae0f0aeb0513ddc007", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a38cf3ce4415c0202916b0d2a743b0d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77f2673c0b713eb12c0078290cb816b1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16106354ca6e3ec237ec345b3a4a12e2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2357480b658f5d605317157bb786287d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84e732f34c0764dd92a1879d7f81acaa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ada78a51bb7e158b12b4f6c51e4d8b4c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2213b6b609321088f813b54a5a13cc03", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bfaf83c6ece30fb8f4d33f3422adcbd", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9678db5542948ddfb5a988d3a5b5df28", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a15db2d069edba402bc274ba597ef28", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4469731c6f8f1159a209abd753b77fb6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf8de70463ece6399d901d543e091b66", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7da8ea73b770c6ee80d0db6b14d46af1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62b9246b2458f837a833aa25f778308e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b904e3f4964705efc8a37891f446679e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fd187d3407b77b660a14b73a5af4795", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "553e0fb0459247fdbb21ffdf7d9aad04", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33ece39c90d5da6cc0cc9485da6c85ca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9ad5a2b6743df2532f52ca049e56cd2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b0cc43bbcd0016ee9455f92b585350d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d640f0768606dedfa675806e075d47bc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "064894657fc748b3f8d0618fd2c214c7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "573c2e13a45b0325ab2bc4cf36f63e67", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a5a3ab1613c4b020c16cd3dd1dc93af", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0757caf5b40bc1966c3ea19e4848128f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9573a3d76b1f630647ac40ccaed93b1c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d3c872d1226df88e4b05cbe8ee8fd4b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71818b35904318be4b5e75d68ef5dc51", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3245e5531e072f494ab1050ff439a7e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2e981088194b7518f06f949644e2003", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54a549431f67fece0ecd87604ce03274", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cc15b9846c343cc673a0771e6d6b652", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "405db4894a7d4c96347574a922420b3b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e3b8624674906123c83030af1dd7f8b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b12cda08825eaa5185b773ca1eff3f6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5e3c5675e74d8874ef24775b6498da6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f332f7e5883a78fd1a144d1c5f70ba54", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4863de97c3b5b48adb261d44874b2613", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3a99ba0258512a7ec2d0b70c0d00b3a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "698dd60d9605e2e13fe97d682ddb647a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4519c4bd3961710cb3abb28188d1e7f4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ef6e05b980da1f6349e660ba45bbbb1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95303091f584ec4661b48f0439cf73c1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef9b8b9a7b7eee0271131c84cdc88fec", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e85123ecc14f64735b7ab41bd6b7bbe6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a70e89cab890129725bc71f5e9dd473a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a04dc170a888f22922acda3a39863862", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c083379ecabf183274e4694837c8b24", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af5556329d30a1fe97b3342f7131c59c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa622205b162eaf4c753535f552f7a7f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea81ad102ca1357b5c2d54bf937e0fd0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5d7c49d935d608b285318db210a6dc8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "494ece9368b3259ee901f3ce776d334b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ddac8080ab111f4234d17f06ae6ae6f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a6981af89c1459522a57f46be8c8ab1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34e6bf7df0a11e5fc03d44ccd7c78d37", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e0daf4d6c3928487dbdfc4bf894386a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be526725a8aa1c1294a29dca541b2988", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b92c23b1e3237630fa3f651ee88d7d39", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "400091479c585e7deb4a096cad349850", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba7bb015b8f251c1fd70b0346f0c0de8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7611b28296d71d857f5e38cea6564bad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47bc655df4f5b366a53770bf7a6c4bb4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a32f545e6a497152300373b1e598766e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9474905938c4a80fd89f5699da892d6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c305f319cffaa0949c1cf7a24c3809fe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc965bdd750e53da50cf16b5d7e70821", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0a7cf7ac2912159721d2d9af0786c8a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbe42f153466e9d5116f14d59017bfc5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd9f8fb26bc9f373da20b908b53f41a7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24b39d48ab8a7de5bba108b31281e41e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfd07807dbcc7e85bea4c4bbed4d9492", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43b612f3895c896813d297710dca266a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe954c0cc11154e9c56eaf89138caf1e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c648819ed6da886dc5201a2b6ba9870", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "302e592b9356e9ea0bae6104fc54f2cc", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5d2a605a7415f0aa1fe20787ed6ba1f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "607a6afe2771c3d92a8dcf1f0203c4a7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f162419e27e8f96a196d253eb6ed9613", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "238797138160ed9a8a3cab20a75d92c6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5d7abdc54616b69248cf17b191e4619", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c8fc2875876ca150d01dc2eaaa7ad34", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f69daf6435e8122eb829cfc79549c34e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c127dc775520080fc4fdaae688b61d6d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31c7f89bc91df168d6f1771229943ccd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c88dc04bbed482dd00870e607b143aa2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c04a4c84b8660dcc0dc5f5bcd6918cad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1a3c8474a32601c7a29e98e5e67496c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d3fe3b88f7b98b3931ab898d950e777", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1168521f46a0811e1dcf10450f7768e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95d9100fc0a3397fee979168f755247a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f4a061a0ffbeb0caac52e95cfdf4c8e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbde7bf2c55f7c95b6346d169576495f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57111c4af58149f25fb38e0a44ee57de", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37ab10cf9aadb8aac99399b8e403ad54", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fee75800f2badd7d79e7a87bf019758f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "783325d14af0fed10a62ed7217a36335", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "115cfaea7c66a4e6aeef926388dbbc35", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fcd83f95d13e4b7af2488b8fd2b2015", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c97915f635fbaed33307f7e3e50d2cc2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36431bf22bf0c13f56d2de2fde3d3d95", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f9b8ed2eb1fd60bc205c3056ecaebf3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "095ca48b15c259dfc143b8197ec84959", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6ee62b4d7455eef193c95a3afb39d7b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d841be634892e3dcb3413c43885f406", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a20d17dd829e71a9033f2c149fe491c6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5788efa3c275bd16d265f838eb382110", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "256f52c1b75fd13767b93b0c47f470f9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f8d6a3d15d9f7e5979532de80f8a09e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be9afb67e0d57aa3251a86477aef5219", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e74b6b2238e7fa06ba86586aac94e2f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f815a1fa4f243fcb4700be79ee66255a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5f13487d019dbb1e524c1f626225102", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ded3c8b851dc5674f6d6824b586cc5a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ca337fa05bafce64d94c16c52aaa535", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd9e70bd3d4f55e3f51246fd0ad67271", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8866cdc7a8ec1d22bd3ab152165b2d33", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0376387091932c8b61beb95672a80174", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b61bd57b9b50f9cca072491639b519d5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25b11c58024d512827c313aa02fac498", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2d7042fa3cffc85a09ed762fb160b45", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8564afbc97124a2a811d5069509682b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "515806252ece494b6572ef72a8842b01", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8f6e867d19a44e3ee6ff9ac1473a058", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dab5d65b14e33e43db58cdacb06539e5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd75df1c7751a87642a101f12b76cfdc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d66466835fe61522bcce06ad6ab6f270", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a384e0af68474ed5470513c038d3161b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba48eab1b847a6103ef7da6ae9275e54", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0879657680d26056449b884cbc124100", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "421ebf6412a583d99297f1b64b7a902e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "879cfa408a62e1be219f02559a7c3910", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86a769bc0e033c46f05fcb251ee6281d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4b292ae699f91bff285d390b38ae692", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40f9e786231194c405ebfc0688d27fac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b91cdb34ee7d38df3bdc1fcbe047ec83", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52e16c31fa33194f48982561bcacc424", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d72f0eecea7250dda8a1da269e928a6c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0588f79b9bb535b020aae195d6ee732d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4481939f9cf95a8f6bf9ae1b42a3bd4a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86f2556dfeeb0520a233fcc08120fd2a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f84b6e91d0c688cd02e51838d7889d81", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8075a440b47bd351f445b65b900f9f5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "569fe7f667dce8a34d96fbf9095111a4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9320bcddda91b3e91deb24a837fbc9b2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b64efb6f829cc0b25ea0a76bda5f80f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4e57443cc209c139303565dde87be62", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59c0c8ba58d41a0e6743ba56b54f6674", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30e9029d2582b8591de3824f52daf8cb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e6d8886fe4c29ed6b49305d1f50eb17", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c75f54243086975684b1e0d2a28b173", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb97485477cbe8e2a2dc81c5993e7b1b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0ac553e84bc356202e9d4bf3df43ae8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "255f9f657e67687769cb18162f668ad8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e051f0be20d83bfebac4d5902940245", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f11e943dcae9fa2776cdb01db227817b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5c01c9904ad3fcb348a49ad6f437e2c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfd52e22fd88fbef17ff614ffee73e6d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3394aeda8759697becc84ce3b875eb9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de3a341cc3de18561d1518f9d7fc714f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7e545cb8915a0e7648c5dfbf884bcec", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13971b4a6336d7a88e8e2f4e997fbbdb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ce290fee4fcf4114d7b1f87d7284327", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fc1f4ceb093ecaa39406899a5ab2f5b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "719232f3edf835ca4795ae5fdbc401c6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6409a2a1df12c02283ed7e5f5667f22e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57b6e48f411cd6f901606302abc5615b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4087fcca01537d1f8704324ad9bd0e22", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "843290d06cfa707c54870b2858971190", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c536861ca4221c5939858b6533100baa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c137dd54f8ab5563530481cf36ab8ab", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1442dbecfadb911ef694b07dd71b05ff", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37c2c3c8142c038c7da39a2075bfad33", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cfe9871d6cde7c6ffe820658af7be8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c404eed2fcc353d360d76ebb341fe60c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fddea93446f99246f7742788680f987", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c42263dda1905fe79f76f18e8967d36", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad6f68e9704d5a178b336483d5d853a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "051194f754f5bf34c7e9acb4e4f55dc1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0111c0d9b01883a229b88dc436359297", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32671ba0d60af09bd7a02b5527975eb5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d92eedfb36eade9159be943f8e4c708c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4bd66956487e6d1c62ef4062701dac6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8de90e19541cc0be1dd296d34f42044", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eaa706502e97ec4776e586b3c0cb23e5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "842450dbfa3c58259e0ee10331f3e7d1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd2ed0a0db231e981f63e44852d8876a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db444e5fc727be0a678ee14ec6d06cf9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5f0fff8fc9ee458dcb33fe65bd810ff", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7dac105dbc8184be5620097513c233e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3379ddfacdff384f9f47fd6b21f59891", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09586e68693d7ce3cce7738a69b7a1be", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65bcca06dc6172d06875928e165c8707", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e2b93c8f9d5e9c871ccf59bcd2ada76", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30bedef4699c245cd2935ff4901f8151", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d014ad0623f5a3b24fe9b2b04c21816", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1ec00485c8f04c4328da4bc83ddf5e2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68d4add3c9162b3362a710e6625433b9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7107df9b31294be126ee7517525b9ab6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e04308551648f1144bfbecef0a1a918", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f6683a226c5c2e85e46e3767142f5ee", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b01b32a5903a65234e0d8349425e2d58", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f4c98c10ece6a4fd98a4b50b2c71ede", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d908086dcfcc1d0f6dadd60078a37ec", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c8260afc2a1a9b61a8f21c5084adcde", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "547eb48a76bd8c5296e93d881a879ab2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4259d1e58c26ec10f1e932ec661a877", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88c1dd5ad588247f78015769d8d89ab8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae99f4d7155c361a641690a418e18162", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca3147d453a107f45b28923b3fde8d85", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "041e238ddeb855f6668d9baf1b9c4c33", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6af7724220501961af5854dae8befe37", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3866538d0f5a3cbf72760aeb8865f8ec", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f6420425af09d2b80c49bd3c49f62bc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "860ca03211316b3f036ba1ac7b8af2b9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5e60cd7ee2b1705746c4452b51b226d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6eb5ccd43605b1dab1315132ca1de9ac", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a27923143867517204227dfadb58a08", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3b4f230c0ad40a0bafa6a767eea33e0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1afb929781ca01295e8bb4eee5d71692", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd75e359e6c222a5cba61250b6ba63ba", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0be3ef22aeb7b0505dcc82c0fdea3f29", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93638353fbf35db9edd0272c9fdc941c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76e67711826a798c364ddb1a87512a66", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bc3ef963fb7e8e956a4fe8ef76deec0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d828b9a542281d4db980b8e256cc4b07", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a7db256c02994d512cd18c03866d289", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b6b47dbe31489d019d6818deb28d149", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45837a9502d6f1037ab977fd724881eb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "038993b6c1d174b2d9c0ea13dbbb30cf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d7b962028d11fe09f361493f948455a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d11b3088d46bdff8b76261babdbdd939", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45447edff033d79e5fec5e6bdd668cdb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e4f4a9841c1060e5a5898798e9ea5fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc52a8ca3e0b599152a5d5dc26b1d679", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "499c4aadeb828d6aa2ec24bfe7a71700", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f57296301e1876e338e09024d4b23d0b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdb9056d4810feef258a30a9bb44e617", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed57b414d8990fa62337e69afffc8dc6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6769ee78ded7999b9441a92d8c5aec1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ceee111cf496c3977f2b663f26a19be", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "252a33411cf3ce4176f7b74bd1e1add0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3f18821eb5f8ebe5f6d1834efca0c49", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e26be1f09308eba5005f41bafc998ea5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b93f5038979fe89ec709497e2a16a9c7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c630b77982d3cb573672d6651af90171", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a54c63ae4d77b09288c3b6949cfec940", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1b8074ffeb8f4051129f32ff324410b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b68a4ff43ebf1cd05c2af78d9a10d6bc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75a4116f2cdfc1df30eec25f2f54a3ed", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0521674c9dfd76703e637bd0de43ff0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47bba3b5a6dab5b63e8d514206ac378b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfa16649bde1e5c6c48027699abcc0aa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45466753798ed3b79707864f928b9873", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "690fc76ef9d8ed157121e04b8e2f843f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdc88068a797327b85d1baa3e26f1d6e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06477a79d8aeef21c67be3f4541836e5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6f7e70612631989eb35141422558ae5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbf5b1cefd7396ff7d5bc4f4e099f50d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87e8ed39b93036b6cbd784015643b65b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee7284d240652c6391feaf25df5c4095", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "187618601b6d35ecde9397eddb02660d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b98d34323faf12046f9a04b2f13f1f0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a88bbe2434ee1c5a21bd25449832883", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2fe19e126949bf832983bedef41f7e2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e496175ac4fc852d8eb48c74bc04d869", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40d152547432f8333f596bc4174e7b34", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a54fad42b732387513c73bb1f9ce2e5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec66c765aad385a5a83dd694d01c88c1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14462c7f89b9adf1a0a783f1443cc340", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d31c26dd569b38193e1f2f5d99ec7edc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbef9d15d577435bf6189f48f508a4d0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45cb7249b5ebb2961d095f4fa819809f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1ee053208fe122d0fab8fef9333145e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d1e49e5c72bc46fcf76c20ed99202f2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59a2286a154c01edb3e9ef584b1ff28e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6631e54c8d11f91feb7542f908c930d0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d0f912006016f07e0a8151861c12056", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc46207b344e2e566fbe826fb80467ba", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18cf16063b9b4b38e31c82b80c06cb06", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "644848e3ce1cd8a1a9b24b0a6bf6aab6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c56b610ada749a8767efbe7ac3677dfc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e4668d41454bf6ba20f262f10e7f4b7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c261d2c8c44fa075797bba3f58adb0c5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b97f073f60c09615db6692d5dbfcebb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9754923d929cf461df24dd6121cbb13c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d652b6e9ea984e79e479d0d5c33c3cd1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c5a8243bdde994474c0461052898da2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30fa17297f1e5c6298120cd69b8c1f73", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ed651be7a17b023f3e2dafaa39d0e8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21ead50fed761fe2949226b69405e4ae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b663ef10432380de223f1ce4d83238d4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4d627a42ea521c5e613113417432699", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c2fadd94f889a19dd2cc69e0779eee9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc5c15caa84009d4981d60c901b9ef55", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 74.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9069e9fd5fde582a767fc41ce7945cce", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46e7c12fe61a3f91fd72580562d90d35", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 279.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "422a216b029deefa5c038e97c9a592db", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd1711207be4b3ed6aa3a985c63dd37b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 65.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61a49146e639384917501c7fcb802b5a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 279.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0706f4bf662f68f75e33615c4b5a3d60", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 270.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e2e4315069405f9be9fc2424cd2ef5d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71b6d7bcdff91cdf94a1e41aedd1f50f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 56.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1af4138a3adb9be0cdceed308a3b9e6b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 270.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "835e609f3fccf2cf88dec188b44bea0b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 261.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b43e6ea99c0f5e8c2fd742998673b2a0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19178def65247f95554c1125f7aa6149", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 47.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10de11369e1e2fb4591f87511a13d4d5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 261.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8929d43530d6dfec5818a9fcfa8ef9d3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 252.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74621272d2893c177c19b8db09574740", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4b3ded74d64a0f0d77edb39419af48f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 38.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "492ea980ba14c468797059c6ffa94adf", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 252.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a5721581e774b11e68ba8db8ec0f9c9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 243.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09dff087fdc2cdd7495443a1a7e2d28f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7eb395706f84e00e3bf90b44bfca842", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 29.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bb2c8e6df365e293926c4d8877d9ce0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 243.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a323866c88def176f221a2a00a7b51e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 234.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cef5e86c2c3a592d605157e3f54f97ec", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb804839a0c1c124e5f89859d86a4478", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 20.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "748258931340d167f1f05ac9ff1bd78e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 234.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "774a97874826b7cb3ed38a3a172c1908", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 225.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58a71210c1e55986d4c1cdbc26443087", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc7414d96f1ee2d17a8f21ad670f6bbb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 11.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6d02ca1e5dcb3ac85bd584f881313d9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 225.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "301d60b8fa64db3ca6a5ff772ac48fa9", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92064ff22c597584cd99c69c7904277a", + "notes": [], + "params": { + "message": "Adding Dye Sample Plate 2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea1709aabb6a6bff49419adb999e4ca4", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8272dab26eb0aa291815a0348999c8df", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2162ac31e137f13847b6fa67f4a608d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95f3134314cdd4177c806aa25f9baab9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e85489508d2278b4696462c6e5404419", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f4b8748dafbfa1242fbbd6b2358bbfd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8010ae8421119ef652fe9b38cb051220", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bea04ee670899c6f41c05670934b9bdd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f23f65f64305b15de85dd33f631ef619", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7431d8192845ba5d710fa76b0e7547dc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4eb05ba1d588eb13a6a969dc09d98105", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35a0f25098836bcd22a9387757ece368", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e72f34185d1fa0903cd44b6d2922bd0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5edcbec6bb81a3a1dbe23f6f1b4a0c89", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0613e2e9f98e986cee0c0759f0aaf742", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89e98348349ce1404ce674fd8e046e1a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f687de34a73cb393de592015000dea9c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f876415fecfce471e2da0ebfe8f159f2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c08e2893bc0d4a775a746ddb75e9e82", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59bc6f95285e74e2068c142fd0cad8c2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64bc60b42ef6fd1ef3344bf2b5f2af83", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc3ff7d2f6b6dd2b22d0a1e906008554", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb85bafbd0841eaa688d1fcf669b458c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10b14842822d92d66ad8da2d892f0263", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e05cc6a903ada944dd9ef63a19ff663", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5531065ada959fdc4a7009219bf26b7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b386d05a9346f2903bebeed167ad4f53", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "055aab8c307fdc10387411054747a765", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa005fd475780f40b766a9eca60626ed", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5d0c4630bdd8914718dc5aea4c6e6a7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b1053b5025d0c1baf8e61273561b9a2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87b2103ccd19c51e37223bcb35e24a37", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89610abcf4b307d3b5976d42a5442f18", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84034cc4e91e666e86bac6a7804e22f3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5301bc2a605a34a2d9b44a82ee1e09ee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b51ed5ce261a64e530ce22f58f3987e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a53d4260d796f754a0efdf0016dbc24", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23a67be16ee9e78bb91f7254da036983", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f46ce4afe9d1bf29f294a863ddf90d81", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "022e51ee4d8d7be0ad0fdb173a2f628c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33ba79caa78687b9ddf60e332a7181d0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c4b5ca7637e3d96fa2ac3c93a0ebd9f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b28783825b1e36725eef0f0a205c3fe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "640080b2e3fed20b4c5a3e323a440bbe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c090bd9e4d831516e4c6fded7a94a8b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2661ba27efc147b3812b9a200dbe606", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b0303ac53320ca40b62cd69faceb62c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36d9e5e1601720d8aa93bb490d24caba", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85549016dc90e21109570973492b2d83", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db5dca37a049eeccf89f22c793413d28", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28577adcc9a86fd9eeadd8280c5a2881", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa281d4fba61a1d0acbfcf4060632f66", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3aad558d328dcf056dc505b8b643f217", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67490b9a91dcc6c48009f9c2284d70cd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f64b3ca146851b46f267be6bbedebc24", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6d682c148c678fbb640793e33709f39", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "331a699a2fc63cd8719af84f87482747", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bb0dea79e0de649c5d4eb597f3e93d4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "069f83dea44f6665889c987f50a3214d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa9d2e8cb322138bd27466c50593ec2a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c08643ae10cf1f8d9bab0f46f84943ca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b851cc2958d9bf2835ad85605f3290f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06b7eb54761969a8f4c59592734f9027", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b185dab391fa8d799ff5208b7e71b1bd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "484d7082c9ee44eecca03da765b55db5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20c4d192616ac6e8eeb705901835eb75", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee08641f868ebfe2fed4cde951051901", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea0687be1cd26d9c933a22760c160ba6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf28bbfdf65cfd33fe3dbd2d2775c8d5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9344d990864a63d277c6d575c41eaef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86bb39dc6cb7c5266a56850b67591739", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b02bda8cb65941469a2184b1d919579b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c55355e8968757304c68578a109683e7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b12894491a03e8605c72946eff1470bf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9989f77bd04cd97eb58dc80aa889eea7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a65a499b247eb66f98745018cb6781d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "013b90f344d2a820ae04953c39e65a5b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8049c17e9ea03a7524f6654b7b4c37ab", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0278f5938c786282cc1b361b82e524e7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c9c6d01d2980a7c0c1ca0c69ea5a195", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f82874cc28f38e98fbc1162b5309d30", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0873a30ab1f13f52f3056f943ad7771", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f65b31fb97ba470ea3d8ba3ec3a63650", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20622bbbbd7399a6198ff7a8da6ceac4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0ff11873f89e34dbed8f4b11823352f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6c630a9033ba082504b72b5cd55a214", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d2386e093e9067344c5197af3163541", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "913d823afa7d8679c772c7fbd9fb8cb7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfa8b0b7dea3ed2f74b0dd8f36fda217", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9eb07c28ea9a02c20c745c84a9a63c66", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4af74926e53ba8e6165c32bf77efdd11", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "988bf8d9673306a597a4ff4ca746e508", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60020c646feb4baa4ea094c549d710e9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9396e6b4b05bdb2831c546077c5e942", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b5e4fc4917c760211364a5778637b43", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e8d2f9d8d033163bff58bb37eb15422", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c5508c5fb16f3b63ff85f007a656cf5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cade72dcf30c2fbafd1d281da968611", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a16ffc78c5775a283259cfb376a420df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4df5474f1e846c9babb6a541ad198641", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e05648052c172b6e13770d792af60ef0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17eeb03463b2bb4b4cf4d2144c7cacf3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d676742e36fb8dc6d9d8c9c040669f64", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6274fc164b57d15de1393c89a032c06", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d770b1db5713d547af188f36b3bf596b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5686a1427113f5fa88fab4b072c124b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8113240356b0e093ed40b4ffe9bd63f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74e36d4d6fec12267c0943ce7340aefd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a921bb4fd047e51c1e550d0f4abd34b6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d802a7937d10a621e73580a3782d217a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6eec47ed7ed94044eefbdd893433379c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee915bea21e68e88f67e44b272143c2d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3df1c85a4750b9803a71e38a6ebbf000", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46524cbf69f8a4b91b4f06fedb4a8dea", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b65d2fbad06f01fdfdb972797bdc2bd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb75bbf38a3d9c12ec94471c7da2bfd2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85cc27da7d495601f018e41df3efe010", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0d7d3fc65cf522fb08def8ad34508f9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31a5ec58ee0c024c8caab1cc01d34d8f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "910a4d7332fc94c6b3c267a8189954eb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a8ec799c5c21213db38575388fe00c8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a61f9732c29744de4856ffed590d386d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34e1ef2c6652c26ce4ca8564c174e54f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e47b1a5a98d2d995dae824bb4f2ca5dc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de819146d4f862f0d36f9d841b5edbf2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "291bf67834a204d5f00272436c056fef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b365d7482ed830153eecbe976d9524c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82335b31386b46ba904bedbea084ae3f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3abec0d0cfe71f67d632b739e9536ad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9239eaadb1a8e9fe41ae30b329c4d61c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5ac0d76b3bd8ed79ea7c3a83ea7b432", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc69ea05f7accb33fb157aa8e3d3d88f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71372a6e899b9967a12997539fab4377", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46eb27f74e79b87be5cde7c759319b28", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11fe9388cc914c605d3678e3c625bc70", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcba660fc46b3da6d355290a5f2d8fdb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdfbfdb69349699bcbaea51bfafdcfe3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0510dbeb6127e1c37979cc6fb1300cc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "575c4eb1521435be1e0e199a8603eb4f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07a95e5f43e98a050d189bd5378c9628", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "628d2628dd94d7e87e3c417979f56b2d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4afb4284e495c13906404a365960222d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eba2e0657b74f2d0102fd3c1c484dcf7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d57c61fe9f1a8205435bde94160a13b1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10944bfc601f618faffaee86f84f527c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8611705259c3fb62a3745b6d2c4ca2f3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a70e3d4d3190d22375ba7771236f776", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "147a365e0d8219c764b9c108f27c6fe3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfa8754cc93fe84b7933db2d18249aa8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c786ec911bd08a208c0aed83597ef16a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77f1a6a7e7c964b6285c02c145a88ff1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7134fc717caa669121b6c9f2854f4b83", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01cbace3bbc46613973d922eda82164e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15db452de075d77903ea216b071e0451", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb0fafc63ae782ed8211aa0bbf5c9512", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f64afb6fe57c2a6ba7564b0d0eef59f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5cb3f82d893d35ec6adda5f8fc1bbe2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0ffb78b80d2b6a55146c64e91f6d955", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f87ab21678f966a61c3270149eeb9435", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6a0cce1aacc5eb1f1d28f9c2265ba0b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85a114167c4d21f8c29f764356fcb968", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ac61da1fecf2adcea51a38127325a9f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfe75e1042e2fa8d700b7c82eb2f6509", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94101ad612d604187c0891d1fafa83d0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a04e09f81468e42014290c4f721a74d2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afdc433908b71a90e15171ca2c72a7b8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8ddb2532273837898c98ca007911958", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a775fd45be0dfb9617ab7db99964f385", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f2cc58f9eebe3a836f10efc38f4a78c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5180958ecd117f36ca6e5178c4029755", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2949b3b541e95338fcbb73a7c70c5f7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1634ca4f6859533badcf785aa5adb9b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34356872bb2f5201b6203d80b494059f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28421a9716461595d72251a0c71aa9cd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3298f6296c1d9f1d29fc5a528a357edd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cf407bc3e90261b0f98aea9078a7d5a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb2310ef2c0009bfd5c079cde2e059fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f60036d154595f0cab491d1fb15c7dc1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8746f34e642bc29ca62225d8ee2dd14b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bedca0903f3caa7e4e116c31985d68aa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 172.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "127cf0392f6d53a75f49c31c120d1d7a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59bfb79796339f3cc654df3d7db261ea", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 163.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef86f313c3f3c5a7926eba7b9062aa89", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03a0f84ed6db7959bc478be359476078", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 154.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95ca1451d6e5316c28255622c839fe08", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbfe3fc79140ea16368670ef88700939", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 145.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10320e0a667f90603ab544d84d0acb96", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fe0813b2843c7aa7c63880916dd919c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 136.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97cec283578e3214053f4902861626d0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adf3f724d364d9e0b9f0482968f881c5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 127.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39159284377a2481be23628f877a1d7f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5daa6a3153ab76acc291428848ef7040", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 118.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "915171b5ac3ed9f4ff5cd873658fb6e0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e83ca6c5c7457ec39565fe8a1a250ce", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "098311f4bffef377e0e619452f87f85b", + "notes": [], + "params": { + "message": "Adding Diluent Sample Plate 2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0892b1f37c13d73157de63ace1618e9", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60f358cdfdfe7d9bb2ba98b8b17bc4a4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffd0cbfb6f39368572847bd2e47593fd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bc80ddad853a0234d48d3ef9c1bbdb0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d7daa15a8037689963dcf28a0a53800", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 14.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ebe20bcb11b1ae23d4df0617f2d30aa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6bc39797450f33ce9da0ce7cf174eac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92b576e1203506a35827f6b41198c243", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6b8dfbe0bd98624e0dfdc639788673d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 14.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65e9a488d773199adb630892682a2712", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80e97d2f4b813fae16f18dc3355d41db", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "208c2404cde62f380066ed02dce1ca65", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8cdca38069ff3e62eaea5f72f4465e8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 14.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70a643fc35930a5a89e706e10547a869", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b8157c811019b06d337b285ae973387", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b7a4ed34d319ad0d294d21043062240", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ee5b460c552e2bc8baa48801ccbeb0c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 14.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec43dc66003fbcf03dcd969510414d7f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15177d1a2b7c430d3b22e74412c3f796", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7f438d99a345c9db3fdc9faacba5cab", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0851088e15cace3b1540bd37eb70f204", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 14.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16e9992a57b18561d2fdafc2ef142a1a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd0a506becd4478d3a2f10c39e49bb4d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6eaeab37949b9bbfd492014ef70d77e9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccf5d570bd68750e312770203004fbe7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 14.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11ea316bceac54439145dc615eae49ac", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b08602f4e68f4774594a11c83231a3d9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3abdbaaec3dabce1f4b3ea395695d29", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bd84dc89935aacd59b3302ea0d84ed7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 14.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc908f2e8ab1a5f536b90bbada5cf0cc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e244bcc8d1d711e5f940af87e154457", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "247136ee767c7389b39b444ce2c0c7a7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c247b2a2961c854a05b1bfd2b9b490eb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5ba10caddb6330bb9a62152b910a88a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e5ec14ab3b117799a94a543fe99920d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b723c633aa90a180ff5d2ec0efc5d9ae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a8c2113640bc3b082b5ed3b83b146fa", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 23.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ae9d14d64f1a70e418b55ac4b9a4982", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcea3479eb5729a098cdd70b9b3c8567", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0200c3b33983f8cdf68d843ac6a98219", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7647b927fbd660b4d93ef52d3d9a24a0", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 23.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08a4805c5df45b7b9aa21996152fd89e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71ec2f49485526a7d74386eb32821f9e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "355f41ad4612df033929598bfe93eca6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee7df711e8a48e116fb70faac12e1df6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 23.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d55632229f1bbde975845e2dc85f621a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "653d7a796d5fdc7cc0a023ac0bd993e7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "582422744fc333f89be8c2a50b11c7ae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1eb703cf87d6475854cc922309c24140", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 23.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b7e05e1cec0be33690722b40b38ea4b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "281abed66c79058add2167747366bf88", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec70dfe3466b51e8a9fcc8544360f59f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de8382d6aeb15e1cbcd846500d7d629f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 23.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41c4930513a2119c957b4ab280a801a9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cc92b012b5b6fba0b3c25443d825bf8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4945e799bda27f1b4d7ff26021c86d4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d694d4948d11276cf76081d658d9dfd5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 23.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "663f06ce187e155381b0646910295756", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "340bf27334bb6bf9d3804d20aefcccea", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6ca1501081ea0e654a08d26785e1c4b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91d691beec3da0eb5401928b785e2ab9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 23.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07113258e53a56751477670107e1f7d9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "498e932c95727e5c2d48a8f07c12721d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b27862b3d8aa527a86fd22dec3440f30", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b485322a02ce9492be4aa6914211127", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35b441137385a787ace7dbf46b21008c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07de10c8f9deee187941ace01b1a4716", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1684be8b678b8995934a419e6c88d121", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46060e73c9f153a5d9d7b36895a6aa9f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 32.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52f7cffd80a2e5a2c38a903e3f7ab7e3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a60d137b101048716a16346a7011684", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c56c093e29362467c16ac2758483f46", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96aaaa9557d3b1867bc77f93646caa54", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 32.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71abb1627ab6c409a76fe23224f06495", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c90023662a856c2fcb743eb32457460", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d2dece3c2ab738099a0e01fa8dcd0f8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07c7ad7a84b9d8389bc446b4ead43910", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 32.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "534140b60ac062070ea75aa86d6e124b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8f6781e85955f80bac49aa4951ec193", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da15ed1f13f214077252c7d6c8a6767f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04da87c93085802dd4fc819e6e715f84", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 32.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07855f1a9167589f555f881ca77eafb6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c340d77ef296c53d07f53576a6e46fa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c013ef6879d12a1fabd12deba1333a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80f38af90b4c666d4d2341b44d6613f6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 32.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d614ae7f4c935b0d17f8172f0d6edf7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c47699ffe82a37e70c01c69e97b28db4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38716e8e8ad4f77eafafd22bf67c144c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6b73a7d6c140431f03e04a9aefcad49", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 32.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb67b70cf6195f92871e9f613a360126", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "890082aa00d257f9269494d4e84518b8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e558d0f4d338098f3adf846fd67f786b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a20ed940111c9b216d3691dd43d4846e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 32.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0bd4944faa795fb27843d29f106ef812", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b04e7db5a18dbbd0e9b33d34ef208ee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e859d8d9a6df2b0d1d1d95047ace01e2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be6285f19d7eee9af0b5443a04072874", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e49fd589fd69b519f0841f57eac52b6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecdc57b50587c2f1c8e873d75912bc43", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3304b4cf294a3d249153dd3be000815a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d12602408a3554ad1c88c1e250cfe2d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 41.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c625f8b3d472189dc071f3d2b2d7be96", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9df7d4240364937ceeb6e65c0631147", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "497d1c9d655906b443f030f3734d7ac4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7aa3185fc642c61a40526d39927f62e2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 41.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0059fd4cbc3d178936444da767f15e45", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4913f22329d6785e63f7f72f808253ac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f690b1e6bd85afc2dece2a7bcfc0234", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fca4df778ed890b93e966baac3381e5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 41.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff4fc66e65730f7c1e7134b5e6045901", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c00c9129932fbdbb9a508a4865f812e5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82470aabe142bb6bc69b598dc4f4fa23", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7994cc300442880dffb057bbe3f65712", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 41.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46134cd8cf414b90b2dc0bdfe5fb986d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61ddaa6a207d9aca48127ee761873683", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d82397c876c3341d6486add004d3319a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48bc8457c0f0ea5cf08764a3ebe0c25f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 41.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a22bebc89b30aa764814e03131fd5c85", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6bdaa9ac3d57e8770e2d5fb825263e2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35a4341a5ed01f7e942993cef910f558", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "334fe32615b0c9f7a5286a371d959f84", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 41.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be513b08d50e00c354caa752a7adf871", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "464113524ea14f4169ca6eae42716192", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acde5c0b9a9d30e866b9804fd400df78", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "caab1d94be524a01e0cbe14551128c4c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 41.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6844e093cce0c612d7a4a0ab90fb21f0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d41f45c8e3f0601e431c45e35b46bef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd14c26d77bc785255c1f839b2569193", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0eb35ccf452a9e3a0543c2b2f68a5ddb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ead50d9601a7636ab5560b20ce57d1ab", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d937fa0824d8cb3bf3f16f18392d483", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15efc7fa5a045a140d85a59b0669ec6d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afdd1804cafafcdb98b3bb01b202fdf6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 50.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "592458256630b5af21ae628213b69709", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f8f5db2bb75fafea34eafeb0a909303", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7c916295ecf0c68b17179bf35257c2d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "479dffd861a6932f7bf2908b834e64c4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 50.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdc1a09d1c85600998c3662ce292bec2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61bfa27106692b310d3a9b15afde3559", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ce512f120d609b9186c213b34dbbe88", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42a6e1fe2886f20a82ee03005991bd49", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 50.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3155cb99b4e2d4c6cfe878b9d23a66e0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d91df4343e265733cc7dcb45a630280f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba61139731f204a001678aa1adfd8e75", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4689deb0e1d424d88883a45e30d408c8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 50.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5619aef200d1301f05f6a1a99fdef263", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d2975303e5fb9f5df4add413dc839d8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "738981074cd404c3d4783a36d919744a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b57296a6b421380960e48fce60cf2877", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 50.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c91282ea131ff82bd6e9cef057470448", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbf8901db9bcd3e7f0a9139928870a34", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d470e7a171d54c810c36a81d5da63b58", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "196fe007d513c8e76fc9aaa5f86b779c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 50.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbad5ca4b8f56f1bdd11e17d3df9fa3b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "deb2c59e0c02ee79167b29178ffb682b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7de992efd557d2252942fa89f026500a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51fdef73293e1aff321cd38d41bdb626", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 50.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf9131a9b92626c98c92caa0e9791248", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4799d09976d6e4094e348a0b188c0a0c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aead11565319e086594c1f6f28cc04f7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef83e7b098f1ddd122887ca860f0c26c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70dcbacacf2194f0c6f6726024072240", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2df75f19514ed4865ee02039cebda44d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3e0a918a65cc79cb9e3d27a8f34b514", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d07f38ad1baeb38534e59fea915a7028", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 59.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2ab88b41239a121fced7c8ac1f8f737", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e08e83d2bfa6b1d37b4c3ba8e4c99df4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "295bfc98221765bd7175bcbddcc1c25e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23301c30d63f3a6625c91a8bd318b15b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 59.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff92364ff8ac1c08abd39aee3a16c951", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd6d78a9ff5024977bd5025565ab2c5e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1953e4544338fe80c0ab39611b9eb8ce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5a0bf5f912c338832c565390bc0aff5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 59.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bd9912f9c40cb014b76bc92d055e509", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da61938f684895403f9f62e24cd86029", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dea20fe5193a3af876da6fc164b0b6ef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ab2de6d653849d538e1c5a9064cfa79", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 59.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a27834e0d53503d79f90b06a7a48f9ae", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fee76fabc010d0cdb5d98ecd753a21e2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f180c5082cedff430aa775f1f559103", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d16e5821f550b9f91163e437e754ab6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 59.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c7802e40f468d8d47c17a9bf1d720b7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43842ccde3d89679d1b25e99e85b075e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16cc8d7294f0fd4b93e2f8316ad37aad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "beb023c4d9ce275f7ecc95c6fdd3e7a3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 59.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dcbe0fa7b56e71134df59fcb2ad3101e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "230bdb69678d6bb86cd796af27f29f35", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9b81d6177687f7c691cead44b378973", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27875eff9b62d2573386acc130e72990", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 59.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c07df80e63dc203258d6e9009dcb25c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a7bcbc7a571c264c8487e4407ad3af7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adb2fb1456ab3bafda40aade3f306b1d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "413372f66e165621ecb2c37faec9091a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1c5fbcd9c7a6ecad392b456c3c511c6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b79b7ab4e52bc092a32250cdc8428fd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9792c1085724c6a50604bb1e49a212b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c95d8acce944d8d93cdea3314762568", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 68.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "934129048144696509abece0dcb1690d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a01ca9ae43d34a1f7ff6c56941a54c43", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82b05c22b41190e3fb5650013d69c634", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1118500d038e24c1cf466c1ecef392e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 68.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "131dc135664694f6a95cc5300fa79a6d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3f41d284b2f945d2158687c04675f6e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ded184c802c2fa1562ddbed22cd37693", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e598af19cad6c1721d5bd9789866cc24", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 68.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1eae2fe99b9478a66e1446cae4b7bd2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6ff83e381e7e437aa0c810c608871a0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbe8dc46af239675de193b0ba41d40f6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f68c84b3c46f7e2f290659377d464e10", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 68.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20f9270a8e65165f3bb5476011a722e8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15575a319f5927d0c9a1c87af3d54f53", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "764e1de09f038346fcc9d15f4049d81b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "415dd5f25dbe6dcedbb1d549b07bffc1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 68.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e499c529427cd9164f3b0d8c725bccfe", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "960bf4a21e0d034f0d547f3718b70e5e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92494ddf53d5a89c9feaff78876cefb4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00dd83ca334f1b8d32156b4e224a4dd8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 68.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af8d779b1cc2561d2362aceb35af0643", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17fade4d5424820a91999005deba4849", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cd243598412cbbd286779e0c1717816", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "354f22bbe6c15ddc417e821d25d3781c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 68.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60ac8f6ebf045f63731fa792ab4b9712", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d330c50d920bddd8b0293c5d19375849", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c685792e3393c7ff14f8e7945668614d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "376487d92a7d10712675cf6d078c4f4e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8386c7e8d096588c4106d2e4ad767489", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "726b646c58fb8bcc03f8b51701264169", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5db8ee7232e45dd178c1fa0cb831b5a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d09bc16a3fe0387a9f842f41c8cb65ca", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 77.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd78579d44edae01185097fe9fd8c737", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ed2ccbab659d8abd4bd7316e1623960", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37460390062822a5f8bc8868c7ca311a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e7893865517396bbac10c1332f9f8e2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 77.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c464ed95a81e031d4c215f1918bb1ced", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bc117e4a7a20742bac7a3adbea7b129", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1c5282af4da778c6856d7077074814a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e1c882690a15a228878ca13f6904327", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 77.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0859bbdab6248c2fdac349aa75e60491", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc2b1adb0f8ac609b82ded174dd2301e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac82cddc408e8e579a7e784eb1374e03", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14a553acbcd68cc53a002e6c38fdffa7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 77.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bbe6fe8aba0ebe2ec896b423118bbfb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a03d6ac259990f97e14ae9d0facadcdc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "262d38d70da6eb5548a8a8e7de8e42a0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a3858b63112c686153d3b1fcf22ae5f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 77.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a82b7dced99faf72ca8470d6ff13a6c1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce19006dc86ae23f37716ce37b59db8c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a2727788294d88846aefaee3ddede9a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "154328561050712196966573a4e1398c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 77.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1a66ab60d97fc776af46695967e4258", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3b850bef8ce31f477c052c47fb49036", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1818c1e6429d50a01d5c77e6b56bcd5b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd4bb347645b838df53a7e4eccfc4eb2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 77.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "297ab5cda9efda70ce9f0838475b3659", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab8198ad8ad3a1aa187ee259553d3d99", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e992fa9fb7fa8d316208ebbc78a5dce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "590c2f3b8aaffa8480c24692aa682943", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48f8351b4b7a5b3b671c7e8b39a76efe", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f023a410a5aec4795d00a40d633cb62", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98f9df960a2ad00299f5dc4c5f4dc5aa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24b45a451f1505c53755dafeaacfbda5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 86.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca897aa98f7d81bd77e82965019cab11", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71b1fbb9f5081922488f3317d94229aa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4819c6a8420b78c948f9eafadd6918a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "852abf8f345316b5dcdbc04ab278644f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 86.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "917a42b12a0bf638ebd366e959d6fd11", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e15f6c05d77dc709597cf4c5d91a539", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98a9a170dccf4658d51d8a838812f4b9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de7d698880f5989baff5292f5fcbce6d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 86.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d5c1f47ed8a3bb4d6f3aa903425b5df", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d46a2378fb55fb2386b7ab66ecfb5c30", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce5763d7e2109f8e2749bc94264967d4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55be78595300f921268bf25a82d36ea3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 86.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85a212379d007699e43f70696f86836b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1760fafb1a2e6a6b7d1fb7daa7c17ae6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "176eb1459f9182cb02869154ae3a335b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbc30b2b1a52463e0e79fa580564d3c9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 86.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b839f855005836dac53fa3140d3389ee", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "280b0ba0769448f7dd80507a7e7d15e6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae64f4c4eb1351a983f9deb73461ed47", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7cf8dabcd572a25091e6df6c68677f3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 86.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f5a7c85f7ee6879e7b0ffb018d4cf67", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a697bb55a724c1650d374425ae83bc9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f52c053e8d419b3bd4bacf416c7a8643", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b529e98a5254c30130bd7eb85f1d3438", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 86.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80eaff6273413c67c40b7a6613e7cf5f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98eaab38950e7fed421d74c2ea277d28", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "995f7bff51bbd26a2f07ddeb34b77abf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fa68be7093a4988208249a5248646cc", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e914117e9fef5e9e7cc9c4a4b8a24205", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f28238ae9c3d6c0a14efe190f91a30f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "293b61a7e9efb6357ff09a8b17f5d786", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "884b4e6c02353c17a1aa73cd660726a4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 95.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "046fde6f676e92db1f5121855388ac33", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ecca9be5fa92df0f25e7e75b68bad72", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14a19f284fc11b1bb217c38326a6b996", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdb496d22abdb1ff0a52d59f75e57d11", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 95.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "165fa470873f70936329a7140c34d516", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a31c0ee2f0154c2ed175ccb97d288b00", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "108be37043c800cf70e0527f5fcb5982", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cac3a06490244be6ae3bc7164a9b58a5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 95.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c9175330d1ee885788e3eb6a680b87a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dc374b33004e2d86c02037a6013bcf5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32f6ac2ecc5f555988556f56bc6c18e9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7a0a51c7a9d32a01f02cdaedfb29aad", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 95.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "369db58720148751961244061d1e0c57", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90f7892f75e38f70e56fd254731f153b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a72fb7ff8b09a9f652fd30c8d5ead25", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84e8c4302b72c43fde4a12022be6c203", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 95.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb84c10308ced9441eae0e0b29f007da", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef687dcb3ef99b6cc221aa56d3ae9223", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78a1faac6cbe658cae177304751c8097", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "533fbf74baa6e699686fa8da425b850b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 95.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d184863242c15c571c1ccf8e5d5af8e8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ca35b226fe1158b4c392c254951e9a8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "832d80f46d12d0d2cacf51cfc69c6a2a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3e5aa4f4ce90cf33400ffff1531e740", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 95.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "832095d97de5557bbfb75bb6ed383faf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "581f633a28a6e82a8bbdd0057c94737d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fda5cf0b4fad88b25c6daa362969b3ce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24507ebdb04c9ed60ce237bd72a0aaac", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42c51602d109df1b8d38b2400b39f690", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e73fcd87ef4d0033802e2d452bade0f0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd1bffbda5da56bd37c59b77b4ca10aa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ea27f0aa01185f274340da2db456137", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 104.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f617bbb377fdbc647e3ee7169f166297", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ce1ca6e29145e72b477c2769fcdecc3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7a32e87f0942d92c636a55d03d2f11d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d2359597a5fcc4febc1ea9b7761f808", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 104.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f80cb8028247fa3ef60c8a3270ed4c9a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82babcc7c5baf41bd6f341f982fa2b85", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3599c2332566536d8613d5d78584f434", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ad44c2b30f11fef2554b5e2abc0063c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 104.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "063126b65ae9382826e302dd6219a650", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "824fa79c04f1a5b0856ad0861464b351", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9472eaa0053f47988f3f6afb5bc36fd3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2661b662ce3d08ea1e62ec3ac1fbec05", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 104.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e460650d01c835943ec170fa574b151", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "455b26c27ca3f237ee0e78a13e659451", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43d4cf39eb7ea4c63176869bcb2a4ec3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38ee56edad2c68096818d3bab9abcfc2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 104.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b567ef61fd59675c7ba84c7e80ca3d5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7f38e680d762ca753c25b342d9afbcb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c0f17483bd68ba42f294120c4c6b18e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ebbfa7a483f296b8f37ab373a1b999b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 104.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d61faea5712cca8318c0ada57427ace9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f30f1c2ebcd44fd8ae13f381297977f5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "487eef249f8dc2185b4ffc25af6f018c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a69fdb446be6fa3f13541b7a319daa92", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 104.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a16a7a53d20b1649e3b0e60d86263225", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7da493336c4b2e3667236e6d07d6d20", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a34721a58fefb1d0ac958274b82ab8b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 181.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72f854149d16f5ee6034e0ce17874e63", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7e4b2d87b3e80af7ff2b643a83dbbd7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "033a7590bb61aebf7f6fb02b3955b513", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26cdcda178ade46bc84efbf23966d94a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 172.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf6de2fc754409d922439d5c00826778", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 113.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4431107f3b060e151823d9b39f7ebaf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55a07f46a7b52edef0ab6c679000a4d4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbd75296bde269d19a2ab39370ce4dfa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 163.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "545972c8c13f461f7ccc63a62dd9a1ce", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 113.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "452e75262f675c60b2c8dd67c4e445e2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe41ee58aa1a1ef28ed3c904c74fc2b9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1cbe04d8383d0a1cf8a821c43d0734b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 154.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef7fe9b013ed9c4efab57df31900364d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 113.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19e7c42253aa01c0ccdf22c85c9d5d6e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24cb5675f420609ecd18ad0cac7c8437", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12359f05a2c29109cae8ff3d9db468dc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 145.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa2f00e739a74141f167dee833aabcbf", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 113.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcbd966819e50fdf24299f04cc13eba0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35fef9292bd2e529707746bcb613802c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e6fd67bf297afe1dbb8347dd3a3a74f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 136.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb58b03e11e296dfe98e145588b3e2d5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 113.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8849a9e1269fe70c2b82525e3df25d09", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f37e34d592cea434ada3014a6b99116e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42fb3efe0965f268c3a70e6d4d46d95b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 127.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a46d358730c0df02ecdd8dfbf309ee7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 113.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd6fccd32e8d5016a39f2479f4797386", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9932ddd4c045effaf37e60ce583462c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef0ee5644420d7f4c0238999a5cac341", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 118.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9de15e5ec2d743f49068d9efc15d8c1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 113.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34b5bf346d750a729cc8163f3bf911fb", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "008bae40aaf9265dbf6b34068ac4196f", + "notes": [], + "params": { + "message": "Adding Dye Sample Plate 3" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b43755c3ed286faacc5f04a53fa2bc93", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb97760ea310b77cbc8791f8fc70cab4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12c6b4f59a139baeaa54007fa98ce79c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5414a946e1cb5ef3791aa7d8aaed35cf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6543851e766103efd802a37085dac6a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22a6f53a5e17ec49cb4150a38ba692f9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10048f16b4d1b7332c50f44ce44be497", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcc9a08ee6ac78de6331a2e8201284ca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c0d10f8fcd0c9b5b7d2628265e8be2f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dad8795b0f64fde2a372d7a178693fd4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72c4a461e05f90cc8e1531d3ded2f0da", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb819b86f2a0ac6c412ccb4ee90c8bdf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f244f19928d664b72d97aebe8d437c20", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87a07e83ed5b62a5f9ca1f9744572de6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e7299dca5c07bfc9780c1e5bb89bae9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d205c1a9431836c40b5bf1d05f6b52fc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fd4ac612d6826f29f6adfc4973fe8ab", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4c1e69ee0cf68732a5f6c47a4be5c5a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "83a1f2e7df170573e4a4c871f79f4295", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fb2acd4fdced18c0dad4f2a94da25d4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74349ab2d975e635636c6161eb49116b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d8413b9056d37c17196374b8fa45f88", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5815c8e6c3143731cfdc879528223fa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "210c4400fad56e0407b8d2f335f9da25", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40ec66e06f9d20ef4571760338e5484e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd04cc92ed9106369601c3daebfad8a6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f2a0288311fb5f4de5f12f859ab11bf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42c79f505d29967a231f6bad16faefc1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b3cd5676e28e0d81496fe8c24a5cec8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5ba2785ad57cb1d619cf8599cca89d7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5daa8c7f38974a5d6f18cc973fea6a11", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f8ffbc57dbbe31105cc7bac086f4166", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bbbb8542d933c4e34e600cdd109b38d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "747ba4a290fed326516a177f561ad58e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86a5a4121ad6761c167ede7c87ff4bca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "512cdf5f4eb6f14877dbe6902204e258", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0046c3b75a21833f543096d1ac44a809", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d55b5f9766076d4f214a11a121858be8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31443a2874ebec40160dcb16340e8e75", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d2a1dbb3648bd22cff2422da7490ac5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dda104fdc7d0684adb5c50dbac41dd70", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f0547813a49c0e438b1edbfe6bb537f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3dc0a67cdeff29a84f085623461607bf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a82cb488bee1d881daf63754ae18ee2e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4079d6357b74d4762b37c771d4f7913", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e872a2a58a348408ef0d09e3987eec07", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "426bf7059b229b182f376cacef7ea6a0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "938a0776399ba8ae73d78a403343a07a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ab573cbaea62c34bddb34ebb3d57fa9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c81c95a28d53833627694657ea63d311", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b479d1628afd29408e43f17a707f9ad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "374a9754f73ac74130351e17925bbed6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e883df3831800a6e14c76eb8f9d30196", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ec062d9c213031dc833394f63aae612", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "024432718a19e7321083f47eb22ce936", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0075c1ed85af6b9391ba7c315d139090", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3edc1b2f02d8e1879962b1b935103422", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "837cf6c8fe793f063108f0bb3de3f185", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0da24e5b4ea7097611cbd7ceb3ee3e9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a768a0d09b4187637f553a54fecb669", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12af335e331a7898512cb32805e09c20", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b5c6e8cdd8a29ebfc760eeb033f51f9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c383c5688514e639353680502903be5d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fc18f6431fd23b9c876ed24ec98aba4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f1072f42593883a272e12034b617ed4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5dc2765689bc6a0e8821b96348226d30", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8037e440e625112a0e602c76d6afbc4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1490a5d9fed09be086aa0561d28dcab7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a7ef770d956dacd40bd0d44d42682be", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6e2deb792e279a006bd534499d65dd3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec26d6b2e824c3c37ac823fc907a7488", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b3bdf0599d57ad79a814a63e47406c8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "732b7c1977fffd54072f28e20ed0bbfd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6601df16059241ec445b98d0113f64bc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2372ee3bab11cf96085b09ea4b2436aa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c44831de84b8ac287742fd2defde329d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdbed0e808b689f2010dc83c3301cba2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "221f6663a05c55fdcb3b8b1f287ec8a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7604c311c66baddf36a59cf34e7aaf4b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c90f506acdc88fa110b89b2e3010381a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "950dbba78e81c8b5829ef869e0b76d53", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfd606ba9a3c7ae5a21d19e256bb6ade", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a16759225c580e5e8d901817ed912dc3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f0595d51f3cbe2d6e110c13421cb975", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8edf7cea4a9e21871e2f2f37b254a7b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5870ebca78d17b8eabc3d3952c7e122e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ba02c6a57806d9c50c64b642db1cb20", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68b226ebb0473f7136749b632d87be7e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f5d26587bc4342f61cbd5262abf0814", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9eb928c0510d18bdfd385cff70077d3b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dde947740ed0fb1f67966e30c9568d8d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8737be3fd5d36fe8a7359495aa7769dd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78acd0b0725cc8c895da3b076b81984e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0378098cea2391eb4eb770a911e51e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17319232b7a30b7b91beadfcad70dc64", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3cc82da4a762da8b7b7fadee2181b80d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3ae3588fe5aeff403ebc8d4f900a72c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13e7c01958b6fd3d1db7c67d856ca5e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef52de089ee6669b94c9e844a1cf787e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f28b1c261e528d06faa7cd0c2fa1ed0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b789caa6c0fe29d49fa30656721107c5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02aea70e5fb1f607f17efe2d5ed96f98", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8033eae23ccfd1af9ca486bcafb80b8d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54c43658bf9888abbd2aebb60bcfe577", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77bb8bb7073daac58d3fc7eb7fd924d6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f233ff2d9a68140799426c77f86876b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "621d62971dc63dbd7f2bb66a7c780686", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee4cefbe1624d6bf790cc0c870b12fe1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb9d70b764ec5842e092049a8ccc1f8b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a13da900b500eb97203160c5abb578ae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "788724693edad2923403bc365730f07e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46b9a87387bf9213bba0f63d7eeca2a9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e60cdaba5d4b499bbafa65bbeb28ad8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4de37766b859f7b42bc9a846f597a946", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3ed6bcdd2246f218c5b3255d7dad1dc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "942f4d2ad8447797ec7d02f76f54a087", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f8001414f679c142607bd4a3a997178", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5cbd045d0b46259e01572b51a468328", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7192e7c80e270591da3297c54a0f851e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51dd7ca1ecd8e60f51159fccaeb846ef", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82f7fb6494272673169a4796e7600155", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d88f00f72298104e3dbb058b2534865", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a67e12976b2ba158c32c91229f11a5e1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97d3820b708d61d1dd3620064fb46271", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff96e0904d085a7c5d08ed7f3edd2787", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dee189cab934ee1727006ea96b23c2ff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46b550327f520db6ff9d6cecb6b2b90a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47158c2f77a4b17416c6c8598c2a7071", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fadb10941cbef1804950765355e42ae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89eb1faa2c946eb06b8c51e291a95ffa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4d2f1c1fa3dcb8bce08c7bb45fe1cdd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bda6a23c7daae1e532048e389098d173", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b9f39fd2ea2487f0e476104d6355a86", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35757c5af798fe3935323e7133b67029", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc90f6eb707c0e7691fb4fbe7e02441c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42b33b9f2569c011f65f2d1516e9debf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "720b10f57d1e5c85eb628c37951f7820", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93b7841101624dcaba41f395cdf35c77", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c60953cf6cf6ad5c38c36b552d1e5762", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fd2fb78578ada801d8fc7e9af76f801", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59da13237452a54b1366b4264e74f2b9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "501198f2f2bd250f899976d2d4ffc952", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86d9444826952b0068c149fcf221dcc2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe7ba333e3872eedda577d1e24032062", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe112a7ae2938b38aa344e1d45631922", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f5be2484742aa46c74712b7c0d30056", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "450b3ab69ae7212e3627f37df3870596", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a305e76c5aff71aec6be376e50ab84b4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bd024c5f3aaf49469157b42dfdca073", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12249f779de225ea59a0003e8f5e33a2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee39fc28f786e8f90c0a0ddb3b08c200", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54549caa0ba69122346cd2c8ab741835", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adbf90b6de88082df9af3955c7e15a0f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3d4041c07c7e7f9115701fe8274837c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c857b3e921a108b303a9cf175ec04894", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80a46f42ed414a57d25728cecf868ad7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed559fa0461eca26f04e83117b5ecdfc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59c5ed7622ee9d129969b33a39c2364a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "729358c44340878ef5eef8835b8fa453", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ceb57d5b1beb060e314b0195789a246", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d04e1fc3e09dea69888fc5eec4fff2e6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "499d3d4a14f1acf70e8913c303ef9f6c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92b54123a418efa96267f228b1ab1ae0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "272d5d6f895a949d2c9d6400b5ff6b5f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbf1d65cd801da75e2a8f9ddf6de169d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc23183b24e00e9d8e1c03d3935d8ec8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2645141d6c3be9899988d6a135b196af", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "828f80e96aec2e38af80e237610ffe19", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bff13473caad08253e880eaaacd354e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bbeb23b308ecd34a031709a54926b8f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6141dc2201196a13be5e0e52cb4578b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24705a8c5ae42cc417a7de635a40b5d7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad78453d1ab7b580503a3f1533d9adf4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7d2ad4c3b75e72436ee67ad99bbb1d1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aae751f996db3210beb8d10d26720e59", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aae5423bfe5139a22fe11a52550e1cf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "889f68250336b515d8de1b110e205de9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91fd6cd3bef9eca296dbb4debe55c594", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 288.24, + "z": 16.7 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a299e57acc0103adb7968b702c2c065", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bb85d7b1c5b1ef2a42ea6141c2266c0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 279.24, + "z": 16.7 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8325e1af6a1e7aa2c13115634aac4983", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41058a3857bf4905a8476aba54138567", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 270.24, + "z": 16.7 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "053023a79fb590f59dca13bd0ccf038e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9ba5c7024361db6fb8009b683d92ad8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 261.24, + "z": 16.7 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce50ba817fd5865dcc937f97ec49ea0f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3cbaea638586732ac8b4222e0af137b3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 252.24, + "z": 16.7 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "853e4ba2d5d5649b67a0a8908df00d9f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84223590a08c49b5d944c39d1c5f207b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 243.24, + "z": 16.7 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b77ace237cb58f85b74f7a396ffde40", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac0be410f26457a2a545ddec92ce44fd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 234.24, + "z": 16.7 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01b0774a5aca0839dae0c33f939fe5d6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92ebe93a6120c5e67a549256058678b5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 225.24, + "z": 16.7 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f83791b933f0a90996f5e6a0bd16375", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9094b61b5f71695d7783c9085d0bc94", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7243bc2f603a46f4c5e4fed6213bcdd7", + "notes": [], + "params": { + "message": "Adding Diluent Sample Plate 3" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "406b86f7786cac1243845ab24239815d", + "notes": [], + "params": { + "message": "==============================================" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27782d851faf644b07ba3ff143af4822", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3be17c8d0a92b9f273b9f919065c62b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "588c65b2e2a87e6f4d89e463c8c4cf87", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 5.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 5.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fdbf8fbd776ef97b1ce1a9fbb200cca", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cd209a7f82ca034c13d6d7417c133f4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbd7caf1fa0a7a4619718da787661df1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97e62d729b8bac24e1853d21ff42f3d3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae6423c7f1e9bb7bece320c42f6b4083", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "583ae358aca1fa9197422c608ed7c675", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12c8b5ddfa53dd60423ca9eb55411973", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f2630ff2616522dfbb8723ebc3f11e5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ec00d70b2c7c3b9ea457a22cadaab77", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5540f48a4339b25353fbaa6e705499fa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25393ff6d6d0f38bdbef0d33fc84947d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58712650502724123e2c82176eab2a83", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "760dc00eafcbe4c68e040a3931644b6c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "401e8d833f2ef5767b68ab1b7b89eae3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d100d945cbe9ebae34da6ae3dcea420", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4930b1067e38c2ed09f4f438841924b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e79d98c2180a9f097d3b2148da62574d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f45c8bc0b895e5fe6757f082c18554d7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f280c27557c5fa4dde2471c3def5ea7d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d83d4c3bbeb2ea375dac456f3213b142", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7211354d7e005f3148afbc9da112c65a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa93c0d4b58cb7b9130ee41cba16485f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a80b4f1f754e05d245ab086a74ac37c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5936842a7cce8053d5ec7c17e6267c8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c86bae4e3e8dbeb0594c2056b791b4d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5646584ef0db11332bd1d03187273a7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c4f06f3bde0cf2c201b47a005f137dc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8bb9fadda2aae15fbc6e264fbc41e89", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3b9950cdcf4f312337b34911255ad81", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d10b6aac1f7ddde2d15d2e7e29ab513e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6595e9c3f457b5ac3ffca85e6de85cd6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75f9a2bf65e93660669c13f2e9f08131", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "482b380fff134e8637bc1f786025f3ca", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 187.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee4208701fbc953cc3c63eef383e0907", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85efd7de5f9ce12c10a04fea66147341", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12808bfa949cc3572df2a2a8ceae4424", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ce2ac72f7882644e5afe45e0b87622c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 187.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d0bcd4e9d637a8f30233768d4c4ce26", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c3054ec2960d7e068944dfc128d44f0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9a0725705f2db5cf62b48dd42a6c980", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 92.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 92.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3343cfe3f870c4680c88c4b8bbfecf1c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 187.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8af8d8f8f15d7e78353bbc729da32417", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55d893625df2058660dba75f8182d7bb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06a08db5094858aa992badf613e5ca7d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 88.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 88.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9112b86aae58e8955bb5f1e979f71887", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 187.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0c024ebcc31a71b6835bd066c96cdd6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c037d1c36c6d04042ac2e7c8ea29eae8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47fb05856267a2c8dd7b5c8eb37ca53e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d67906494dd783c78b8293e47d02f41", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 187.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "663f05e4fe8c54b2e778dd2cec8e2d37", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48080b561ad6f9da821967c782ed8076", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "123a98e0d45f2365c29972e8ee57f65d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 31.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 31.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3314331eac66c457e7b248d0bfedcba9", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 187.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "054f8de6f35065776bb26168fe820c58", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a963e1ac743745817697bd97e87209c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aba6de3d42d19fe81e964ba87bd46ad1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d277a2acfcb66d0c1b17e3030bc262f7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 187.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45c3312a2e2c4b1915853ac89aa5ba38", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7fcae66f0f2e88a623412581b7ad66c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "285e16d7b035926d3c2896242b2a3bad", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 87.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 87.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37ae239ce6f377334e9959710fd6306d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f13eb1da55cd8993090c9eb0ac1b425", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abbd5005d52ffc07c11f5aa4f02e686f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68326b016aa7b445f670e6e062cb863d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 82.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 82.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2afac801ce246123795e411bb9563a6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 196.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d89cf252869c5f747f9792f29c99290", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fb9f9c1afb8bb105ee2b1c823cd198c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97fbe12e5a0623bcfb9e77e9309f142f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 36.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 36.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ffc531c07bfb727f256ae272c368aba", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 196.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "271de1d407ed42b58590129685386ee5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d289e8c4763dc76edb103565f5d6aecc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2079865ecc4fbc85be401f88e861613a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 78.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 78.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d866a3a5fc42af96874365498977f1b3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 196.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5830591b203d93c6b8438de1a6cfe062", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf9f4d6d5e50a4bc77a58f5761778cf4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fae2391d99cfab20d83878a7c19a4b89", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52bb4df3bd2a3d9212c36c557a8a7787", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 196.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbf7d5f1cf4b04511724275f33a7b48e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a021595724ebf67d6314519ccbd6b7a6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7799418e489a22187572c94b7cf06674", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75fa5a4878d90caff9cc9df0ca2ae37d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 196.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb86ca7f6981855b48e81e5d90424773", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f253b7f380f47717b7a5e380cc956951", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c9785622429bf5a7a8abe5b5a705114", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 63.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 63.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16268d849012fcb0629e548811b71a46", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 196.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f02d57d8051b425428bad998f6582f98", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e72cd5b29d2c57d72e8c473a08d954a5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96aac98c85ee9203ed68cbdb39df021b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ceceb19d1de7d81d680e3844a9b9d86", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 196.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16afcc34be947b9d5cfb24e2e0e5ae8e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eeb048b324866c7a21a2f6a35e788ccd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d552744a7734bab5c4e42be0159d591", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50f4303eee078773eb8ec069f1089434", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6a0964f94cd2b724d28f38c6448c900", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0871d2ce2e558738c902058134702019", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06da62f6ee3bf4353e2ad0d1328d32e9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a027eb11de2c50a21d25c59de2c1e87", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 205.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb7c1ad008eac5ea19965e6093547ff1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59ab3baa27cc7ac844b304225cc71d0e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59a4afb93f1496ad290fab4da8161852", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d29d4750249e726646ee6e1bd00706b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 205.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d799f708348153c3e5f2b1ba3d267e0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e78b53710273310b192e8d22a02eede", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5bae768f60d7d9e2e2dd515e88f5c9d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d56dcd67055d737c6601b8c83f53d21", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 205.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2333df5fecc7afd96b70083c28b72fed", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ae63745d60fdb946dc4021073e069d3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7005b0a1410cb8ab0f74d9b0a3d3313e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1dce6da0a615a2de03afca5ca86ea5c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 205.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d4485a58facc208cf358cbc2be827f0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c12db7655a3c916a3aec41f3ffdeae79", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d468986d53ccce33546ba84e854d2d8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de4765905ff319f3b24c480e795d79e7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 205.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "231dd4c295b5f9f3fd33521f87930ea3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cae0bb320ee5edf112410acbd4b75ade", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f1e9962500efdf299f170bf0bfe658f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 52.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 52.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a6e3ad963c8e4c27c77c1e16bc640c3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 205.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "495004655d6a1f65f632c9913cf75816", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42f4a69ec1f8b1762d9f40473723cf31", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47b37555f5c43965b631e0d61124a1b7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "299e14d1bf936f0e58dcf72527aa400e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 205.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bd198b2316c15b0295c1c7dacebc0c1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16fcd1ec33991c58f73ef699ee0c4503", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b148268752a0e6cd7d28eca8c9cf8b4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60261e23cdc4e14547105a09f63ebc6b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3a3e06dbe44a5a2b7eb65bc041de998", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1385ba6c3d421c4b83698c11a36a25ae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aef69a05adaf03a7d527e7b4fd1cbb0f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 86.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 86.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e14c85c425a4d9aadc44b84370807428", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 214.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fe818591f0a570e129b758115f5e560", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "951edd3718a684f61b95bd62b5402053", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b45e5dbbd91de240f7b8bfad9eccc774", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f6498f91dbf74879ac8f6874129a62a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 214.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "692c3a8916a7c8070a7a2fd8efc49b38", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd17e65dc774622cd969186436205b94", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63952d6e395d7e53e0159ced1157f966", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86270ba5997d2ade7665e096a5f98e33", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 214.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c342680c097aa8403f7d35ed79a04586", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30beecc1ec15bc941e4aa1f4e5bf7f3d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13928604021f9f914b28e07d621edf8d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 96.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 96.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86b9ac20f164f44c84a0a4ae88675201", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 214.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "149aa909db560b99146fb4260871e862", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a72d234fde0f32bb47724d5543f65b81", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0641457293fc7e53fa8f818396ee2f3e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 72.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 72.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a0b26a37f312e0363616967b7d76350", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 214.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aaf68beeccbba2304e5d67cb696b0eca", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b9b9e58d1ef6650dec250477823d784", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d8f42709cc1e7a6693360137ec77194", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba62089023119e5361f17bc68d21fae1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 214.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39a4fe41fa62adae4a8a81c3debab561", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f981dd3673099418926eb54e68e8134d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9624979ee36be79d8634c9364618180d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 378.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99f70ebc92c72b26a1d12555fa6cadca", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H5" + }, + "result": { + "position": { + "x": 214.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c0b3bab7e4bdac5ec9af55ac867af4c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a3d9536a356287faf992be52a4d0b3a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9d2b8b3b95fa8c34320ee5d492ab8c6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 41.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 387.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 41.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "966e548c1fe8dbbc018b5ab3cdafb5f1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9797a4891a96b24d85bc1a40a17535b2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54b61412ebf8da5ad571df2bafc6f726", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19f97e3cb1fe7d079fb032e9f36f8fbb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 387.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a4ba8d50c10429ea35ac339d2735046", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 223.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86d9e957f21c34aa8c3aaa14a5c64edd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cdee5a054e32d2b3860b776fc8dbc74", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f34289129fe63ae12873f4dd20e29aa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 387.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff1dd4693385f33dfd014d588b884c4e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 223.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09860a5d91b4b037fb4af03cc7ea2d01", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9464231a350da9944ad67c4baa1f39d3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1a2bd743e960b103c6af1ecc1f0fb7e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 387.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "949ff6f99a6e5661a3aaa8a58d3571f4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 223.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4106002e9b4901862f283801d5613b82", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8727d712b7ce1c8b73dc709243b04783", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43bc90864d3d542e0527a0825e3c2a54", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 387.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "675842bf0d491bd924b18e6bcbcdd83a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 223.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0828bd30e04fa34ac836654115df6627", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a53d907b988387f482acbfe19467f91", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9478a4b6b010bf3ee500dec03b6bfae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 42.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 387.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 42.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2251fca5a95fe82e59fd65bb794d97c8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 223.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "517fb4694f3ac0e311b3c6f88c94ab57", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f74051ea8ee485da8d600acc94841e69", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c75e3622084126fd317374ba5036c80", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 387.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23377570741caaec00ccc3221547482e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 223.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e38e6d0e41c9c7d9d18bb009f51e50fa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1a6f65e27b1146fe0574c0aec69dfa7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0632dade29f921ff9a409cdcf8f06f08", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 48.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 387.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 48.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40688e5783b0368bed9a9695c9449e93", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 223.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8d64427f38150b331aab95d56e0495d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47a8dc0dc52eaba45e84bf90e928b28f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd3bd14cd926bdfafe8facb5eab6cd16", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 73.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 396.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 73.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "001d5cdd204614076967ce8b36f4b4ca", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a88334db2ff51e9b84993bca0523fcd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42a86322dbee887d493cf906cb9a4ac6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "564436c6a7d2b337f84b6fae4b66c7f3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 84.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 396.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 84.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0eed7bc87e7902413a0026c38af76a7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 232.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f1eb2dc8d894aec221cc0cb44672ff2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62c8b43d3b133b687fb8c9d8c3a9162c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a093e5839564366adf8447819d90d38", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 396.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3fd725a24abc1edd3924e5c167d437f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 232.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dbdb7215d4b532dac06fa4f6814d9a9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93906228f8fbe4c86b3cf64a52eb7aa9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fbb296d278111c62bb6bdbf174f148f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 74.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 396.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 74.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "216a512bf9aad52088f205cda81e3fd8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 232.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2836b2b7dd60ada511d19c9e409a362e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef5396c2702f7c5329fee95941614c07", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a92aace76952a9942cc5fe3f8838bc8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 80.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 396.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e07d623eab0aef41ac577a204952fc48", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 232.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52e8e725eed0865ee6e92182e87bceaa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "002747a21bb80abdf79f6f2afb1f68c7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c201697823fa05b980b0e087b7b982d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 396.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6541d8650d8ea1fcab327f02285be330", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 232.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e193fbc1105e4901afb143caf2a9415", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0af1339c9e662f1b13d55423adabad4c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3deb16bdd2deb9c62247ba66bc1074e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 396.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "932b5bf77e04bb53b3b3dcfbbc37b06c", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 232.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca34fd343bf701330577498723c4c658", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d0baeaa87b639ee96a75edb07bf032a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "430d135b17a23c9ea5e41f58ecb454ba", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 396.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61d2da11d2ec6ed47c60fb867a2aa828", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 232.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16161be9ded56178aca85362f5810abe", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b17343c6fc7263d8f12f9fbb33d3b75", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ab5bffc3b621c8c1c056c79f29b4bde", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 405.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46f457c0d569114c28648a9dce7de75e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c731d0ce370ee2756d453c06feb5bf4b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a016c9165549313042f38db87b66d08", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bb70445500ddb7ec358e3bb3fe78d79", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 98.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 405.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 98.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "307d5bba5e2af53eb264c3d14f8f8989", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 241.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca5a2b3f2d8c5922f7a09580a762f5b3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33dd41f52f4d4fae4e2e9d5a7b08fc6c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e884d5cc6fb63f405e778c4483008844", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 405.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19f8b0b2a5e1a44cd84b529d6d08094e", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 241.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e40db54b3af26f3db6de4fe832d2d2d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "511344e23bc8725342531bc2f00b4307", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0667f2773a25dc61b4371ba21e3dff9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 405.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d13ea07fe3339e92be6a91c02849964", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 241.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c74ac75627df29a85c712c7379af37cb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5479257b2209e14ed031fad8e497b318", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5e7242e3f85cf6d232b5c87f4bc649e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 405.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf9233d727ed6c09e7d8d5edde82b414", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 241.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25bb824b856fcbe8b8244477934ca522", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a99a64c15182f2bff858eb66d366d66f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "364aa240ef0b854b3e827e532903541b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 405.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bbed25ac9d7e6878d38e927387708cb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 241.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab51cfc0eb73a134ac5b8042017649d2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9766c74a1414ee340ae5e464cc36d3b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a392da031998c165164e1cfe86c43e72", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 405.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "920f2f2aaded3dcbfc6a4ebfe93103b2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 241.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbceee4b03b8a84ab0933517a207aa6c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2212678c89397fec04eb25a521a5d33b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8294f906c845762d7868f05b381e2b0a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 405.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4560060b5157b231265d5f5f39748f45", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 241.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3a15580a7711d36ad10b29a99b063fe", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a321f2b88761eac3ae39dd48c150f3e2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e12c21c58868b1ff8c543e19b41cb257", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 414.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af3d323d7894d252ab2d5b0dae4da667", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad36b3ec3e10b2e06ce1a0a6a7c66141", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ee91fa0307c7889b65249fb0f0e9cc8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccfc4145e63b1c6d2b0364f103d7ac9d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 89.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 414.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 89.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc9f567b8f33f1b24c7dd16b2e1b63f5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B9" + }, + "result": { + "position": { + "x": 250.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18c6669ce0ea1f5ae47e3c8817f658e8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3299ccde18105647e62a6412d849467e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2883861ebc2f255376aff7bcb00c3de", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 414.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ee9ac2ba6c14a491f2c602fb9904fe5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C9" + }, + "result": { + "position": { + "x": 250.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19a4e15a8dc251b1376ace7ee685a085", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f065e6feadb69be8f301d8f9667d451", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66f320e63d64ff900c05219790c44890", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 67.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 414.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 67.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4023493ba548bbbd45d412983c726f8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D9" + }, + "result": { + "position": { + "x": 250.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17fe519769e305735e8f7abd57a04f5d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3865bb502b9ef86d8de25c1c7c2d6a8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33ff8f3cec0a1bc3a02979b301dfa2c1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 414.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f90e1143c69b99ce932ce317e31cce2", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E9" + }, + "result": { + "position": { + "x": 250.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfdebdb1218edacf6ac30f1ad0e9f177", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f86f7c459144142823d9e02272be8633", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "089eb84616b65687fe9e6878a6239358", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 79.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 414.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 79.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abc848fb05758b46cea060a5de1fc972", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F9" + }, + "result": { + "position": { + "x": 250.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dba37753133ec93194183867900bd18", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ba30a626c5bf9e53e857a3be22918cc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa188493a48f4fb74c88d985bd832b47", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 414.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60948e39d49a8e425f31739248ec996a", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G9" + }, + "result": { + "position": { + "x": 250.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f838bb4502b6eae2870f3255e9250f0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "578d981e194e8d50d660b4b1ff082152", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65d91faca7dc9183e52cbaa5f6d3955d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 23.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 414.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 23.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "271c3ac479bbec3948f01f8abacb44e1", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H9" + }, + "result": { + "position": { + "x": 250.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fad37f59bea49aae18c2ecc6ef7e483", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bf46bb19017357e62568b6035d290a6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "943615dee6673d7de223d428e3995a7c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 26.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 423.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 26.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "890caa1dde35b9e6f5905db38e46cfa8", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09cc1a9ac6dfb488558462af28c750c7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7c878b0e2cbd38323cb9b31b4a7f11a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78f211b2e0eab3ae3d68944d6b5b54ab", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 423.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "061b5148f73f87b398aebc4de3c963d6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 259.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7745bb035f39378fafd0b5d0b38a87d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cd2686b16569adf3fdefd0e697beac9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c56d4fffb29394cdd56a4d51716a8291", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 423.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ddc135f6bf2679b43fe16b013829914", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 259.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "befde90f1bcf30d6d3fae9f45919f990", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b235d66e87014c15d885aea0acb64a7a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0bdbcc05bcdc6ca56502d0ead24c02e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 423.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6fd29653045ff33c3e86aa6172f8de5", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 259.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "328be2457e2d85f7b20952f0693d04b7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af24d5f5c1eb9c8cb4b76cb2ae41961d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22b3524ed1f41b23b9bbb73f832d5b7d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 99.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 423.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 99.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48516bb061d9e2a4ec209d2451fb891b", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 259.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc9c035f89a963b1c4c9662b3a34a03c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59b17879a89eb77587117f252b6bebb3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10ce5c4c9c9df9f430cd492dae9ad14f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 21.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 423.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 21.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12e14e1715c3082e13381bccf12ce5f7", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 259.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "758b81cfa063ed4e66b301addafbd246", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0779559fd9b44034b64209d734b1531", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "537b545374948f2e90caa7830a24da88", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 59.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 423.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 59.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "068a6c05486919840211339fe9f578b4", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 259.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29a30c489ffed00ee8874b4ec8d6ea82", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1459476b846d97aa06d75467a07a42e2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f864785a8d611496d79676980a73096d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 423.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "801e4216f46b5d4fd2ae2fd3f4f77a68", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 259.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c96379a39d1afc5805d74c66a06e4bc", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df423d716b10bf903b7400039d4d1914", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eea043ff337f7934055a1a9c45583693", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 45.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 432.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 45.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72ce5e06881f73d5ce80ecf318e55510", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bd054be2a5d11bdc536223b401f2c7d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cf02790d7f246b8142b5ee556b7a65d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f6163cafe4268d39cdf212a3f7c8000", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 28.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 432.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 28.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b131eae3cf372b41825247a51518d68d", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 268.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a0b50b1347341dc4b04b982585023dd", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b9a4444a434bbd24af9ba1ba859a8da", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f935624723290963c916f52c852e6c9f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 51.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 432.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 51.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cd58aae1b128c143ee47570d6410caf", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 268.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bda90b8cc7cc03446db2e343b2a83be", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "435dbce5eec7771287c9da74a6e14918", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97a073f859dc1ac86b58e4a541fa6108", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 34.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 432.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 34.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abaecba36dc0ac99dca4ca65604fbccb", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 268.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15d799352c83e4a0cdafc99f5478dc8c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3ca960df1e5e800843319bd7fc791d6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "474d87eb67576555d150602cd4a94e26", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 27.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 432.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 27.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8136e6fcbc993364d7d8e10a15391248", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E11" + }, + "result": { + "position": { + "x": 268.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "952c04b376d98e28fbc9fa6047dd9cc6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc42c59a45178fbfc9452bd0b268516e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07dbdf7616e8f17b3646692cf93d6c5d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 432.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a817f0b7baaba8c4e28586a44ecac0f", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F11" + }, + "result": { + "position": { + "x": 268.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be850d51d5843abee733e4d34936bbee", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0d20f8cb244d54b2efc4ac61646fd18", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5031e49c2b16edac4b20569a23f4e98c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 33.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 432.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 33.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc46d96b922880dcae77d04da8c32a05", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G11" + }, + "result": { + "position": { + "x": 268.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d0ccf682bb88a46305cd40d6b916563", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "115456151e1d02180899e165af274182", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e9b92b06d922b0788e75a4cfceff55b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 61.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 432.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 61.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a28075187a31d2fcf7f3958f6a33521", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H11" + }, + "result": { + "position": { + "x": 268.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb9a646af71867b949170e64541bf33f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32e249d5b9b3a794f2f35119e8b3a42d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba40e35fa710b8ba223a1952e668edd3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 69.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 441.38, + "y": 288.24, + "z": 15.899999999999999 + }, + "volume": 69.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bdccd83272c73f038b2dfc045a64399", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 395.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a810545edca87ec9380b2e3b205ca5a4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9087bdceae8422058d02300cf238501", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2419f30f1cc07613c8ddcba5b2fabae8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 47.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 441.38, + "y": 279.24, + "z": 15.899999999999999 + }, + "volume": 47.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43749b9cf47340cf9eb9e07e3afe25f3", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 277.38, + "y": 386.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da8e481f4ee6de890e9f570a2cc39d8a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c4010005b1bd4ca9f3906bc72d6340d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e42249af384ebbec5fe3e52a79a7fcdc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 46.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 441.38, + "y": 270.24, + "z": 15.899999999999999 + }, + "volume": 46.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3b82e72fe52c2b4cb630010b8a9fd99", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 277.38, + "y": 377.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7eb0679bd0753debc8a9fccbef62675b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5787167f930eba436d8e4008675393e6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4e273369c54d63c8ef6b33ac66498fb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 93.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 441.38, + "y": 261.24, + "z": 15.899999999999999 + }, + "volume": 93.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07c30d11fde9db0ff528fd01f0a48703", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 277.38, + "y": 368.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "446070dac1ee30d4e6244dfb482dc37f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94ab9d34ff75e87636a66cab9fed60b3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1792db5dfa5c83dbdc0c19cd2ee29ae9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 54.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 441.38, + "y": 252.24, + "z": 15.899999999999999 + }, + "volume": 54.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0e769642ec9fd866c08c72bdf6e18ce", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 277.38, + "y": 359.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c2c0431e6ffc9aa72dad9d3e56bfde0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f21647adbaba50abe64f32a8a9cf41c9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45bc761bf3396a4678071c03817a2dea", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 65.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 441.38, + "y": 243.24, + "z": 15.899999999999999 + }, + "volume": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e032e0c3402f9810f98b213e4cbb1a6", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 277.38, + "y": 350.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16db7d0435725f9ba10fb3346616dbd6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7126b6e43d28c5535c64388727138592", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17b2ba4f011cc49f55867c29912a67ec", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 58.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 441.38, + "y": 234.24, + "z": 15.899999999999999 + }, + "volume": 58.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "124d336a66447ac2d0a7b772416edf75", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 277.38, + "y": 341.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c754f4cd0edf2f948afbac4c6768596", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25b2062e6acfaa1a2f964a8bd75c6bfd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -24.85 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 42.78, + "z": 6.55 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "249def94de63905054950f5e77cd86e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 37.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.1999999999999993 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 441.38, + "y": 225.24, + "z": 15.899999999999999 + }, + "volume": 37.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5f71f910e0af0b6a38568b1b84718cd", + "notes": [], + "params": { + "alternateDropLocation": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "scrape_tips": true, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "default" + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 277.38, + "y": 332.38, + "z": 57.5715 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 15 + ], + "protocolType": "python" + }, + "createdAt": "TIMESTAMP", + "errors": [], + "files": [], + "labware": [ + { + "definitionUri": "opentrons/opentrons_1_trash_3200ml_fixed/1", + "id": "UUID", + "loadName": "opentrons_1_trash_3200ml_fixed", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/nest_12_reservoir_15ml/1", + "id": "UUID", + "loadName": "nest_12_reservoir_15ml", + "location": { + "slotName": "D1" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "id": "UUID", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "D3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C1" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "C2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "id": "UUID", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B1" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "id": "UUID", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A1" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A2" + } + } + ], + "liquidClasses": [], + "liquids": [], + "metadata": { + "author": "Opentrons Engineering ", + "description": "OT3 ABR Simple Normalize Long", + "protocolName": "OT3 ABR Simple Normalize Long", + "source": "Software Testing Team" + }, + "modules": [], + "pipettes": [ + { + "id": "UUID", + "mount": "right", + "pipetteName": "p1000_single_flex" + } + ], + "result": "ok", + "robotType": "OT-3 Standard", + "runTimeParameters": [] } diff --git a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c15790917f][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol1].json b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c15790917f][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol1].json index 0b9d36937ed..fd1542f3752 100644 --- a/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c15790917f][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol1].json +++ b/analyses-snapshot-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c15790917f][Flex_S_v2_20_PL_evercode-whole-transcriptomeWT-kit-Parse-Biosciences-protocol1].json @@ -1,3 +1,98321 @@ { - "error": "Analysis timed out after 120 seconds" + "commandAnnotations": [], + "commands": [ + { + "commandType": "home", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50c7ae73a4e3f7129874f39dfb514803", + "notes": [], + "params": {}, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8511b05ba5565bf0e6dcccd800e2ee23", + "notes": [], + "params": { + "location": { + "slotName": "D1" + }, + "model": "temperatureModuleV2" + }, + "result": { + "model": "temperatureModuleV2", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9563ff54d4bfe61c469a7da06e79f42", + "notes": [], + "params": { + "loadName": "opentrons_96_well_aluminum_block", + "location": { + "moduleId": "UUID" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [ + "adapter" + ], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.16 + }, + "gripperOffsets": { + "default": { + "dropOffset": { + "x": 0, + "y": 0, + "z": 1.0 + }, + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 0 + } + } + }, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 96 Well Aluminum Block", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_96_well_aluminum_block", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 74.24, + "z": 3.38 + }, + "A10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 74.24, + "z": 3.38 + }, + "A11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 74.24, + "z": 3.38 + }, + "A12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 74.24, + "z": 3.38 + }, + "A2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 74.24, + "z": 3.38 + }, + "A3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 74.24, + "z": 3.38 + }, + "A4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 74.24, + "z": 3.38 + }, + "A5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 74.24, + "z": 3.38 + }, + "A6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 74.24, + "z": 3.38 + }, + "A7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 74.24, + "z": 3.38 + }, + "A8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 74.24, + "z": 3.38 + }, + "A9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 74.24, + "z": 3.38 + }, + "B1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 65.24, + "z": 3.38 + }, + "B10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 65.24, + "z": 3.38 + }, + "B11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 65.24, + "z": 3.38 + }, + "B12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 65.24, + "z": 3.38 + }, + "B2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 65.24, + "z": 3.38 + }, + "B3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 65.24, + "z": 3.38 + }, + "B4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 65.24, + "z": 3.38 + }, + "B5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 65.24, + "z": 3.38 + }, + "B6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 65.24, + "z": 3.38 + }, + "B7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 65.24, + "z": 3.38 + }, + "B8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 65.24, + "z": 3.38 + }, + "B9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 65.24, + "z": 3.38 + }, + "C1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 56.24, + "z": 3.38 + }, + "C10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 56.24, + "z": 3.38 + }, + "C11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 56.24, + "z": 3.38 + }, + "C12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 56.24, + "z": 3.38 + }, + "C2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 56.24, + "z": 3.38 + }, + "C3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 56.24, + "z": 3.38 + }, + "C4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 56.24, + "z": 3.38 + }, + "C5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 56.24, + "z": 3.38 + }, + "C6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 56.24, + "z": 3.38 + }, + "C7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 56.24, + "z": 3.38 + }, + "C8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 56.24, + "z": 3.38 + }, + "C9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 56.24, + "z": 3.38 + }, + "D1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 47.24, + "z": 3.38 + }, + "D10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 47.24, + "z": 3.38 + }, + "D11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 47.24, + "z": 3.38 + }, + "D12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 47.24, + "z": 3.38 + }, + "D2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 47.24, + "z": 3.38 + }, + "D3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 47.24, + "z": 3.38 + }, + "D4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 47.24, + "z": 3.38 + }, + "D5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 47.24, + "z": 3.38 + }, + "D6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 47.24, + "z": 3.38 + }, + "D7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 47.24, + "z": 3.38 + }, + "D8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 47.24, + "z": 3.38 + }, + "D9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 47.24, + "z": 3.38 + }, + "E1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 38.24, + "z": 3.38 + }, + "E10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 38.24, + "z": 3.38 + }, + "E11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 38.24, + "z": 3.38 + }, + "E12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 38.24, + "z": 3.38 + }, + "E2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 38.24, + "z": 3.38 + }, + "E3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 38.24, + "z": 3.38 + }, + "E4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 38.24, + "z": 3.38 + }, + "E5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 38.24, + "z": 3.38 + }, + "E6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 38.24, + "z": 3.38 + }, + "E7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 38.24, + "z": 3.38 + }, + "E8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 38.24, + "z": 3.38 + }, + "E9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 38.24, + "z": 3.38 + }, + "F1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 29.24, + "z": 3.38 + }, + "F10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 29.24, + "z": 3.38 + }, + "F11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 29.24, + "z": 3.38 + }, + "F12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 29.24, + "z": 3.38 + }, + "F2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 29.24, + "z": 3.38 + }, + "F3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 29.24, + "z": 3.38 + }, + "F4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 29.24, + "z": 3.38 + }, + "F5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 29.24, + "z": 3.38 + }, + "F6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 29.24, + "z": 3.38 + }, + "F7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 29.24, + "z": 3.38 + }, + "F8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 29.24, + "z": 3.38 + }, + "F9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 29.24, + "z": 3.38 + }, + "G1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 20.24, + "z": 3.38 + }, + "G10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 20.24, + "z": 3.38 + }, + "G11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 20.24, + "z": 3.38 + }, + "G12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 20.24, + "z": 3.38 + }, + "G2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 20.24, + "z": 3.38 + }, + "G3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 20.24, + "z": 3.38 + }, + "G4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 20.24, + "z": 3.38 + }, + "G5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 20.24, + "z": 3.38 + }, + "G6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 20.24, + "z": 3.38 + }, + "G7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 20.24, + "z": 3.38 + }, + "G8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 20.24, + "z": 3.38 + }, + "G9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 20.24, + "z": 3.38 + }, + "H1": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 14.38, + "y": 11.24, + "z": 3.38 + }, + "H10": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 95.38, + "y": 11.24, + "z": 3.38 + }, + "H11": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 104.38, + "y": 11.24, + "z": 3.38 + }, + "H12": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 113.38, + "y": 11.24, + "z": 3.38 + }, + "H2": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 23.38, + "y": 11.24, + "z": 3.38 + }, + "H3": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 32.38, + "y": 11.24, + "z": 3.38 + }, + "H4": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 41.38, + "y": 11.24, + "z": 3.38 + }, + "H5": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 50.38, + "y": 11.24, + "z": 3.38 + }, + "H6": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 59.38, + "y": 11.24, + "z": 3.38 + }, + "H7": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 68.38, + "y": 11.24, + "z": 3.38 + }, + "H8": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 77.38, + "y": 11.24, + "z": 3.38 + }, + "H9": { + "depth": 14.78, + "diameter": 5.34, + "shape": "circular", + "totalLiquidVolume": 0, + "x": 86.38, + "y": 11.24, + "z": 3.38 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "temperatureModuleV2D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07af6536632377008ed92723cc8c5072", + "notes": [], + "params": { + "displayName": "sampleplate", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "labwareId": "UUID" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "temperatureModuleV2D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8eec906a29ce38c4567cc9831a24cd13", + "notes": [], + "params": { + "loadName": "opentrons_15_tuberack_falcon_15ml_conical", + "location": { + "slotName": "D2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": [ + "https://shop.opentrons.com/collections/opentrons-tips/products/tube-rack-set-1" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 124.35 + }, + "gripperOffsets": {}, + "groups": [ + { + "brand": { + "brand": "Falcon", + "brandId": [ + "352095", + "352096", + "352097", + "352099", + "352196" + ], + "links": [ + "https://ecatalog.corning.com/life-sciences/b2c/US/en/Liquid-Handling/Tubes,-Liquid-Handling/Centrifuge-Tubes/Falcon%C2%AE-Conical-Centrifuge-Tubes/p/falconConicalTubes" + ] + }, + "metadata": { + "displayCategory": "tubeRack", + "displayName": "Falcon 6x15 mL Conical", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "B1", + "B2", + "B3", + "B4", + "B5", + "C1", + "C2", + "C3", + "C4", + "C5" + ] + } + ], + "metadata": { + "displayCategory": "tubeRack", + "displayName": "Opentrons 15 Tube Rack with Falcon 15 mL Conical", + "displayVolumeUnits": "mL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1" + ], + [ + "A2", + "B2", + "C2" + ], + [ + "A3", + "B3", + "C3" + ], + [ + "A4", + "B4", + "C4" + ], + [ + "A5", + "B5", + "C5" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_15_tuberack_falcon_15ml_conical" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 67.74, + "z": 6.85 + }, + "A2": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 67.74, + "z": 6.85 + }, + "A3": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 67.74, + "z": 6.85 + }, + "A4": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 67.74, + "z": 6.85 + }, + "A5": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 67.74, + "z": 6.85 + }, + "B1": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 42.74, + "z": 6.85 + }, + "B2": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 42.74, + "z": 6.85 + }, + "B3": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 42.74, + "z": 6.85 + }, + "B4": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 42.74, + "z": 6.85 + }, + "B5": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 42.74, + "z": 6.85 + }, + "C1": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 13.88, + "y": 17.74, + "z": 6.85 + }, + "C2": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 38.88, + "y": 17.74, + "z": 6.85 + }, + "C3": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 63.88, + "y": 17.74, + "z": 6.85 + }, + "C4": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 88.88, + "y": 17.74, + "z": 6.85 + }, + "C5": { + "depth": 117.5, + "diameter": 14.9, + "shape": "circular", + "totalLiquidVolume": 15000, + "x": 113.88, + "y": 17.74, + "z": 6.85 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "D2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de08bc562d1665a25b761a98e1be0005", + "notes": [], + "params": { + "location": { + "slotName": "C1" + }, + "model": "temperatureModuleV2" + }, + "result": { + "model": "temperatureModuleV2", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35b7de451eecf2282cdfcff3386ac6ea", + "notes": [], + "params": { + "displayName": "Tubes", + "loadName": "opentrons_24_aluminumblock_eppendorf_1.5ml_snapcap", + "location": { + "moduleId": "UUID" + }, + "namespace": "custom_beta", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Eppendorf", + "brandId": [ + "022431021" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 43.7 + }, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A2", + "A3", + "A4", + "A5", + "A6", + "B1", + "B2", + "B3", + "B4", + "B5", + "B6", + "C1", + "C2", + "C3", + "C4", + "C5", + "C6", + "D1", + "D2", + "D3", + "D4", + "D5", + "D6" + ] + } + ], + "metadata": { + "displayCategory": "aluminumBlock", + "displayName": "Opentrons 24 Well Aluminum Block with eppendorf 1.5 mL Snapcap", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1" + ], + [ + "A2", + "B2", + "C2", + "D2" + ], + [ + "A3", + "B3", + "C3", + "D3" + ], + [ + "A4", + "B4", + "C4", + "D4" + ], + [ + "A5", + "B5", + "C5", + "D5" + ], + [ + "A6", + "B6", + "C6", + "D6" + ] + ], + "parameters": { + "format": "irregular", + "isMagneticModuleCompatible": false, + "isTiprack": false, + "loadName": "opentrons_24_aluminumblock_eppendorf_1.5ml_snapcap", + "quirks": [] + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": {}, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 68.63, + "z": 5.8 + }, + "A2": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38, + "y": 68.63, + "z": 5.8 + }, + "A3": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 68.63, + "z": 5.8 + }, + "A4": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 68.63, + "z": 5.8 + }, + "A5": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 68.63, + "z": 5.8 + }, + "A6": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 107, + "y": 68.63, + "z": 5.8 + }, + "B1": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 51.38, + "z": 5.8 + }, + "B2": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38, + "y": 51.38, + "z": 5.8 + }, + "B3": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 51.38, + "z": 5.8 + }, + "B4": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 51.38, + "z": 5.8 + }, + "B5": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 51.38, + "z": 5.8 + }, + "B6": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 107, + "y": 51.38, + "z": 5.8 + }, + "C1": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 34.13, + "z": 5.8 + }, + "C2": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38, + "y": 34.13, + "z": 5.8 + }, + "C3": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 34.13, + "z": 5.8 + }, + "C4": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 34.13, + "z": 5.8 + }, + "C5": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 34.13, + "z": 5.8 + }, + "C6": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 107, + "y": 34.13, + "z": 5.8 + }, + "D1": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 16.88, + "z": 5.8 + }, + "D2": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 38, + "y": 16.88, + "z": 5.8 + }, + "D3": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 16.88, + "z": 5.8 + }, + "D4": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 16.88, + "z": 5.8 + }, + "D5": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 16.88, + "z": 5.8 + }, + "D6": { + "depth": 37.9, + "diameter": 10.2, + "shape": "circular", + "totalLiquidVolume": 1500, + "x": 107, + "y": 16.88, + "z": 5.8 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "temperatureModuleV2C1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutC1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29332b0e6840bbdf93724f65381fcc74", + "notes": [], + "params": { + "displayName": "Reservoir", + "loadName": "eppendorf_96_wellplate_semiskirted_250ul", + "location": { + "slotName": "C2" + }, + "namespace": "custom_beta", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Eppendorf", + "brandId": [ + "0030129326" + ], + "links": [ + "https://www.eppendorf.com/us-en/Products/Laboratory-Consumables/Plates/Eppendorf-twintec-PCR-Plates-p-0030129326" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 123.7, + "yDimension": 82.2, + "zDimension": 20.3 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Eppendorf twin.tec PCR PLate 96 semiskirted 250uL ", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "eppendorf_96_wellplate_semiskirted_250ul" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.56 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 18.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 72.6, + "z": 0.8 + }, + "A10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 72.6, + "z": 0.8 + }, + "A11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 72.6, + "z": 0.8 + }, + "A12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 72.6, + "z": 0.8 + }, + "A2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 72.6, + "z": 0.8 + }, + "A3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 72.6, + "z": 0.8 + }, + "A4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 72.6, + "z": 0.8 + }, + "A5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 72.6, + "z": 0.8 + }, + "A6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 72.6, + "z": 0.8 + }, + "A7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 72.6, + "z": 0.8 + }, + "A8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 72.6, + "z": 0.8 + }, + "A9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 72.6, + "z": 0.8 + }, + "B1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 63.6, + "z": 0.8 + }, + "B10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 63.6, + "z": 0.8 + }, + "B11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 63.6, + "z": 0.8 + }, + "B12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 63.6, + "z": 0.8 + }, + "B2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 63.6, + "z": 0.8 + }, + "B3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 63.6, + "z": 0.8 + }, + "B4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 63.6, + "z": 0.8 + }, + "B5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 63.6, + "z": 0.8 + }, + "B6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 63.6, + "z": 0.8 + }, + "B7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 63.6, + "z": 0.8 + }, + "B8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 63.6, + "z": 0.8 + }, + "B9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 63.6, + "z": 0.8 + }, + "C1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 54.6, + "z": 0.8 + }, + "C10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 54.6, + "z": 0.8 + }, + "C11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 54.6, + "z": 0.8 + }, + "C12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 54.6, + "z": 0.8 + }, + "C2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 54.6, + "z": 0.8 + }, + "C3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 54.6, + "z": 0.8 + }, + "C4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 54.6, + "z": 0.8 + }, + "C5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 54.6, + "z": 0.8 + }, + "C6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 54.6, + "z": 0.8 + }, + "C7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 54.6, + "z": 0.8 + }, + "C8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 54.6, + "z": 0.8 + }, + "C9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 54.6, + "z": 0.8 + }, + "D1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 45.6, + "z": 0.8 + }, + "D10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 45.6, + "z": 0.8 + }, + "D11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 45.6, + "z": 0.8 + }, + "D12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 45.6, + "z": 0.8 + }, + "D2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 45.6, + "z": 0.8 + }, + "D3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 45.6, + "z": 0.8 + }, + "D4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 45.6, + "z": 0.8 + }, + "D5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 45.6, + "z": 0.8 + }, + "D6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 45.6, + "z": 0.8 + }, + "D7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 45.6, + "z": 0.8 + }, + "D8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 45.6, + "z": 0.8 + }, + "D9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 45.6, + "z": 0.8 + }, + "E1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 36.6, + "z": 0.8 + }, + "E10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 36.6, + "z": 0.8 + }, + "E11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 36.6, + "z": 0.8 + }, + "E12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 36.6, + "z": 0.8 + }, + "E2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 36.6, + "z": 0.8 + }, + "E3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 36.6, + "z": 0.8 + }, + "E4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 36.6, + "z": 0.8 + }, + "E5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 36.6, + "z": 0.8 + }, + "E6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 36.6, + "z": 0.8 + }, + "E7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 36.6, + "z": 0.8 + }, + "E8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 36.6, + "z": 0.8 + }, + "E9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 36.6, + "z": 0.8 + }, + "F1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 27.6, + "z": 0.8 + }, + "F10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 27.6, + "z": 0.8 + }, + "F11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 27.6, + "z": 0.8 + }, + "F12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 27.6, + "z": 0.8 + }, + "F2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 27.6, + "z": 0.8 + }, + "F3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 27.6, + "z": 0.8 + }, + "F4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 27.6, + "z": 0.8 + }, + "F5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 27.6, + "z": 0.8 + }, + "F6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 27.6, + "z": 0.8 + }, + "F7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 27.6, + "z": 0.8 + }, + "F8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 27.6, + "z": 0.8 + }, + "F9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 27.6, + "z": 0.8 + }, + "G1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 18.6, + "z": 0.8 + }, + "G10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 18.6, + "z": 0.8 + }, + "G11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 18.6, + "z": 0.8 + }, + "G12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 18.6, + "z": 0.8 + }, + "G2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 18.6, + "z": 0.8 + }, + "G3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 18.6, + "z": 0.8 + }, + "G4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 18.6, + "z": 0.8 + }, + "G5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 18.6, + "z": 0.8 + }, + "G6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 18.6, + "z": 0.8 + }, + "G7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 18.6, + "z": 0.8 + }, + "G8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 18.6, + "z": 0.8 + }, + "G9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 18.6, + "z": 0.8 + }, + "H1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 9.6, + "z": 0.8 + }, + "H10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 9.6, + "z": 0.8 + }, + "H11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 9.6, + "z": 0.8 + }, + "H12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 9.6, + "z": 0.8 + }, + "H2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.44, + "y": 9.6, + "z": 0.8 + }, + "H3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 9.6, + "z": 0.8 + }, + "H4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 9.6, + "z": 0.8 + }, + "H5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 9.6, + "z": 0.8 + }, + "H6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 9.6, + "z": 0.8 + }, + "H7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 9.6, + "z": 0.8 + }, + "H8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 9.6, + "z": 0.8 + }, + "H9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 9.6, + "z": 0.8 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dacbd6268a87b2e93fd3d28fa4c9d6be", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": { + "slotName": "C3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_1000ul", + "quirks": [], + "tipLength": 95.6, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.47, + "shape": "circular", + "totalLiquidVolume": 1000, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadModule", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e87102431e9ff2fc3d0555c7aba17bed", + "notes": [], + "params": { + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2" + }, + "result": { + "model": "thermocyclerModuleV2", + "moduleId": "UUID", + "serialNumber": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "259b27d8b8a38da05c2a32396fe299de", + "notes": [], + "params": { + "displayName": "Plate", + "loadName": "eppendorf_96_wellplate_semiskirted_250ul", + "location": { + "moduleId": "UUID" + }, + "namespace": "custom_beta", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Eppendorf", + "brandId": [ + "0030129326" + ], + "links": [ + "https://www.eppendorf.com/us-en/Products/Laboratory-Consumables/Plates/Eppendorf-twintec-PCR-Plates-p-0030129326" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 123.7, + "yDimension": 82.2, + "zDimension": 20.3 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Eppendorf twin.tec PCR PLate 96 semiskirted 250uL ", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "custom_beta", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "eppendorf_96_wellplate_semiskirted_250ul" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 12.56 + } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 18.8 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 72.6, + "z": 0.8 + }, + "A10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 72.6, + "z": 0.8 + }, + "A11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 72.6, + "z": 0.8 + }, + "A12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 72.6, + "z": 0.8 + }, + "A2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 72.6, + "z": 0.8 + }, + "A3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 72.6, + "z": 0.8 + }, + "A4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 72.6, + "z": 0.8 + }, + "A5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 72.6, + "z": 0.8 + }, + "A6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 72.6, + "z": 0.8 + }, + "A7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 72.6, + "z": 0.8 + }, + "A8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 72.6, + "z": 0.8 + }, + "A9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 72.6, + "z": 0.8 + }, + "B1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 63.6, + "z": 0.8 + }, + "B10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 63.6, + "z": 0.8 + }, + "B11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 63.6, + "z": 0.8 + }, + "B12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 63.6, + "z": 0.8 + }, + "B2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 63.6, + "z": 0.8 + }, + "B3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 63.6, + "z": 0.8 + }, + "B4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 63.6, + "z": 0.8 + }, + "B5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 63.6, + "z": 0.8 + }, + "B6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 63.6, + "z": 0.8 + }, + "B7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 63.6, + "z": 0.8 + }, + "B8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 63.6, + "z": 0.8 + }, + "B9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 63.6, + "z": 0.8 + }, + "C1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 54.6, + "z": 0.8 + }, + "C10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 54.6, + "z": 0.8 + }, + "C11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 54.6, + "z": 0.8 + }, + "C12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 54.6, + "z": 0.8 + }, + "C2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 54.6, + "z": 0.8 + }, + "C3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 54.6, + "z": 0.8 + }, + "C4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 54.6, + "z": 0.8 + }, + "C5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 54.6, + "z": 0.8 + }, + "C6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 54.6, + "z": 0.8 + }, + "C7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 54.6, + "z": 0.8 + }, + "C8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 54.6, + "z": 0.8 + }, + "C9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 54.6, + "z": 0.8 + }, + "D1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 45.6, + "z": 0.8 + }, + "D10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 45.6, + "z": 0.8 + }, + "D11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 45.6, + "z": 0.8 + }, + "D12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 45.6, + "z": 0.8 + }, + "D2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 45.6, + "z": 0.8 + }, + "D3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 45.6, + "z": 0.8 + }, + "D4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 45.6, + "z": 0.8 + }, + "D5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 45.6, + "z": 0.8 + }, + "D6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 45.6, + "z": 0.8 + }, + "D7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 45.6, + "z": 0.8 + }, + "D8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 45.6, + "z": 0.8 + }, + "D9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 45.6, + "z": 0.8 + }, + "E1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 36.6, + "z": 0.8 + }, + "E10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 36.6, + "z": 0.8 + }, + "E11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 36.6, + "z": 0.8 + }, + "E12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 36.6, + "z": 0.8 + }, + "E2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 36.6, + "z": 0.8 + }, + "E3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 36.6, + "z": 0.8 + }, + "E4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 36.6, + "z": 0.8 + }, + "E5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 36.6, + "z": 0.8 + }, + "E6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 36.6, + "z": 0.8 + }, + "E7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 36.6, + "z": 0.8 + }, + "E8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 36.6, + "z": 0.8 + }, + "E9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 36.6, + "z": 0.8 + }, + "F1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 27.6, + "z": 0.8 + }, + "F10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 27.6, + "z": 0.8 + }, + "F11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 27.6, + "z": 0.8 + }, + "F12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 27.6, + "z": 0.8 + }, + "F2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 27.6, + "z": 0.8 + }, + "F3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 27.6, + "z": 0.8 + }, + "F4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 27.6, + "z": 0.8 + }, + "F5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 27.6, + "z": 0.8 + }, + "F6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 27.6, + "z": 0.8 + }, + "F7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 27.6, + "z": 0.8 + }, + "F8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 27.6, + "z": 0.8 + }, + "F9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 27.6, + "z": 0.8 + }, + "G1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 18.6, + "z": 0.8 + }, + "G10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 18.6, + "z": 0.8 + }, + "G11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 18.6, + "z": 0.8 + }, + "G12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 18.6, + "z": 0.8 + }, + "G2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.4, + "y": 18.6, + "z": 0.8 + }, + "G3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 18.6, + "z": 0.8 + }, + "G4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 18.6, + "z": 0.8 + }, + "G5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 18.6, + "z": 0.8 + }, + "G6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 18.6, + "z": 0.8 + }, + "G7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 18.6, + "z": 0.8 + }, + "G8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 18.6, + "z": 0.8 + }, + "G9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 18.6, + "z": 0.8 + }, + "H1": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 12.4, + "y": 9.6, + "z": 0.8 + }, + "H10": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 93.4, + "y": 9.6, + "z": 0.8 + }, + "H11": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 102.4, + "y": 9.6, + "z": 0.8 + }, + "H12": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 111.4, + "y": 9.6, + "z": 0.8 + }, + "H2": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 21.44, + "y": 9.6, + "z": 0.8 + }, + "H3": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 30.4, + "y": 9.6, + "z": 0.8 + }, + "H4": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 39.4, + "y": 9.6, + "z": 0.8 + }, + "H5": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 48.4, + "y": 9.6, + "z": 0.8 + }, + "H6": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 57.4, + "y": 9.6, + "z": 0.8 + }, + "H7": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 66.4, + "y": 9.6, + "z": 0.8 + }, + "H8": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 75.4, + "y": 9.6, + "z": 0.8 + }, + "H9": { + "depth": 19.5, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 250, + "x": 84.4, + "y": 9.6, + "z": 0.8 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "thermocyclerModuleV2", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutB1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "thermocyclerModuleV2Front" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2150c88525b8f6fc03fe2e091f5d31f8", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cebfc8e3e1a8f6268df9642d656f6037", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa440f9fde0ee999ce2087c7fa5286f3", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "A2" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d5737be77a0346d99423e7ad387f09d", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A3" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 200 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_200ul", + "quirks": [], + "tipLength": 58.35, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.59, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A3", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1", + "singleRightSlot", + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35eaa8dfffc6f997679ea040467b4583", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "addressableAreaName": "A4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "A4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "833a30e00341c3cb775aea8931a10e8b", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "addressableAreaName": "B4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "B4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7717cf065546e375a996110a6d43ff9a", + "notes": [], + "params": { + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "addressableAreaName": "C4" + }, + "namespace": "opentrons", + "version": 1 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16.0, + "gripHeightFromLabwareBottom": 23.9, + "gripperOffsets": {}, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "tipRack", + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": false, + "isTiprack": true, + "loadName": "opentrons_flex_96_tiprack_50ul", + "quirks": [], + "tipLength": 57.9, + "tipOverlap": 10.5 + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { + "x": 0, + "y": 0, + "z": 121 + }, + "opentrons_flex_tiprack_lid": { + "x": 0, + "y": 0, + "z": 0.25 + } + }, + "stackingOffsetWithModule": {}, + "version": 1, + "wells": { + "A1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "diameter": 5.58, + "shape": "circular", + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "C4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3d4116cb785f3476f5eb64127aacbc6", + "notes": [], + "params": { + "liquidPresenceDetection": false, + "mount": "right", + "pipetteName": "p50_multi_flex", + "tipOverlapNotAfterVersion": "v3" + }, + "result": { + "pipetteId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadPipette", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d105a4c426c621c62880855fd04a9c3", + "notes": [], + "params": { + "liquidPresenceDetection": false, + "mount": "left", + "pipetteName": "p1000_single_flex", + "tipOverlapNotAfterVersion": "v3" + }, + "result": { + "pipetteId": "UUID" + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63f43dcd4c1c167cb17f7e95c7cd3404", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A1": 85.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bd3255f9c6c7f85ef0b4a261d5c699c", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A2": 1000.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78c7664f53dac6b7e735be084798334c", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A3": 1000.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d8e7316e0d473209f5de06a7e91de9c", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A4": 1000.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d9c85dff23160df80d2e5112dec9d00", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A5": 1000.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "193a07c3b2e5fc14c20e1851a90e3883", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A6": 20.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9333830ee2f61283d9d6c62abe0e65c3", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B1": 960.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e77664417fc33fcbe4dd17077688882", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B2": 200.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "545eb2fe67a548186bf83d4d20948c83", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B3": 20.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1d7cb9dc241db4ea49622f989328151", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B4": 50.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02f41e154ef9d8e8f28434d121b98b1f", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A1": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e0be8be9520cf00730e052329b20a6f", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A2": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4eae4abfa42e7dfd35f041961ed7d295", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A3": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00724ea81168c49136f49e414e766dce", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A4": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "481a251d7e36cdde0e5ce9e9d073c9a0", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A5": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7728cd5e12d620f100a50f9f92f59355", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A6": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "439c4db087dcc7761df44fa529144e3f", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A7": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c02a7c094112293c00aad3a2f9570fdf", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A8": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccdf5b9bc22fddae98f975079eed2a49", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A9": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1f1579fcb957c1489281ddf2a6c680a", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A10": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "accf46b47c958cadf603e8f4ad0b843b", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A11": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "619fb1978e37f649d6f907b4e360d62a", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "A12": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23eebe1de15786f03513d4c444a06464", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B1": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "625df7b9306fc288743e7d8695f6fb0f", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B2": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c99d22059e3fcf09300c39008a7a2a78", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B3": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4de739ec5cecb5441bd91aad8cbe8bc", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B4": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5d42d65364927adc402718c458e93de", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B5": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fc6b5eed6ee549c1ed459905a75ba28", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B6": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20cb5f66fe84fac045206282f5bdaf38", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B7": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cfaa80882ad39922f2d3b6420dabcd4", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B8": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dcbab08b277ed83b51c1c4b14728d36", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B9": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e194547fabf0490473b9e4826cde38d", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B10": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b414d260dbb67c5a589d1dbdbbb3fe6", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B11": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ec93cc9d5e94c6c0572cae1079a0895", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "B12": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f5e2eff0e971145c35276d7bb529479", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C1": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "623859e3bce52e0623fb05e529d6076a", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C2": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0034dd38f961b3c7cf8429c3efd23fb4", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C3": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bbba4d07dd3b8f470fad4d617dc9cec", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C4": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e8dfa7d6f82cd9cf4698e4e34a1a40d", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C5": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aba451af7de91bb7a87dce5ce8345a33", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C6": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eadeb9b935a1db7c8d8816847d981817", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C7": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27ffaa4ae1023299f45e337d9620843e", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C8": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82ab742f6fecffdf03033be7287b3ac8", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C9": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37f1dbc222d1fbceaa22056e9d8faab0", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C10": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "736969380c116a0d5eebe3de52427e8d", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C11": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a2ce94a1734d72a6a34b4ff86a0733e", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "C12": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c5a2b13f75d3ca23014a6a587d80b8f", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D1": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36ca0bf699f7e032133ae396c5e37f5b", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D2": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44e00cfd8e0bb7aa5935f96866227d79", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D3": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b71e43263eb54874da18e512f0676759", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D4": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a5ed73b1c6409082fd5b49c580a7856", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D5": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccdf7c3138983066aed124da00a2b32e", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D6": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7a58bda962ab4fed12c24761e409285", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D7": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8040cae0d30b9bb4deae23e999bc5241", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D8": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf8cdaa5881e7830e84787a3a7e6b4eb", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D9": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28f7e9f211594f4c265aea09e448cdcd", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D10": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "850a7717f27c58b029c2a29c15573a5d", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D11": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLiquid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0fa9863d6c9216c101e1ed2d1c988500", + "notes": [], + "params": { + "labwareId": "UUID", + "liquidId": "UUID", + "volumeByWell": { + "D12": 182.0 + } + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "233ec787807b701fffaaa6d0c245bc3c", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78b737b870e87581bd381925793ccd14", + "notes": [], + "params": { + "celsius": 4.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "646b45e4907e0c299350033f9d1ef720", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82a4c24c87c4ff0462b8a3745f0b5b96", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84380bc0db9496613135c167a66ac774", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b51ba261953dcbe5c02c76a8f17545c8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74edb651ef4e5470b28f959beeb58ff5", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "658390783d2e6222f96420596c64e6eb", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "916cc0af26bb27e2de7650ffc51cdf45", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 14.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f04dcd4c09814f92695ffba08e36813", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36cc272d9c977b45faf7584e81739ce1", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f351258524c471685d0e33be097f1d22", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2356a5f3ee5a892352485b0f568050c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4621e80643e3427d4eb0e550c7f081d3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3018b842d8ad69cc359e1c2f1b514749", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54afbe480a1e0212e3751007f3a1c28d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2cf28376f9c66f24dd5874bb25eb27ef", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6418a13b46103419f3f9fa6eae3765f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37aec79e7251d6db3cca0e4a14b519ef", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87aabd08e6e430ae7eac82f781c6327a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de8b1b87f2701474da3de6292b781d21", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42fef1a740353d91be4be5098f6de069", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1921e890fb19f99a70ff26d416567405", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdede2b0c9e5475849e6ca26918f9cd0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 23.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cee72dda2176fe90872b213abf11f0d1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7aa6a67e734f451d3b56343e49aa9449", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cc041bd07a43aa072d0b748ebf12b39", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e1bcb4c3266d95e1659a1a8c05933f0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f134aa85d20e849b29c27c11d422971c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe92913084474bf77b25c56d353c9680", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c93f9cbe34e37600cb76470b316e685", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3b5f26a4784a52cd902ea6e6c645faf", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecf5cd3a8ceeb97ea2ff13992dbad8f0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2e9068af13fe5c04ec408b55ba0b862", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ba33635a2a5e5961c9018dcf8e6e3cf", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d757df0cdaca30ca83d7b8c47625d163", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a42b1f75cf0b00ede8726b5f5ebf62c5", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e40c9061db554b75994f49e371cc1783", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09b683a11069f0d89eec16472b96021f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 32.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ebce39047a48d88e72300f2531231a23", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67f4a08b10a2bfbeb42c5e28f5057384", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de9acfc1b5fad6157e7d1161b2e64243", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9fc890c99904d2a1abc919092f0e085", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b30cf3b1329ba4295ad0e4e41513abb1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cc638f8a892ff90dbf95947c736351e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8fd63ed6fbce40a086899c3fca031d7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "574658f5144dc9061048a66f51571b82", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0acdaf08b49380e6030c6566320c97f3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee5acdcea09ed3f4171c5f38fe82e3d6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfc9b30b59f788746070ee21d7368234", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43ef40fcd889a0a091928e699b54cfdd", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a841f637abb9a6d8da7752732b3e8df", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a89f05888936f10af0f7713f180493fa", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "366d8ef5dd1ef3e16e758d199f92fe84", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 41.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f5d62c4c40d7f507ac715fc39f1776a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7225b92ae83f7f5742a41edf805c56e7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85bf7a7ce1de9b925f54537d989ca46f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57ce0b2f46b6ccabd266601c6646d148", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6754a7e2345750a2c46919ae5963bf3c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3632092863913c34c670f03ddabc9792", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cee141bd004db54244eeabe77fd2127c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3277f18eed13b63833af6606c322af2e", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a776fcb80dc3a6266d57140b0a402092", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac647adf47d13cfb559e8ab2a91b2564", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c84e3923a8a56251703847464193bcf2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db1db1eec9f514076da35cc70936a187", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77e13f29225f1451617f60b8f9525751", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3f70d0d8a66b6e1b9316044abde2645", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5a4f186fd1b44a727e0a52e61084396", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 50.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97ddc69dc98af66be9a555eb2640200f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3690dff0f715cfdf478e5ca3d2981b6e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d6916f67542185a36fefffe8e732b23", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ace5007c623b8e9d023e1857d9e341a1", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3e20d7fe151074163f49105cff9c030", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c1144e3b56626535fb5b43d590b8c50", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "383f57a5aa833aaaed345a29863bffba", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec719888d8512cfeceb12c2be42b9075", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3338e7f65cd4d70e69d536faf23b275e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea31a2a6cadea4f9309ef40556c9b482", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f63f1b0d14bcf270653b04ed509a1d80", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd52f1ccba368e9e01bd62e6246744bc", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29a4c1f980c7be3445bee726f5fa5c21", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae1caab5d27e095d178dd8f186f72f09", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f5469eb965d2b1a5347369fae364150", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 59.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "769f84aaedfb4558f5b7a09f616d94b8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c66cbba86431ca484592108a9ce8dd8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de72d140f64dd48a915b6aed66add9c1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de8778dfea4a9bd156076a6cb4e3a1ac", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2943eaa4509fc161ed4c4a87659256d8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39a7a0e2ac039707e94b7bf94bc25cb0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f877451848b13a615985023f49ff6762", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ba6742966fa1d0e7d2067121be8f9a2", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df3c716b09312a2c67ad05850edce724", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bacfb8bb01df395598679e66eda3e5ab", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c416ee33e087033d200d46456038c79b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b1ceb08de3166567249756c69ceb44d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4c7691025bb619dfe142472edd18037", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6395e9ef5922123e5ac3c6aea7ee4f9a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0969052f318519efc671710b1425c487", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 68.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7c54f4245bb87ac8209e0d76fee6773", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2f50067bda9d2c6ba481e34e78c199c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c991c27345512e40af4e5002896a09d9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4893bd301c57765fd3ca2f6e62cb2885", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d92817f0b4e9fc1c827d42b6d8e669c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adbb0b7e7b9d36064e92b279142aa8b7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07bfc19c429143e2a271416659b9eda8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c01d214018edc492f0da7e79a42f95f", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bb75c2b55927a958ab30b7fc0ef3901", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "338c8bb2599c9e845808187e179c4cc1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff7f4047e85d7a90a002f0b7ad4cd41c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab5ef0ffeba9f4d7bfe89335e45859be", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6279e5d59faf93d322e98a0ab7774aac", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a76a8c10816f10057126dfc48cdc424", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b935407c54d12f0a21e439fee683a58d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 77.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bfc3202f2b86a1b239adf80739bf2b6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e1f1c1c6daf765e86e782288089f863", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc90ab435d6ff7de5f6b3badbd33ed7e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "319ab76cb34e145cf6e564c17469e10e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbb51791930809fc99841a243b090722", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a45b35aa1560d579a1c6c20215e59f21", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76af19b39ea7fb7dc060bb088f0a3efd", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae9cd03472cfa75db16639c952822928", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f08b15d4810a9e4971a258832065a57a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ffa37f2348d21884754b6e4a9897dd4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fb0f56aca18129fa9bc64092f1e5274", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3100de7f47baec7299c50d8a42df2e4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d24bcd0ccb8202ee62fbbe1062db25fd", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78a41ad531085e6db4952b9b75f11d26", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5544dac290dab400af57cceebec3fd0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 86.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd4aa094376c2123c25e29de82a2db94", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fd6aa00a1fe4a05e508002ffd6077ec", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81b8a822e19f0feb73a4c2186781bae2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ed265630039ed3c95aa6e8709ed8de6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2629dbba3c15215d4ab86dd32f0851d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3cc90e1f83150ce5ca678254bddbf8b9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49a5b03fd2b8f181ba407e2a7c1d072a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4037440dde910dca45e004a4d217f3a8", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb8c0a4d44b704c82b0d3bf9c8d3e5eb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa0f7fe8b4f9290079b7760703a4b211", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d21f7948223b05a515d9fe235db569a0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d695a5bced56a4a766deafa724cf6340", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51eb499230d6225a19782ceb90ab8fc6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bffa919f50b952a12d995d8e954b0428", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49c6baa6b3a7ac299250cc3aa5402eef", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 95.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3b2cf3aa93f03bb46536aa0aa928394", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fa970f9930cc60d450d02b60c19a10a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19924f0e8cc8fa8a39f11aca1bf70e06", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0b0b7f7ade6ea89992ca53fe6a295e3", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3c893de9b6b9972339f7f4308dd04e4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03011036f0090f58a87e743b459aa1dd", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3a72428a7cec0c78a248e1ead307a79", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f003f6c09ca3f3a462c315ec9e0543c5", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "940a57dc284cfb7459dcb67f2facff45", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81073f17c71f18d289b1d3169757a0d6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fe69e64636565bfe6d1019037940e63", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfb6efac445684f8c20778c17591e2dc", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "972e1ea02d0a8976b2d694d1588f81cd", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a201befa32e19f066aa6e787fdba08e7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da01fb5abef8bcefcd0657c59b02929c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 104.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d84f5c6351bd5ebb62e3c3f9150c084b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98d946c335013ecc9d34ed5209423f44", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79805cd244275e8f0463281419a3b9b1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33a011cf5f0f9e275b55aa8f719f2a10", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "536e91eec33ba51afd559beacb8344ab", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "770aa9516dcbd9bf049c227ee7a0a2ab", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca7295d49f0bc16df9e7045c3e27f5b7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60715a6ca33afba4249737851ec057b9", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "153a27c3dab2e7f24b7b52edff37efb6", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ec027116b9c4c0d8d03e24cc4ceff7a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94180410f83f92d7475db6823777cf5f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c89d3415afe3809b2e9a12cae2468855", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5b582c942df9478bf4f1c1042790aad", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "822ab01e296a067c97f78cc7ffce4ad1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce8cf8e3949dc88afb49c59b15675190", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 113.38, + "y": 74.24, + "z": 17.3 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81a029c1fb3ff61b379faced5d878b24", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 14.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 14.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0953a5f8a45bb485e9996344b957ced6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "720ab98210b893c90fed2d7c75eeb089", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "579dd3d4d4e2b1d92abf0d188c29ad20", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92bd2970e0c1f337152d26fa22c7e7a8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bf1929442745c55131c7585fe3c98ab", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fc2c6d9d339fd3e7d2ffb276307f381", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f961ba46dc04bb4956c3a10e8ff0ba81", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91476cffb9420dbc7abae30595f97b35", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62228b3a4fa93c20fdadb379596c2548", + "notes": [], + "params": { + "message": "Moving sampleplate to trash" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ece081772e44a7ec3505ffea9cb424b4", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover", + "stagingAreaSlotWithWasteChuteRightAdapterNoCover", + "wasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "temperatureModuleV2D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11413bd1c8888a869645d0318a8ccb5a", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e340fb1f18c0b4f6bd4f1431b5869263", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f752e4e77ac1803d05a076a0bfdb1039", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfff4aab8e691ab600b66452a1562450", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e763b942577112b6c4b249b441dcde8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ebe4e9046e9cc8dc6ae0d64c44856f9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04ab135d48d2dbf5866cae102696ca13", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c08b6f053a946ad478b9d556be57c0d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "398f7fff440f7f20a4e374dba7535de2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44f6c1d5b750ba5bb41f73c3748f55b8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9083d99ad48df79c15273fdaec21bd9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89528d8d32bcfd58960943c06ceb4042", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5a149edb67f848cd6f73ab8d1b29850", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b885aba6919bcdcc243b43711bdfd57", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93a5f6bd8c86830382585ffa4920c6e3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3dfa778be9259fe4777ae0256cecac0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "37b2d98f08e26f73ce7d0eeb91706f32", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f4f9cc85ed84c791638b73dd95c01c7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.3 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.840000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63de611d1a63faf31689d89fb83db84d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61837ffcafec3cdf863dd6a4e7737bb5", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "823ba9a552434ffd031af9e10e635348", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "308a2b34d30cf83bdf061f83180bd00e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2de0d24de6d86bb655aa481f552ff432", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ea4bc9c234bc82bbb024436bd5b8e60", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf0f6e78176ebf5142cde10f0b4bdf0f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "131ebd8eab0d5b3a12b8ba4833d979ac", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b49ccc47ec3db04d413631c080c5f59c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e3fa76cee6f70fb8bda6ef0760329852", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2b2c834653e9ae486096dcc037603aa", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b32d9dd770d7fb93c6c80b8bb9d63aa8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9287db7d66f9ede93bb8d6037e0f39b4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a219789d6acc88850b573cc9908bd6a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35e6a9d002e02495cfde77672154b43d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b25544d0551be4f08f2614692e8bc7a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.3 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.840000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b762d14f1b4a274ff573c9434437402a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9700aa8a39abb86b758753f005c78890", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9931cbc33b203235227daef77be168f9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7ffb15cb185d157866ac66ba6bc2ae6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00d76143ede1abc4eb4de124867f5fb0", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b89cbd5d819a2be6414efefa854286c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79ff98f75a83d162c5b41d5af6094126", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f1b88d607ec33b1fb21683025773c0b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32f0c122c20ed7fefdd7560cfb9e73fc", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eae126d00e0e2d7a43f5aa85552c92b8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63de87336a44e894cf81b003a4c18b53", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d9d836e9091f9464a99700a7b88fe4e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad5978a8dd61e4a4f560fa679172f07b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a1711ed9f12d6a4c5b9da24e44700c3", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6c18b107df8fd4f61bf4f8ea98c4f080", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8ea1e1f5dcd1a78bce6139de7091705", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.3 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.840000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f0d2265096f10ad6a47666ebfdbfaaa", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f65f7c5d4fcda28378bae214cea9f7a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7dadf7b098305db7b590515a4abddb6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "715e8fb690929abb4cd2a83030b526b8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44af5abf68a42214ddca76d9785ca325", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2db7647433c1bc739b310061bb5e5eca", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bd8ba53bb64e65f8eb4e707d2ffdfd0", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48732d5950ef3dd7b0e3ec2fa8281257", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d72717bde23e328142ea841d2a45e82c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81866742d34675652e9429374f42ed1d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "274127d1a40db7d5991d655defd95509", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a02409915cfad6223bd706acc8679b29", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cb1e9e98180a7f95c2183ad6b723edf", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "679be3f3c1c0858325e619faacf15f48", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00e4dabd8a941c6b6608f30f9a41505f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "260e9906ee117f4b39a1ef01e5afb2fc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.3 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.840000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60ce9d16d67f66d6b1012a49348dca89", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2beaa623b54ce23e6145b70f4b18b88", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cd41d2d98ad3ac2fd0a5a3464ef0c00", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "964fa34d995b9ee67318d2bb8c5e68c1", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7321da1a0b0654bcea075a61fa7a61e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcce36390ac57ee73fdb214d43067afd", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf0b825199cf8c5befd676f679d4840f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9026c3cf5e4106e18cdf32f9bcdcd198", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e163099639a635c314c3eab53bb50454", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e014841395fa0312961d339686aac9a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78bba6b2d091106124262a612c711b78", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5264c0c1735329f536f6ca1ea8b06be1", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68ff17f385ed5ed3a10251363dd0a424", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdee64ef16771cfd6999adae153a34d1", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7ad2395dc53028fe58164493bb96953", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b37385afa1b874aa5815168460ff3298", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.3 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.840000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3256b50ddf7529622ef4d804f3c15e78", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba39ed29ff3915aef0ea2c7b1026be07", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df3359cb2c3cf1b75d754baea6a43274", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61942fd99c3ab3e272c9327e983137bc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a142c7e0ce9e790b7666e79a60816d9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af819d34e526cb9f5f88efe00b477888", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56c47ec51dfcc9243e05d3ea968ee4c8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e458b53bcf29da1fdc989262dd7af874", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61e30fb005a5d4b21461ce6e8a2d646c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f394a4c77a5db538185c34651f29d117", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c01f1393c1d6b56ce5a1bc633629481", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88555bd730a66a01da26f353515a2a57", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e51b88810f7e7600ebf6c0b4b072088a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41b5ca9ac88471ba75a43af949ae6c85", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a45d2020da468f6af3158a01e4c9ff0", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b27adf3393a372f6eb22f9bf42a95504", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.3 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.840000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e7c4ae46e1368bfa90c670b3fbe8e0f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c215b603b1c396c26e050d5f2212933", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbe58ee9b6bcbaee25a6de813ab933e3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a1a080cbb747478586a0c3c6992b01c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26ce9f7d99346511144f10d6acf29fa8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d100476b42fd7afce7897082f8c93a1e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa44846a79cb18f573fa6a233687e9f4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3fb70d4dd029bc294dca54ae359de667", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e03a8bb77437cc0ba22d527d8534e7f6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67aef318d58cb3be9a5de985b1feb033", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d07d1c93af3ae3ccbac0079c86d67d9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c278f7fd8c21596fc72ef38294f1b14", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9f66e9c1ebbca202f0b12758ba83a0b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1ac8c48fd6e956874bafd78d05007d4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b383dbb40da5b4e8ff195e9e215a3855", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a791434717aef6b543f62fa721882f3", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.3 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.840000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bc54c73ca82f87a0dadc18f886ca856", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c061e4b9756ff1984d97c70354f71bc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4bbb474ea00fcadcdfae055aafd4037", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7a5fbdb755af32d7d68847ca3a98906", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4acd101c0d7dd0f7298dca20a4185e53", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8eaf11ff47ef1971d227f7de1f898577", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aabcfad5b5f04361e7ffd4a76365071f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2f8d2333d75c210c8b5d13539371068", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33f60455d76d051ef290a48399138b96", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74963c5a580b355fcffe916fd9bfa1ca", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ba3ca1c051b7fe215412709d27b71db", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "addfb9acd18c2a4312fc8a96535a321a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f42e4ace994c23bbfa0867f6cef51eb", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e30e091fa61f5ff1f43f0e77a777ba9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d49ee2a8a873785622060387b96f9593", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e5bb21bedbb58b5c380634b3c2a2ee8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.3 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.840000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1aa8565fc0daa4716dff1b39dd2ab6e3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d7961a49eb95f69d3d7db5b54a57343", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "012dde8549758c3874a69b8b01568eed", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48644ccc026dc972ceea0bc17f61c5ec", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69f2dcfba6d4efc2ab25d8f285234274", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1ab8044eb840375badd33efb2c08b57", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "522f99bfc670e689d25554634b8bcdfe", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3bbba175be59c7d9358063d7d316590", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "044aa3af3a807e047d7b325f59030734", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 25.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d02e5973faa80378b73c48f871c1329", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc8b78cb59db73995f5b0215fdc1bd17", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a7cdfd7fc5c90856b4e26596d5eda56", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b55bb83340e91acb9931b93976133fbe", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13596a2fb42e75b06dd917b26b2c4d58", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d17a4cf9975ffa58e5736843dad0097", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcdd15e63f710c29ed81db3ba9f5ebff", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.3 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.840000000000001 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "833222c3bf82130f39995217579f41bb", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "097ef5756cee08d50a6ef429fdc06209", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95d4cc95ef3f301622b866bee0ecad6b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02ad181a14a32b3c43a95e78b0ef7e37", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b03175c8ccb3a32ced2b419f21d9e6c8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c21e7d749e0764be710c75b8ac3b7318", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba52afed0f40e4f8646d8b9c581ce427", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49e82aaf3d677af400e8a5e74c56f272", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "242d983a23f675063e43729fb4a1a1af", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5124e0487b51f7f228effee6c5a1b43e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d640e0a91b23bb2c3918af88a6fb361", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a14bf8b029509bb464cc71ed238702ae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -117.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 6.85 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a34f5a118173c58158881bb25809e9e2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ae94c070f7a4402d3ef79bbd48122b0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "240a52705cdc43c33eeff869d5176dbe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e18da47617c5815c789fd166cc4e037d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8ac3e4703f12bfec7f4d52a82fec397", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8062224e293a78472b7743f1934421e5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11a53cb38e1db964b0212faa05fe4c8b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bbdac01bb2640a5eb0108df1f725b385", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -115.69999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 8.650000000000011 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00dbc719fcf97c6fce57ee0022e1fcdf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8cbb064ff2efaf56be376428fbd1eff", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4b2242fb9ee4b228339555368cab913", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b6c37fe89a956c62c0c8828f3ee6477", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4840e23d2b3c858f4f440f9bfdb1149", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a48958f1b874aea962f94f52041a009", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b3f1ef993fcbe6441382a3e76e9d4a5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5181bad1f6b72176ce0ffe7085059979", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -113.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 10.450000000000008 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd5c81cddce796b7e09fecbf26e25238", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e80bf6425558bd31b231caa29248c310", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02a560103365c60bc0844d69db34f03d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe29b9ca9ed3f51fe3491eb7577cdf3e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d8d700717f5ebe44329be137ff515a0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42aee47fcb87434afe4ec39edadb2dd5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77d1f57a4b5aa52e6db75198477dd39b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc212a625cf39bf5c78aa8e217f88e21", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -112.1 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 12.250000000000005 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb4c796e0207145dd57bb25fb06ae537", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6871455e9687a284ab45fc844451993d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9680efce5ac652c1b9085e93c5accc13", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13dccba3b72a40f283ff206e5cce7426", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20bd8b9b0988ba41b44802a88191bdd1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "202e89565f72fa5693fd8f08dbf40196", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0ee8765fdbf3f34932a7c4445f9c8d2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c11d85292f7b1a5545e8006876d461ea", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -110.3 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 14.050000000000002 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5cdc5918b7191b169732199d31d2249", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d31e4b8e260fb212e03210cf7c789464", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45fd2091e748e16d1c37f81802881865", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d9019fb994d6c92802d0e85ef062a3f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "033f58aff5fbd8bd48fe6b129e7aaa47", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "192e3fc722be154fa9902c63e853fc69", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d6e61b43c765239ab690aa36dd15e4a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a923656d58ffb063ec339caee55d5d9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -108.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 15.85 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d80f0353aad42898d2dd2864b64de7a4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48d7393254872fde828adf3e45e47b8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "605b23218fc27faf2909135ffa6c5a2b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "456f38573b7b39d9548b43134e3949d3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64a64f08cdfa5c73224a2ac09fec52cf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d04b3c8dd2899f9dd2c494c0a023c82", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89936ea86dce78d4eab7eefcc1021ea2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b98dc8bf57a92932ae06b499b3b7980c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -106.69999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 17.650000000000013 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4011e97acc4eda259535efe6c63449dd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7257369419112a86c2ec7bee314d4e9a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e6a712f160c6453f6f586b65bbd193c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64614f08454eb19493cee031d6edb05d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a47547a258bc6ed0ab844f046c21f51", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4568f28ab3c37937e774e03e34c895c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1445bdf55efe345fea3443ec32126d8e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89f61db9dc3d722eb9ea60ac9f0f29a7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -104.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 19.45000000000001 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e481086fd8940627d8195a9bb4176342", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a659b76232a1af190323ed6a00f0ab19", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "466d297a8ac6de6aae0df903b09b01d7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "252fc709d10ea303d71244b4fe3b322b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0bc8f1b6f1b9e9306547029de6fbe65", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d227c6eb8ead2eafa9640114596c050c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c39ecc409453ac690b3b8e22db1e96e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec00ec7498a46806ccef7de030263e02", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -103.1 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 21.250000000000007 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a7c87528512276699e103dfaa4e6f60", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "426a3ebcf08b01f359fa59053a1f7572", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee0dc6571abc3a0bd24b258dfa8e0ee8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "296330b9247f13b84a6282756e3b797e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d86cf7b9a969b2c6b598dfc404c62e5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "286df88f516fc3fad2b62c54180846e3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30ca64a8a195d7d2ef0b4ee34a06d4da", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df1af286f5c9ff1f490dcf7d66d2f8ac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -101.29999999999998 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 23.05000000000002 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1494ba826df7ca527aee2d45b8803c00", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49066649405307cfc421f1143055530d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e174207d9f6b32a8014ad601a13d794", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a1fd9c7a3f8702b64947013aecad861", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19572f6d41bf939dd4e1391f7a7ef50f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e40bb7721bd4a00504245507c99d917c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efb2535ed4c100a74dc6dbd27cff242d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47ae2b1de8b3b865405d050dbdd14227", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -99.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 24.85 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "017c0cf91d07aabaaf8c4300c66cf720", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1815ffdf039ef3550b7b521cfa2cc3d1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d25ba57657acd24d633023318d77d67", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e66cef57e0ad97459c24bf909474ee41", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76db843a36ccdf679f19ac76e0e5d97d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd796e4c8266e905314c33e660e03eba", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 150.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 150.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a95b9de7ba6ba4c0717707410ed57599", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff757dadeef83314a2fd5756ee951a5f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 180.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.69999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 26.650000000000013 + }, + "volume": 180.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86f21504f27c592c96d8a36db9026b0b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc06bacf7a9f705f622cbbe034675d76", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b90a28f90f8243c0e992b26c8e177a92", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3bf75380a9eab30d25efeb9032cf00d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de1c64a808518c6bf5aebd50749a7a5c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b15e7c08e84d5df66a9f588e020dfa3", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 345.56, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e02bd147edec26563561d7c3acad4ed", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 336.56, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61b5d194327bd00258fd504ba9cebc09", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 327.56, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc198f3f3b5886d6404075492d15a928", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8f66fe28c4e703b066425427176815f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c97a69c37054a14656fe4271f892e10f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53a9fae169295f1afe6b1ed9f0ece3e8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 16.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.200000000000003 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.740000000000003 + }, + "volume": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47a3d37c57ec6fbdf1226377637f3038", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 26.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ebb910effb511ca0c09da4f1a66d33e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 26.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a9cdc5a6cb1c78ebcaa6e56fecd3388", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3c1677af109ee58fccaa5f31cd100f5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5cf2fcb112d3924009d0b49d2d4f50b7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b387eda6f54df3a0f4a95f802b4c5210", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 9.6, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.63, + "z": 15.800000000000008 + }, + "volume": 9.6 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8889a698afaa1cdeb977b5683ba4b74", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 9.6, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 26.85 + }, + "volume": 9.6 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7b98c419e614dde9d2fe4e61418074b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95f3302e6bde9fe521a8963f14a6954e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c40b5742f2a2df7c435d7a2e3c839bc6", + "notes": [], + "params": { + "celsius": 25.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09c20a8acb3f736ac48301abee8e0b33", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15faae5395e1d899a985eab840f6cb87", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "749c6fb14c64f0ed684cbdd4220e0ffc", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da5f9c7fccc95d171d0d68713c29a66d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 342.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a684b707a2e61d36f119d9a9d631bc52", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -105.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 19.1 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58f3513c339e1a3c8ddd646609adf695", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 177.88, + "y": 42.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "311e54bde8b021b9294cb7b70477d99e", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31cffe2f4523c7145c26bc04e4a6f4af", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59479ef9da2f3676e778a553da8e9016", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 342.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0540839a2e4f6dd1b691b0bbead6f6c4", + "notes": [], + "params": { + "flowRate": 75.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -110.375 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 13.975 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bc990f688af11dc3d2945ad34c55ede", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 177.88, + "y": 42.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1c676a07c9f848b6fba61a4e56acb6d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "623cb74145b1a57d80e828b81108b1f6", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efac68e6216ba2be6efd936d9e1eee49", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcf87a63247cb4a91c40a7b318ec6d06", + "notes": [], + "params": { + "flowRate": 20.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -115.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 9.35 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecea4f71d56f06c56a7e9275e43fa086", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 200.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 177.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c84b60392de3db29a3f1288085359a5", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ded84482fa25581459ade8d41989df00", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7eb0bdc6986b629bf2103689210c9538", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 342.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eae2f423e36bf7aca3d9ff6a865fdf4e", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 38.0, + "y": 175.63, + "z": 15.800000000000008 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8618f8863de36ec67ac8bc6f3f9058b2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -115.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 8.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbc623b513fab169d6b8fa8643d2f407", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -87.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 36.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5d7abca9f8251a5841ec02256a3f768", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -87.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 36.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc83fbfc03da477e564e290097edf17e", + "notes": [], + "params": { + "flowRate": 500.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3972c907219a93b95ac1930c0326f20", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5486e799a19fed29a4439ebb0c391e62", + "notes": [], + "params": { + "flowRate": 500.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3d17d6cf6866d98ea5d05f1fc5ffbca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "615784d3375c85c29aadb7a04a517825", + "notes": [], + "params": { + "flowRate": 500.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40f8cb0b1c83f3e84f91e43a1ebd880b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "289892e0a0c53bd2c015094e908505b6", + "notes": [], + "params": { + "flowRate": 500.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b861606ed086be07bfceb8586a222b3c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bbc92a79934375b92b0bb49b76defbc", + "notes": [], + "params": { + "flowRate": 500.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7b56c979508ae04581f8d32aecb6da5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b6f9f12f257eaee919468e4fa0768e8", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 41.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba5a8954878a18c18505b6058b12e669", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 41.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ace30e2689cc265725bad9cfc1550de", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "220c63c0b07194d92497262f251e49b8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b36603151d287c1c319bf6479bf4145", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08c14dba19b8cb593cca11833c5133f4", + "notes": [], + "params": { + "flowRate": 400.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 55.25, + "y": 175.63, + "z": 15.800000000000008 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7df727d5c88b19db97e02fd249f16eb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -112.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 11.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02425b93a68da90afc4d3e64f1e84dea", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -87.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 36.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63eba8b2db5f4761c70be6c876890855", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -87.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 36.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91c35aca52d13a15b5c8ec77ad84a8ec", + "notes": [], + "params": { + "flowRate": 500.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b715fd8e9a5144be863df912cb1a9ceb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5312c12eedddf2c432d075bb0e397664", + "notes": [], + "params": { + "flowRate": 500.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fae5e13c51d4f52c3155ea797beb3453", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a957c79a14f3430eb7690b8db2ee1690", + "notes": [], + "params": { + "flowRate": 500.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b284d6b0eaf182c2efaa50f3c40d7590", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1275a63fe3241e3993babff8b1535d48", + "notes": [], + "params": { + "flowRate": 500.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45dcbf294fdf9c8aa4a31cdf6957a0e0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "457fb6deacbbdae8af4fbb3070c9f9ab", + "notes": [], + "params": { + "flowRate": 500.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a99e58d81c71dfd2bf2dfcb25af63ab1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6859329c6e78a30f78043a50cde27f1e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 41.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11d1b4f0e0814419f3526fd900441318", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 41.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd1396460ccc4f8c54b7965f236ccd49", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56b2dd1dcd2aa0b537a64ce4b1cb76de", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "315676743b7da7ebea103b3eb928c5f6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16d323ead2f63e105263c02c87fcbb81", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 72.5, + "y": 175.63, + "z": 15.800000000000008 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccfbb5784b2463c0f5d0b87f1fb85f18", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e941c246dd22ba395320cc4d61920b1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -20.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 104.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75d3274907a5595c3b4d976f330638b8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -20.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 104.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e7860115950ef6e4834dc75b07140a4", + "notes": [], + "params": { + "seconds": 0.5 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0812f45f699bdd6733cfdd87a35756ae", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 181.88, + "y": 67.74, + "z": 121.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eeb9ffe301d402928105c38cd787cb14", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 173.88, + "y": 67.74, + "z": 121.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ad3eaefb74a99cb7d9636d3039fd6df", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 173.88, + "y": 67.74, + "z": 121.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38e43dfd4db54e185141a757aae8500f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac54c51666f76f4f2460beb6c978befa", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a49a2757ba36cd081b553ca438967b3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1196795eb4860d140b489c4cf5b12bdd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 89.75, + "y": 175.63, + "z": 15.800000000000008 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "085ccad72eecf78aa47ed5912fcb210f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 950.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 950.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64a01aa9f05089885b491dc9296b6b4f", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -20.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 104.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9526cf350dd643bda1c645e93f7ca4f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -20.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 104.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43d981a83b0ab677ef067bb44485fdb2", + "notes": [], + "params": { + "seconds": 0.5 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3729012f7c15aa00e287875a72584e46", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 181.88, + "y": 67.74, + "z": 121.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29b3cedf1344cf4daa332487f49085f1", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 173.88, + "y": 67.74, + "z": 121.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9298f9105eb6eb8093d7a8f97925944a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 173.88, + "y": 67.74, + "z": 121.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "045ab1f8013c89ae9c775c6309869388", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "679a0f9e311fdc4c23f29acf3036ecd0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd6d25d0b641375b5a979c01f923703f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 342.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cb91625ac932029722bcb1b71584496", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 107.0, + "y": 175.63, + "z": 15.800000000000008 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6fc5b2c47567e32780670b659745cf1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41075b95d0a6f3c74d0f5b96aca42e09", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "585a8e4ff2e1382f40120e359dd63b13", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46723d16126f67ebcd9a82c6ac7ed680", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a80c57eb2186bd95f7f8330b1a69d245", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d21b9b56985dd99809bac447d577ae4", + "notes": [], + "params": { + "flowRate": 499.768, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "44dcd168fd43d8f0f3f57eb295f9c22b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8b375a127ab03f9dfea208b8c2d5111", + "notes": [], + "params": { + "flowRate": 499.768, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bc399512c9d644d555e037ac1ab8d44", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72d41d99b327cce8bd9f6188b792008c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b93c11341c025c2fc5ef5e5670a84c27", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1252a4d20fdf95c9035d32d74a2040e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e968426e11a79bac6be9034ec2426b3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc5ce69b3b64a941e2eec53d7172c736", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "295313cb3544126b8f1021f7a12f5343", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55c5891d350144e6da8a7c5969830143", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "511b945a6e825b68a0332c2629907477", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64b2909827b40ae7270914499a408088", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f526d67b398dcc446cfaada9b769265", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a48f98e5a526be46b6744dfb020acc1f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "548040e32a6144e36f45a5579460efe2", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a597e592ca4a987f544c7f535b2ece8a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63ea05ee9841a40de78c101ddb2c1b68", + "notes": [], + "params": { + "message": "Move reservoir" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04407e2031d24ca263cb343deed22094", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "temperatureModuleV2D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "temperatureModuleV2D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08b7f619f70be5b4ba7c346e1ac68a09", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dda824b3e0df36a9c841f6d1b0f337a3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d172b6ab8f30395cc0506cad17b7addc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43999b23fb977ab2dd3f899522872aa4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ba93a82ffb7d53ca9114f5bffec70bd", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "350a2c57cab1156028683d80b8e70608", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78643b57cdd2eac422fc40b1f68e8020", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6349f739a7d5f1603de7d64886e351c9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 12.4, + "y": 63.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed1f3c9dd95fb69c901c1f5d6ff4cd3f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ccf7047d07a7d8dafdf3470832ef175", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b784b14c075c1f2d3e27b0f01ba42288", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f89be436f9f083a7880ac1aa48f0f2e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "536a5f6d9232fbd36c3a026d01eddcf2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 12.4, + "y": 54.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "066db8168a0f04de4c60a199888d0f3b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35d401e7025124688d1310064b386794", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbacc4a723207985877388a05a5b8b24", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5028f29d8667936b825a4049dca3afe", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a240212b64669315d0ef1cb2a1062cd4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 12.4, + "y": 45.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8dbd2caabaefa8c867b57c162d1b36a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbcfae091a0c479f3351da31104db1f9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41fd1da3b5e6ec18cf4320bd9b36cda3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb9a64b87304231742a8a3f150a30af7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7a77e541644e3e8f016f6e67f25461b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 12.4, + "y": 36.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "611353cecdf43142d0a997eed788ec0d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22e1517fb8a28e8fcc8f7b380ceb0f1d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47d4933c4cf92308141f63f816324c7f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0753236a850cf1c3bae2d857d8a51f07", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "696b61c4312b41febd1652d73edd7022", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 12.4, + "y": 27.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f32bbc3573593de8c58c63547b6d4368", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1805bea25171077a092103fa301f87b8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2abcdaf088f3470a8869014d8fdc9046", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "124734a64ed8a1ad0ef1b4f586d39cce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "421918b790789fbe3d7c8ef051c82199", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 12.4, + "y": 18.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b00073b582b6f18f9c83b15936f4615e", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e935c282e9d2fb449031d9ca1bf71dbd", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc3baf40aca835c579886c66966ec2d4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cee444751a5d58da6c72eb0e3d0d8983", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4819a5c174fcb8928489c3fdc9dba3ee", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 12.4, + "y": 9.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43222f4ba11a02f7525cd3347e1240e4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9df7f478764d1a81a70448cee36213e0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2cd475f240f50f0a52475baa6084d1e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c2f3b1743dc2d120d4b6e856aafd92b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "069669673724f6c53525b9b0df5533b7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adc7bfb7bf79ab70db4d7f7e47a08383", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6123e7e9595150681f5219c6c753cf5b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0fcd9a6fef8258997157dca4c0ce268", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cf781ed480c63f4bb41815540f9385b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d264818f7412a71dc5570e13641265e6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 21.4, + "y": 63.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa0e2b8576dbd460541ac815028d3d2b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ec7a83870dd404dd3b232bedf53e3d7", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00a8298ece74d7fa60a35ecc509aabca", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61059f2efb10b38d1f03e9dc68b08dfa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b10aeceb0a00db86b29f157aecad0a3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 21.4, + "y": 54.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d32fbc5bafe05106fbc881fa40f827ac", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "146898b4b544aced6fc02b2f6b034f5b", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3ebd7f344d8b41f75f97458aa8c297f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C3" + }, + "result": { + "position": { + "x": 360.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "874daa7378a69580555c8febfc69687b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80ed9e24fe8553f3b38a42d685a95e3c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 21.4, + "y": 45.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d739162d809c930d5a3678999b0a09a", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f3468ad60607478bb1696b501753d59", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9efd11e4edc7be76dc4d5fd10de3eaf", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D3" + }, + "result": { + "position": { + "x": 360.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63df07dbe28701be7fbb25d93381c7da", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb14edefd3c8067d0839adf8b190da99", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 21.4, + "y": 36.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27f23c817c451007f17aeef47859acc3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed3a430b3777fb0e7c32c7f6e05881f2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1582e7727d27fd4cb5a45c517258cd52", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E3" + }, + "result": { + "position": { + "x": 360.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5d88daa83d8b81d380c3c10fb5d79d2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "198bafc9f9995477cfaef763c6354d2e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 21.4, + "y": 27.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7995850f8b691eabe1116d673e05138", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "991bcd99bbe9f716f22ea8147e5ad31d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bfa915c9ef99340012222d83e8e08946", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F3" + }, + "result": { + "position": { + "x": 360.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0bf4c4eca1a492b4a1e610d660ebd2a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bcc59eef895066c052e583c5ac822b8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 21.4, + "y": 18.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f859e5b1e6ef5a27bbf02dc21372fd7b", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "068b197b3e915ddaf60f119a3a9c149f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9351b91693eb2361f38b2d4aff5d201", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G3" + }, + "result": { + "position": { + "x": 360.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f8718b9722ae4718033b6da256d3eac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 177.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e380e1ddf91cdbdaa4b6758a7ee8c439", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 242.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 21.44, + "y": 9.6, + "z": 29.900000000000002 + }, + "volume": 242.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a21f34f6c51c33a18af444c6d8ce49c3", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9d5c07418c07f9f8fcf22516652da03", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f456b07e2c3b89da307a0717867d37d", + "notes": [], + "params": { + "message": "Move_tiprack_50_1 to chute" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85c240fd5943fd8d4c3762762753d10e", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover", + "stagingAreaSlotWithWasteChuteRightAdapterNoCover", + "wasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a370b55134aa530e6e0b650130ae9115", + "notes": [], + "params": { + "message": "Move tiprack_50_4 to deck B2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "933e3df003a88858229e25e034cc94f6", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "A4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e495a588a2d9f992097df1f5da4b6cb8", + "notes": [], + "params": { + "celsius": 4.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f841ad57de4953fa43bfb3e82cf6ced7", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a306a1b624a5d93297f1ed2290767b5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9aae4f5f62d2f42f1f5a57afd73fbde8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2eb824543996f36b447a14b251cbd16d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3de3cfc82b68d53e4875ed4210043c7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7181d20a140a17d3cf585f44bf835c2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10ad8c888f39d848b50127d399ed9219", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88c6d357abdf482ac1ba070028a0d8a7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "266f50e83ea9ec75b25d69c9ae375aed", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ecc0b7f5e2b57f82c0a555e41304e0a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0df63e36c05a97f0053d82b39258d09", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a44efdd251c5cd96832c3cf53ce28da", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a133c851d2a13f2861a754ddfbbfb2d", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "639e04ff78a18c297c44bbb1d215f5a1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ad2b7cc5271fd8e86d65c15854abedb", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b152d7d3e2d77078ea773e7b56062b90", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4daf5f0a5aa8e33bef443b5cc889f296", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63c0a480089a14d20f6e5e5f8ff1f33e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7990d432e3fbaa597220695dc09e5e9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a267e25e0f416cc19d21f2539d62d227", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70ca85d09549dd3e31399599bd20e1e3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77430441799c4e0c6e36b43fb6cf7e31", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b861051e5fe626404ff83f259c8b5793", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88b4603f961f9083c15fc3b836ea8ae3", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79b92077f1023a0ecf283f59c33ae45e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29d9f5afe8305d84c36512ff02a888c8", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "140ebed486178e9c904d3dbe5c3178e5", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19794c5c10086778de7f2237cb926e8d", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d005766c16d2301d8e415886ee126aa", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e3d3efa93612de746576d82e8f78b0e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de62cdf839669eef22def937fc8632c7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "619da6bbfc10811c75037a5a6cb6137a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e8f2a45fdfb0330155f39b6ac5b31d0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6ba072f3f0693c089721d2989d9e280", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43e8c5998acbfd60ccab19bac8e0de16", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68a97eecc777780a91e2b8759c9815f4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9b7c4f6010ac874f93507a33b1113dc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea206bd01a130fbcef8fadb704c451ef", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "389c725caf5f5e1f12a14bd7617564ad", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23147b88079b0a8773bcb384d161e19e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "080c7211c217675d45b9b817525ac659", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d17b6b4667b3415ea4b6eeb5462859f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a1b4bf1eb5c49e66e5e78a94bf1c6a4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "027aaabf01e923574ab47d0a9b6e72a8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a58598ba954c9439f2e01e04210bddf8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02479daf14c53487942bc8d31f61ce80", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb5562908cd739f31a6788da6f924343", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58a7f4fedb3b7d4b3c07ffe3df7a6e1b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2091dd2a7ae9a27a047401e02ea1f8d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "821b8f06970fe7d2afaec3c3faff2c3d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52630d27c6cfc23f0445a215e1586c33", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88b536f3f8d553a419b7e42c747f1933", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9931cef3f6baf865894bad74459bb8e0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "683e16c91a907349fbb1baf8053713b1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88b57b3b74975e917797b9335d98ad69", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85a05473d675b97261b2f582861eb5ea", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eeacd9e921f7a3335ea82ad22ee5b6b6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d4f87e85742627a30a0ab096098c6d8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76eff15d52142488e248bf3fc338b72d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb09a89d5b489ccb5e7d31173e3b7447", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f46c618c3072c20fc982e924cc9a4024", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6760de02453edd7d91d04849abb546e8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "084b7dcba978a629d1c7bfce222a4cd5", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f52fbadb6622427f2688e0a9488303e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b9211e60800641f6ef0241f3d7b95ce", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "073c2d5e77218be48bda0cbc386ccd36", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63ab02fc4ff7610c368ff9a0159a38ae", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "add487a2183349ad469406f70f110230", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e07f0df75e732604f90275071389bcc0", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b9d3021334b244a666522cb7f1434a5b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "262056c67b077f549d5b97bba9826541", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58bdfce633e84a1b9803648e553a12b4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 12.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4224cdbc4105438ec764568a174581ab", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4e133540458ebbe2968ba0d76d4db5a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f380743b4ac2d6d1f84bd591f1aefb1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6925047a50661ec265b58f97768ece9d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86e7834bd1d8d10ea493e19997ef874c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42fb7599ad52c7e5ab77ca2a8b3ac28c", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7d4c175751130395e8a5541e826a6a8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4479ac187d0ae7b41628150fcee4995b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31f4e22c9222d3fe4c7c5ee74daf5f91", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b892517c45e11baffc0a6c394a31b82", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d945200dedd27efd1d412dea6e5037a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a16e4fe4a55ea1cfdb3bdd0fca3dbb0", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63dd0dccfd323ae43b5dae4949b5148c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aaa3bc58f7f85b667e1d682fa7132677", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b36f5439e151a2fac67882f9e990b3de", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "467a7c59fbe89fe47e436e5df72a65b4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d417f7ad4cb0ae412111f91bb56dfab", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0133677a7de1af86c9cfd213b511307c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "551d688cb9b8bd7e8437a8cfc4bd74f0", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3d42fccc32329934c964bea8b60b0a4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63779b1adb74ffb8ff3b1220a1741664", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "405d517100ff176fd18adf144829cf47", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98bff288d6039a0dc66ea34cc3246b56", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8d2668583f9d70250d84037cdbd066f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3413ff07d39f590019be00f03470098b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73982671911f0a6c8afc82fb4c24b459", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c27e99e2eb10aae76e765ac79a991ac0", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0143cf1e4c1e6f970bd456b0f32f2d0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9746a74700ec530208401655b2fa996e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "387fd5964c4993d588920875ff3d3a80", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c455fac4c114956f4e413e9952110fa0", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee0d49016d210839e80073d235228f9b", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad7728fc51b68922fa9c1bf5f2838728", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bd9230bcd562ae045fab0cea54cc796", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4ac602149b9e3d819085037257704f7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1192302de98cb9880bd6d17de9b3341b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aa48b87d6c74311a4b1ffd1bb3896fc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0817ce270e1ac5e451d093f7405af110", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "641e75576780dbd9fefa4e5cfbad6908", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "262c9f8f5eb5d4e81aec404607e527c4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2d2492720582708fb19d60d3e28d050", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84ad2f013830dd20476c9cb8f5205f14", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5412ba193625b20da55a282511acd4c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d12de6744e92b6dda357da1b74208486", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c5bdd36c20214ce359ce5557802f71d", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93ad3102f66f2aafacfff2942f605981", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4211fb1d05bddd6a71bac9261c9861e3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "793204853bfb03a7ab5f378996805511", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0426c65e0a56944f22d0d3e262f468f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a16ff07e74fd215cbad48937bce6e5df", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb15fc5706925da50380b1e85c70a495", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78d97ec1dc7c8081ee467d8735399249", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e54ae8eaf6f3f47c358311494e1b945", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41219476e8838a1fc71c93d2f43eb185", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8511a0ee83d5f178e9acd27a4383fb5", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f201656877a3b203d89002a033a9204f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f1fe4b22c5da36d3328ffede8234594", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f1926fbc049a757655cd186402a280a", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3ca853db797786e567a9bad8fbc7fbc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ab7ef31b0d9404475485c657ff3346f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95068bee53540e50265fef54bedd39a4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af008c1942a32dcd8757730126376d4b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bfab2dfa6a94b73bd2b91622bfeae43", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63cd89ed4efcfa6f58cff4f5eec440b1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ada2c14d572dead5fb914714527cb47", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b3e74053201e0d85cbb4c81bc19bb47", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f88514aac9dc5fbae31dc6e9d25dbc8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53592250774eca1b9a240cd0ff1aa13b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "450cb410c2c50ec841d93475d70908a9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd8c250a6aa42ea92fa439483d6587d5", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "729896c34fc7f69b27f6015c0798d750", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cab8d7a5d29f3e905d542c552bee7519", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d7f96797a9eb4c975784b7e3bb3d0a8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9cd96aaded1b0b169fcf5d8058f138e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cebc59398746a331436700fab528e3f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2faff34aae098d0bda713baf617d702d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cee5f0f339eb4682cb66930c48639c96", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24fdf1286453712a4215e854be0effcc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 21.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1117900f45db804fd24890737ee4a22a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86f0b968a34e3a56085a56bd97fa5d60", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e248fa70812b47d150720f22af728d1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f76c02fc296127c83a8a1a3a817c2bda", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06e448d3d766ba0eaf7b8f5cec06e64c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3f6d57e11740f6f6c96b32e2739e776", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31feb786f22844115569a4b7b708cf01", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ea0c09921efb0e7ebe9cca3fe88aaaa", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 342.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69ba5f2c663f7c5e3c78dfed7e4e7de2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 20.75, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a07352708a48d55f09f1ed01fdc05ce7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cdacb11566b37a852ca04a67611bfd3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 20.75, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ff8d066a811b0b7482935f60cc58901", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 39.4, + "y": 63.6, + "z": 16.4 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49612c7c5d17a88404fce607446a77c5", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 20.75, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74324cf80b033b7b4fde1a9d6d54e7ce", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 39.4, + "y": 54.6, + "z": 16.4 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fd23b0831123ff596eade01842936bf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 20.75, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0281de84a9ce66204cd42b4af73e444a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 39.4, + "y": 45.6, + "z": 16.4 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55c7edae84fa235e9007175e398a1ac2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 20.75, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d8397799ba61338b1244666d4fe314b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 39.4, + "y": 36.6, + "z": 16.4 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04228d22e74522949553d83bc15952c8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 20.75, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fca8858e8d8ba6c52518363bd4c6d46", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 39.4, + "y": 27.6, + "z": 16.4 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "705f8407a1734f7e2ed52caea5ee3dda", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 20.75, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f1a167c687b8ef194cf36e3fd9fd716", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 39.4, + "y": 18.6, + "z": 16.4 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "911cc34bfb6feddc0fce9aacd07d9006", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 20.75, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "750989cbfb3a3b8f8b222522f749c1a4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 140.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 39.4, + "y": 9.6, + "z": 16.4 + }, + "volume": 140.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5c70aff10ab99790c1f67d80d24c054", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e795e1a49baaaf3b062891ac8d50a57f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d08e3cf1f483969fa49c4f932c513a9a", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56b3d411e02e828e9dd3e139cee99251", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5565b4a74afa63510c750cc0a1ff0c0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "808718712a423f1d2248a166b8d76f6e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23cb88bf06ecbc6fb9c1ecadb1b4acba", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab0e0876abf9c1fd43246b1c45ba0580", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a1ed0f47d69bc3e036435dc6df2eaaf", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfc20cc5886eb00d1b78ae204f99f83b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e4f6cc1eb1e73e2b528117c05b6ff7c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc29bd2b3e2898e2262e0c24929ed7e9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8dc9ae251fefc8afc248df024035061", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c32aed8b39261b433f36afcc3fcb3e7f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b472f82eaf0d37840ce81ee5d02243d6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ad6c42a6fe5b4912be2f7e2a7d5fbf2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a0d1158c14c97b103d058e54dfe7c62", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86bc3a6ed60f255211e783422e4eef9a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e49666737e059250592bbcb71e8ab90", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14eed4e43d352307272d5c246b133dff", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "548e769f726626b2ed38c5ce62dfdc43", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d61b7ce545d849619d8b2d85eae81374", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c5efd3fea356cd4a5e1feda07090ebf", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db6026031c2ddc0b807b8f2c2ad050f7", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4c08a5dbf4413573c06bf77b93d15ce", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3371cc42d505b1f6c6b2f85fbc3a3e7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8eeb54bdef35d94a310e2deecceea3b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05c74a298c364b8e09ed1c14cc496cc2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ed3918a529014f240075fe6cf563d5e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e3addf28d7d816290f607bdd900ffff", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e326ff3863ad4eab3a3bfde74f42c865", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ea08467c80852eeb2fe057c71bdd386", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00ec58f406d01818c5c6588a0d3984fb", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b216e0b9b16443364e02b1455544cb7b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be9bf0587726ad5ba43599e782ce835d", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b7cbcbba72d138371f26c6940e2b9d9", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9efb91eb1c9ce688417ac9e32bb7414a", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06a929edefb96e73bad9f97d6a7ade32", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b230993d0f26706ca04678054585b014", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc312cdcf8972c90cfd10e2095f92c72", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfb1316fde62dbf9f9c9492b64354b77", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9c8dcaef0c2e7e9b97d4de40b491b7a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d3d477045bf564ec71378398798ad5f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9da1b4ba50a306c24c18bd18476ee4cd", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0cf93b19f598917fbc63b434c78c798", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6b2c47eebd9477b0c89cb92a12813e5", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14bb907c099f143082b38d065fc07256", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2150039b7bda5fa072ee3f0befff82d9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6332fecca1a546a34ff9715bae5a65cd", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d86170cdb751233878246b1d6cce7446", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38e7fa74efb2c3730ab121aaf6768860", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7162435d010c4a8b8abd8227848b2a50", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fcdd5acc032128c95f711cee76514b0a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a91f68de1fa26046acf01d351efd3018", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49c7442abbf0626eb2e97a0c3f191b13", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f65f5fa581e3c91dfc309aa8ff38e01e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e960ec405195a0679527468784eff727", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c71c896cbe10b96f8d50c4a8773d9e4e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3083583b4b87b62e50b2814d284e3083", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f62ebac20b1fbe324867a7887be8813", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "938c4b5feb956a405fc1bdb3a5e99821", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69c694bad39509013f056c2754f278c8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "311ef2c02f8407507f6dfcbd284aa42f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54d2adfc3725789c2ddf8f422f1f1bac", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bd112a9eca1dcb44fdbc58881aca175", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdd17a9f8040a6319d56b00b35ddd94c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f246abe084446efa3b890efb5d68987a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd84a28381ee515b760169b055a6ab9a", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29b892b63e4bdffaba5d38ee0247fa5d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f189e8de836cadbd9163944ecfebe08", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78b38fb88e2c4dcaa39aa09521265075", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e6857999251658e96b2c079b3486ce7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3adaa8f5d3652ac6168c0e70fb56b184", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa2577c732719a43f30b81123126fbf3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2a29eb86e9e139461f2289706456a48", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b205876b7eed551ba689c09bdaeec2a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0b8b8de3809a4a0acb81715ac3aa434", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb7db14425212e6510896586839c45c4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23d19479de681d7749cd746e1f84d260", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41cba65cb7a86e83c7997745383f98eb", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "414b23e12942c16598589cc202916bc6", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42946728a288fba1124f87da910c52a9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2959d83c634b7f8f14e12760d88b520", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43e13c36941b2b4f703de870f26f2cb3", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "062307221ab968199f6ddebe4c05a0cf", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db21adc810323e459fd5d8558e762601", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f648a43f7c31998fbad73500fe16404e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71f86451632bc0e8ed34c3df626f1968", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56b49b9ea2c1e189a6e0ed8ac962e625", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f79273aa8c2792a0c5e38d5fb7b75a7", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d06a2644bfd9920c25e34e23f9cba2d", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f8d3e3325f539a6e00400aa7e52a3c4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c26ec3ad9d9ceca7efaaf64f20b4738b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2e64911c3e52056e2b823e599eebaa8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13115bd314e66bae74b56c7b33101a0e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0047b7dc7b03df318baa4308dd0acd4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdf82d470d31d0abef40232e29da44ec", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0069cbd535604d38e44fc19d9629053f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0fca644240064506747ac0f535680f0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4279a4181840a3528d964319cb7db48e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "425ee2bb9394cce2f9b6068b80bd607b", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07861f6f19d7b1234523c042d061e413", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "109cc0b22dd0e9422cdac33d7a6ec0f9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce0d75bd554f8db446817288c130b188", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0cb577f72de524dbeccecc2e7d884340", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d31e2009b5a6ddc364ef1abacdeddaa0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02a8ea16b108e6da76b6aae27ac25282", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e6b8cfc57e592a7d80d649364c520d69", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6df790bf30c5bacdb97ed299b22a707f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d94baac9130c8ca58f1fd3237396fed8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c304b3deca1cc766adace5f6fc4b5ea", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fea1a8e7cb0c3ada711a256df92960cc", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d7b928a3fd9fc08fb313acbcba69010", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cf708553fd1af7d133d2e4ebcdf1aa3", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f8c70cadae1bb97d0accd0bada947a8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19a9094000d5495d0c39e19b6c5815b0", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "38282dd46e655c8a588f8f5c285d3d58", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a56edad0a95c7c52df1ff849c9c41649", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04bc42f2cbbc7f294ba4f140aa630b3a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4a386a10c59c2af55cca357d3ae8509", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3afdf9ab223c9566d79ae858ea82979a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8a576d1740207ab6068a4ea7f7b8241", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9071fc64ea4ca4b28d8d81e7e8d6496a", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6a933dd946b52ad85aad05412e84333", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b70078393d19679933ca316881132c2f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5832f2d36dc5a791e8a9e4eb63dc22db", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 39.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fd938028c067daa11775514a8d108f9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 10.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 10.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba2406add72f5832186b85869d068fa0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f842d1391612e6f9f80347543653fcd7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80edb4770f3166ea6a152b66106a4880", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13e7d0e3999906a963c4954ae142b09c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a52c4963b9bb46122a0bd763128e4b21", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3449fa6dd56e688c60d7c0b92cd2247", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 35.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 35.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "432d87fb9d0233f6efc4cb38d479334f", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b293e286a1ae46e579979f24d3a824c4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e8bfd24dda8802ffca45793233d50d0", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "735b37561ca37253f43625faeedfd709", + "notes": [], + "params": { + "message": "Round2 stop" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "004452c2a5512b0d765b06fb41afa833", + "notes": [], + "params": { + "blockMaxVolumeUl": 60.0, + "celsius": 16.0, + "holdTimeSeconds": 300.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a70623fe11adf7aad25e6d7ffe0dc59b", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "865855b63f9e0a496ce059712a4c4cab", + "notes": [], + "params": { + "celsius": 4.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c873380884546add31a25bc4c5a1a145", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbfff0f565a988f18e8e78a06da29c25", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17549da1d1b21831c8ca4bd8a3df70a1", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b790de072305689b3d611a626b0c91eb", + "notes": [], + "params": { + "message": "Move reservoir to C2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a120a21164a1d47f29684da2914662c", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "temperatureModuleV2D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a1cce40b1f0242aef31624764721564", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bf5a54be2ea85671e0997b1a8f2bf2b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46b2eaa4a0d58b784c5f39596bde1641", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5efa243e019297fcfd66302bfb1bf7d1", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac873ab341698f3d74b559f421a8e372", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "899752edfcf9a0bfd06575654a2029c4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a440d5e8ae234119ac3c3dc4672ef7a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7d2a9c28d8ac11b462f23963a5462bb", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3add55885255d7c52e5dc5d57309f2d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "331d339542ea5c0067c1cbf90758e182", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "285c5bcd4b705aa9cf293d03eb4781a2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5ecb94a8dd223c7634406ee6db78324", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "790b7ae11540a30b130a4571d301523b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d1bda11e31d4f63f3b107db786b72dc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "127e252034fc3eb9e80b0ea9a40d21d3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "428dc3b24e61bb651a1e915c223a94d6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fee19a178f0f320e74f1adf5fe05c71", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e5c9a62c4da17994d2005a562bfe57bd", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a066fad1d9315407fdc7666e468e0f6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2e9e8860819847fb60720e930e0f3a2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b614c318e380a9cfb1c73bd7bcbb7e59", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8f6294de32d8f5843f1cdafeef396d8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62546eb2c14e2b32a2f1bba503b08712", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03cdae68c1a284ab71dc30e5405b66fe", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bd2f983830fb6af4cbbb3df1546ad58", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2ade881a4713b4b604ac02e06608697", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3b0a625e3af9d0a565a14ac0c9d9e67", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c659d50960e853674950456e58a80d6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aa1fc38e2b1404bf75e66241611e6330", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e2aa3e65205d8477d53e38201158f72a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3ed8a8e516491eeed7bc540160a82fc", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80f98606ab9b2bff794e0db1aca69beb", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84d0d468f8b5ce3c2a352a256cbb4472", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e68a7abf7cea0e8abf6fac1d176a83b2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed235bb768e3dfbc49a039f224de2dd9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec89b829f7c5cf5930c23a5439b5642d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "726c00d6fcca01709d30e14e03dd2e65", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8413189d0cbd848e964f3dd32ea6491a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "66d2566424701651957542fd8b3068b8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d2da015c3e2ca2b12a4f38529631f6c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ecbf719b6ee183e08a12891d27b41ec", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85876811eeea4e8005682522b55fb2fa", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "178136437b871a24007afda48559fccb", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7321a9597ade64a15ca628c4463ce06d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "687f4df26e0aaaaf223ca8487fc28e0a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ea97928702ce77db7f32d7246762beb", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c7372b032c4ab24fff70ce74faac6478", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f54275b2b79ac614bc190ab0077d4ec4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49f8a8a8a23c1da504d550c25082a91b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bc26344bb951b0e6c985f19e9850664", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fae0974456d8bb33dccbfc3469bacfb", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17eb78b69aaa6588ad06363aacb97c09", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "389d2fc4249316838b55fadff1507877", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67b9008e345e412a7c59a99e5c163d85", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d32b17f65253d283de82acb5ecafd833", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d81ea3dca6671718cd915c2163810bf4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc6fca877f6ea60c575df41a050d7157", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41a7610aeae6d3a63f97b4a772bce6d2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6be7909bfe2dd1300f944b811a457d71", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e05daea07edf2ff3172e26aec063ab25", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1d2c5575e885431e6b0e0694ae9f5b02", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 38.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 38.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6c0001774038ecfe1646ed184b8e973", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3731c0ab78e22cb2c73ea6d856f97b3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5e0421c552e1580babb4dfe768ff4f5", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H3" + }, + "result": { + "position": { + "x": 360.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d3da506a6440440f13be204f5824a70", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "077d4dbc5ba04e536c598d82ac4b2fba", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6684660bb505fc197e4721ca402ace9e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d84c95929dc27941a050870e0a123370", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7b540c44c50be4e00e60390dfe9b933", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b65eced05224c7b72d24597f27d0dd5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "994eaa235d94974b9c4d5bdd76d73f3a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62949db84954dce47ec9e64cb253b7b4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "745c6cd8dfcee05bb7fbefadeff051e0", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5eb48c5c5252ec4253367a73e593c686", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a3c6f275fd2bba203cb05960efe1251", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0301be5847cee0c2d41912e3a72082e8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "095dc7dfcb63aa3fb3b7cb8e64d92d74", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95627e295f6c35d60d588b590d541f93", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ddb6bf67df34fba33e63260a8a804f4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "530c2a48a3ab2f9eda58a00be037a7e4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f9763a164fa4b0cb6514a54c35aa010", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f199c40ef5992a1c4ad8766c9fa14136", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69f37f4e1124fdd70682384615c371ea", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02210e3eff3827847c9d4c472adb111e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0f3d10ce7e5501ccd2e61290189d29a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "552183460dc5fcada14b008913ad9559", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00cedf1718efc340695d2b33de81ba8c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3b02f2610dcdf63ea11c9246afb87ac", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22243ff088eef598434ee8afbb9f001d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1d56b0b8536a1af0df6e4a5055f198d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8d8af6a74c7d58ae72987592cec21b4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "18c13f824000fedda75cdd5b426cd18c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b453176c58637d491d355eb43c1e1017", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "855bff5af09d9393ccaa82dff6b1253f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ea692cea4aa2ad2f4206232249bee16", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 720.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 720.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "716321391ba642abf3622cb4b7226721", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0d73bf1e1802ea42e94f8d518f8d732", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e42dbcaebb548b6b8baca8a20a194e28", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f7e945a7d127dfadbc1d4109e0eefba", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8e2b6f866ca152cd27785a5fa6d39d4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f5067358e6bd6910fe4d44b982eee6d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a3cc779410fc32c2a93768a7fa9714f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a6c57f7324016a89fd990c6d9264765", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e883a9541a282df7e370afa038786e54", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "147d71f946e50f5af2064d3bb696d800", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4079e63aaae953f116a6376f8e894173", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b89b28ef38cc2f417d8b60e53e035f63", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd0ed6b7fe4f9df0181486c06bf3cf93", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db8bc5c9d3afb55096886f85e0082d1b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9655030116f66367bbb317754c310be1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9298c611af701d2b995e6d8509f464a3", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ef7e5ce9eef2e2088e518554b7f54c5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "900911e5ca7f1fb718662d1ce6771ae3", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "912d480be9b9613bf36e45392b03fab7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77c88da2be22175ce38448ed12ee2d1d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72c48bfefa0139064392712655eb43b6", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03f61bec657e999cea7d68895b094e80", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "31586b12cd2466daa08733cf416617c1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47615fd962561d69a8c2c9c9e07e5347", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43352da267646af143faa43d7941b121", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4255655b872243813af9c440a2c1501f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "def4d6e4f0ea8460a6aedd55aae30eba", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "605609e024d2ca37876fe51fb5c71d22", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68771432d4beebacd973f61cb98f05bb", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a4059ccebb409a9812cbe2feb8e3e6f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eefa57c8b64bf21b7b848acad8a0f4ac", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 720.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 720.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "117ed5b476eb1ee536dbb58eead20dc1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b108e52501c752976f32685f5842481a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac3af61e4a529acea29afe7aa21c85f5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1792e70ad380a9608a841ae96990d280", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43f309bf02a1f48478e468e1cd7fd60d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63de77292cef697d0a9cb4238413cba8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "512a8751ae386640d2b2d865a78fcf3f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d95a50293c18a9a9e68b42b2e7792f1e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97334fb7f30bea520640a354b0e02474", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "166714ab01935ac37c90f036eb40ae5d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "426730ebfe6172c8e3d06f013644ed48", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "128fbeed6f304bcc4e3c70c674915baa", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91fc720329211f4d0311088ded6b7f74", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a296b0192ded15a7e89c1035274cca44", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77a2737835f20e2d8e4fd9ee540cc0cf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24fc01d72b0512c43715d6eaf9dced2b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5348368cc71d9265e80458c670d5cfde", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f6ef595bc34bb270f7cdcd53988bde4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dda17243ca2129c04e249e386ee92c69", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "777df826092f634303c6ba964133e509", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3fa4085de5adc13d6757240b48d1621", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab510a2fbd5a28c6ebbf55af083d17e4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9060b24ed36041f0437c2a013fb871ac", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a31d1d53ab03362c3087a29fa377d9c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0dd05778ff2939ff5faf26a4b98c698", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e37a41c95fe5ff1da8bb4967d779826d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fbf2337351aa1b7425ae4d0abf76342", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4275280d1ded7095f3cd17be53fef332", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9173762cd237ebf2ce6f287780b156e4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a6bded907c1d8b976fcb477fab91a59", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "455a0d0d4def34ea50b2804b194ddf88", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 720.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 720.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e349f930b65313bf305ce90600022e04", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d669c62efa142d6a471184522cd337b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22463a86f3fa8d44bd394f1a6384de78", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76d27b0c95fc760385549085b536f480", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8a83430441f60417c6b498083e4227e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61a765ff366e682ef2c1a12db0cca8c2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a70605a1e9de4e0fa7dcbe2b38e19d70", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97489f0e19cee81dc9ec53586a1c8c09", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30b92a095c60064422874500fa861d10", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee368985cace1983cde0b2c0c1fc3221", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c080d936bc7d890da289aa09b522f80", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ac371f382849552222a0fa0a98c8858", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7811927300f7fa05ebf1ed31db7c4f0", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ed4b902c6d5514303acf9dd31c6bcaf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4ad29243b91aa5b6156f484c2ec40a7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "604ac149cee44a7e64084a6ffd1fa638", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88568bf05fcd87c36df2669883726ef3", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8611aa138e977e5eca86ff56c92fd5c4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e4e68a2df7b4cebd7dc2e23de6930a3", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "557f42ac547047b3a99f366c211b66da", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "502b00d650c736c6df21c8f21d293cb9", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e70226d00baa50190b7e38bf9cbeaee", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70743f4e1c7aef8bfcd47b1f6c0bfe98", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bb88f540f1b4573b769e3b00519bcaf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64a0fdee84f1946f2b2f98ba1facd94d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3eff477d55a88d10bfcfcc1708fd08e2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7ee02eb27edb6f462186991e342871c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "046ddd18d4019d5415b43e79732f22e7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2e9e00110bffd0f6096de5044e8dd71", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c14173c5176c459f52e1ad154432a168", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63baeae53bdab8b46159c08b02bb8175", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 720.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 720.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "557237134a4a67e5e991b9f82beb15c2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "965ab8b8e1e70027332e2a80f03dcd6c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06fc9e263e60a496fd757bb316e4af85", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19b5993121916f1879b984c3360f291d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cedef452836b351d7d09dcc9a0702ec", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1add38327da2db5ef513170c853340cb", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dba058a0a59028f73b5f34cb71d4ba88", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "211667770322f7d87bcf614f1a6e1b1b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "def10b99c440f6650d8cdd5964ab331b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0635ef66aeefe680e93b9f66445a8435", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fa62ca96f5085ad8b016dcd323d28fc", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b59d6c3727e5806fe5254d3ee38dac1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f88fa682e37eccc874ad4f2276c2ebf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "47a6344e857067188d68f484e884bfaf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80573425fe99c69c1a445f85d60719d2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8fe0460f9e86fb6f4e448bb69b55b5f4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc480807274696971d3ee2192ded0ae6", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23644953d3c445afd5bddb16bdccf0cf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bee68fa8806712ca5e26f2e23adcfa55", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b53f739cf7e5394b3fd786945fbdc10", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "903cd683a80ce3fb73fb1e4a690b8076", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "452a049c29306dce0d9e42df11dcf619", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f487349260bc1f86ff973773b054123d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f98307695b3d83acdb9015e4c612f79", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86987cd509e5e883ba4cc18b5f7ab311", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12c454c07513d32d4eef76762f766b08", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3921016f09a665852e43596468f7c70", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bae2ea8530d849ff302ee20ef32be92", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "305e3cd94815ba93d1c24cb0d86dd434", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5129ae0bb6d469fa5ac0cfe878ec595e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "688d42bc7e5b36019d0bae6a597f0dd9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 720.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 720.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c6ab2ef208599a5c8fe1e96bf16cb95", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb8b7ea0e9d5af52852229261cca4b61", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e0c3b938f8de7c1dd7020c4a1283731", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac67e4f98ce995f50d8d0f3d5d1e1bf8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efb814d7d87f6367a052d8edea5c0485", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b414d3e5b7b16e02d9c89c516830617e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5872e0ce6c6799660a789a67b9555ab", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53b1ff3d674e06e5a133177bb7d9a750", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e56f13860b433a2c5ff1eb54f40b642", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c90bde62e0594cd7530920e5474ef95e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0305d04a9c8b5d6a4bb6a8b369b0d158", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ead9b1bfab35a7b6294cba7bb94e577", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "892f550b2cbb4198bb5fba051b2c8aea", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d90d5c2bfedb4a378ad4e1ca558dab44", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6d64f10fa9248d8dc7c4d63df87e907", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afc3928a7c92799cd37b5b9f875f211b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8783012bca01b917beb9532291695535", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1147ab20eda9928cf3413c894dff1284", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60c4c318be20cb5f0b588094ea82b0b8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5d2669942c68ef485e02c8ee0bc5cd6", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7429d7c652da2ac8db6da7b6ef987ebc", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b87ab66332600998be3239d557bb9d20", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "494df08dd6ab346709380bd77ba220af", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b90f3f66f67ba689a1ba0f72ce58669", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "301b637d0e255a6cd057018a5836063d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b649d522f4b75d193b7174038d203e4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c69a77ca185ff6ccccf6f61311125462", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac3ac928743f19a3ca89332a02f44237", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5efcaeca3d953e22433c006dfd42f01c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "21f0ac0455f7c58d68218e7bf6ea4dbb", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "33c9d10b29a1193988f410b993fa9322", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 720.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 720.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6113758ab97539477d1f738e8cbf19ca", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "504fcebf7dd8c00f0e19527f352b2dcc", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4a4ffa1fe00db345e01616d98596e129", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "671514a567dbc809461928883b65257c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81dcfe1f3e8fa333eb6c210e69b796cd", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf3451fcfe064965ecc2bb896abe4c72", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5fdbeed9efe6d0b5fa889bf29740ad9a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d721a71b6584f9a19ddcc842eeef275", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "787619990a29ae278c087d0ce5fc4390", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b60524a1f6bc1502da9967539b891f1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ec4ac3545768efcccc80ce31f5567df", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c34d9ce1ea8c1cb7571d8403df20add1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b281d4c4da9efa33798e6a8ec2eecc44", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "523695b828a6acea8717fd96d383ae45", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84d1a97344baeab356092de8554341c7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd71b9edb31bee9e10f3ee74db746886", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbfb32da4947d9633c0bd974bfd4b680", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "203635f22f2f56c6b937e666707f4ad2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c9942c903325a269e9b6f93a43b1182", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c88b512f63855256e1814cdbaa8495be", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fe3353f80129d24b3246c0a01e696536", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c840169cc35894dfe478f0fac7aa01a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "095a27e9826f1a3fc0b86a1c3e261e5c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc7b5bdbfd7bc32c7afd2bd576c5b0d3", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb84689b367fb9dba0b802063702a3e8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7025e64b084b5806cd3b7c7e32a54c4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f2eb0f6b7e718f03a46c97f3a4cf2be", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4a727a8ee0d089715dd3ce946ae96aa", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2c5b97181c26588ff703c2b2b87db3d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "004ea8b7ce2e1334e05d33c7418f030a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b49d5054bab327aad8e8e4565bdf4734", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 720.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 720.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f51c0492e2f6d2e338cc47b76ea0611a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed5f664d77ff7190054f3805f95720e8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbdf4e70ee5700f3518a77d7bab23c81", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "218badc662f7b9bc2f3e2e3620d92c14", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8157efc0361eb98124797770b15d7de", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0b629d97ac4fe356a0c24cd86f7b0ac", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d587d5cc59bb24e7a4dddfb5bd4c0062", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93764214d689260f8adc83fbfa585315", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be5c995a4e82b2381e37bf8fe66e7641", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3494a6e0ca9f4daa640ab2773036075", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7159859053c752bfd9a25bfee6003736", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc5cd40d0089e2be382b80318c740e75", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a863c55e17f5d16ee2ea87f0692e80f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "796edbcffa4d1bd66df8b5165a090861", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04a1c37929c36196e36082ef63bf9e6c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e07af14d71cb225d8980da8348b51aa4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e92ea8466c30520585796084a500f8a1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c40a498f951505e58a48a3bb9fed5fd", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6f7141aa4750c2c8e5ce6fae9ea1d3a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f813275c72735ada8a9142b2d14e34a5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "859034cab143bba2970f55e45a735943", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "056a087ec5f79ff83c70ce7615815f50", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3b9760b3284941da3457ad758da98f7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf31dd5867c7503b5a3754f72352c9fc", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "817554243141d86b6b9332ac22972943", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54a85e0da95655a00dc13b7e94d011db", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f18ddebe4ce780eb305c0499dc73c043", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a32f035062d8d1a5aced82a1b713fd2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2073ad9e0e7823a6fb83b7014eb8bb86", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "639fb83f1360526eb56f825eacacce87", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 120.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -7.04 + }, + "volume": 120.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac402dbc2715ab78e4769daed65acd0f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 720.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 720.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "25d874721ba5eef950581898f28ba60c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92845182a87c5b7dbe27c6c0bc3e2f20", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9ae8c1e3c085fd2434cbce8fbac140c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 342.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e36fcb447300c6959f29c0b9e163d1bc", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d09db8f43c8d39fedeb49ddad1f11fbc", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43d161d20e80e8c8952e95b80a315265", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d897c75e3be5e2c0cf1e70f7750fe0e8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "057307da5a473965a00ae756ae591441", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dafda69cae103e4606c6e4573b3448f3", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17e64f7919d94635ec0f91c1b0e0bba4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6963437ed32d4c8a7b1fefbf39def014", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "595d92673c5b23ce6f1aa8c5350744f4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "71e644a8079a45edbe4add178555e46b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fadfa86b22b4cc79f3974c1e62bae66e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3d4dba9186455057182d5f74cc0d400", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "790e8cc245f859cf799bfd143f1c237b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc6f8afe4aa6ef0e9aa2f2c7c8fd5d07", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "554b52b6d896b81e78c80090b94c0fec", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c573faef8a9a0685f2bf07042f14ef64", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08e7af0cfc76fd7c5d7a8f26f66de38c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f45ac59425aaaf2ed34727c8d54a36c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d32fc0b38ba46efeee8d1c4d4d3eb74", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "653466f7c3be505179cdafef6bf718f6", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39a20fb7ec1893be76796207dd0a4494", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc75777f5f8f312f5ae0fd24efd106d5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ed043bc5a8f74b6a02bd0e3a37b7daf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b57cc55e8b611c33c89b721ddcf9567", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b86dbf26863742d8b2f7591fc63bd21", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf5492289254b9d0e72de6621127e8a4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da4786a32b7e706d5e72a222af8de220", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2beb37ab796862ab14fba46deb6ecdc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be47c27b82dc2298576e7a244184a640", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2693a632406177a9126472d8897970a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b78c430996c47afc88efdb78308b0c5f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eaeb4e047f3a5fa0f1b49135fb335b01", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e9940dc8acea406d7772eace3aba79b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a3c3984f31e801ff4b68d150f8ec136", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0bf3497c80c10cae6da03cee6cb93d4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e33e7b6ffdba15b8e9ac35db765513a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d928d87683ca82a6a4af930bdf42e092", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae520ea22e95d954453886e84c3a9edb", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b7d63ebb29fcfc326681141faedc20b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d4ebd64c86cb4ce7768a7676759b294", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "02957e3196c6b1ce7e7826c644bc44f2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1525ce412d6e75ab325366d75b9ad52", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3277c47883ce6e67a96c86898628a96f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9bd31d2c0b1aa22b6bf7ef13ac6f9c1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a5490508e3239eb9dc1429193b8fff88", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bb7e875fea4f48897c62bfc4f3c9f72", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e89055638fe349316883fb5a6ba5a2e8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c39623955a7677ba00c24045698c0739", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dfea64ea94c5f85e8e537fc1ef6aa787", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e773a4520a09615edc57825d27bcffba", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "081554b9141d49c69045b1769b29f333", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eafe98cdccf2f4bd23c024dadb3fe6c0", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b8022cb7ea048cb8a87bdd8ea0532e0", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32737651a54fa641fd605a71bb128cc0", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f4c199518d2610bf9d311f15532149a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -6.54 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e20ba5875870fd0bb765e4fcf7acda9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cdf083c70bf22a8a31a1a6fb78a55d4", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a334ea47a397d5f96acc892569929646", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bc6368ead684490de4bcab48732ca22", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 369.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a1ab47680071911736fca09e94bbefa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84cfac4d2beec90535675d6d331d179c", + "notes": [], + "params": { + "flowRate": 349.408, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7611d38adac129477a1b94e9ea64bc4d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb6c2b2bf5471d0bcdedde2b04e369a6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "768a71242ec85019001ad018923c02ab", + "notes": [], + "params": { + "flowRate": 349.408, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e01bb2410518dbc6ebe836f6b9340f76", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1de0eecc358013d3a5a62145b597064f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8a276e3e8baf5bc34d171c9a2d6b08a", + "notes": [], + "params": { + "flowRate": 349.408, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c53309fb595227ed83610d5519541d98", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76b155ff7e08474a1aaeb581afe7e7c1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c411dcc1c912dbdfdfa7a76859f36aae", + "notes": [], + "params": { + "flowRate": 349.408, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "17b3e2c8f05153d9d14e5ee2c68feaa9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4dcaa5cb9d2a75e51d64ed28720de18f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01f0439273dd93cc343c493d20a8ae29", + "notes": [], + "params": { + "flowRate": 349.408, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "482f54109e093fee7e733058560d0291", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5426d62bf8424a4f99e6e7906e604880", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -117.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 202.88, + "y": 67.74, + "z": 7.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "08d309190c4098666f36e58318f4582d", + "notes": [], + "params": { + "flowRate": 349.408, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7de2d29b8b6a11f050a0176e42864839", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 114.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "907bc524c9b19770393698d0d15b6be8", + "notes": [], + "params": { + "seconds": 0.3 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b28e29bb0d90b536f95928b0c5c8fde", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "950ebeb21e152faa2c0a3fa3fa1af242", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2583ee2ff0b87288c5ee2d877786eca7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 369.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "72289eea539f44b73d2904355719a437", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 55.25, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9141636f4b8bedd7316c386f5f1db7ba", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04da5a5ac9b75eaf9909ae18a897e39d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59385de949c50cb851ca78996c7f7516", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eacc37bb1fc2b4c9e546d5986e2a61b3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adef685c0e4452657d88ea6846fab66c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 369.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6efa92f834e40ea5c72d5c3a43e913bc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a20dde57090f11ba73cde8eb4d0acd74", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88b9a061f8198ea6e851655a1b524239", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8ee2e7431227aca892a8da15056f877c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cf5916c4499733181a4ddefdc898285a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b80c9f8087f8ca0d1ba300c55769018", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce3e72b45c07c538cca811244e85884c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e406cce01330c47bb6b0efc8a85ea9c9", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed68ca648c43e7b0c34b3c3625275343", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03f205277ec82a0672ff02e0e21963f1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b4973742b9785bb8e0763c3977c0031", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb0b9101f8eda6c59e13c1fdf5070712", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "051bc0c1ee0993bca0084f1d6968880c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4322f4aad92810c204e52ca6682c837a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1db67d7c5c5b9191f0544f9970bd952e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c75852732000887a566b47a55016386", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03d4fc395d56ce41c08a38954044b9e0", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f62be8b47a2a89ddfc69b4ebac652ae3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27d4696fa812795f3ec6739e44449fed", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b2271d10ed8d77e71f4fe35199e2ee4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -82.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 41.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0533a2e79b43ec88ca38d137cf66ad61", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9ecb73363ba32224ffd4f014d5f3283", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e315fb6f1486e2579a3e65df6a72801f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d97f21710cf9f5da953dfd7df0435cc6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "79626aa7f8b2f12aeeb8b8976f106d04", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b18ee0a52362e9bc1e1e0700d9d67a22", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d75ee647128ab0bb929d0b86cf8dc1d4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04c0dee135c798f55a7daf4d2a85df35", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2724e608c470b6f675e0aaca9ba1620", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1aac89cbbca1a674d00fe116804b573", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d697d64ad9fb231eb0b6513553f3ecb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e4d6f9f71dbd09936fdbb070dcf2103", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bd3a4d6f1f5c05389a475f1b78a8d693", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4708f65e97d991554d0f192654e69bb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42e9b90243a51f5d2db5595e32f58d30", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3285a87a89b0462fc70370b144585e2b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4317b16049851ca45f353cd6e7776332", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "aeabe3e27e6d66b4bb407d70d70786e4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "667d7bd42424ce5139907a2c4f1b0cfd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca6749afd124a9d0c741436293fff0cc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 26.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "313a4400dd245b2069fcf4e2cf9dac5f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d43c4420c3334d69421047158273daf1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e2b42e7e33061c25884a247ab6833be", + "notes": [], + "params": { + "message": "Move_tiprack_50_4 to chute" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d1084ead02b2b99d64f64606072b3f7", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover", + "stagingAreaSlotWithWasteChuteRightAdapterNoCover", + "wasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c43f6892904c3bed35068ddac3fb738d", + "notes": [], + "params": { + "message": "Move tiprack_50_5 to deck B2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "937e491ecc39e5d51d965432c532be56", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "B2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "B2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "B4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutB3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80f064d9edad8dc1f26ee7de45a1d5e0", + "notes": [], + "params": { + "message": "Move_tiprack_50_3 to chute" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd53bc5f5b14bb33386a7b3e25464013", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "flexStackerModuleV1WithWasteChuteRightAdapterNoCover", + "stagingAreaSlotWithWasteChuteRightAdapterNoCover", + "wasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fc2035cd2607f95b0f11a6e19923ae4", + "notes": [], + "params": { + "message": "Move tiprack_50_6 to deck A2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1f3b43bd2e7756800b4cc994d9b472b", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "A2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "A2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutA2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaRightSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3519d84023123d970a3fa8c2059077b7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 369.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "508c653344afac57ea593c95b6040e4f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54d54ea6599cab461b420afd79b70a5f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98514bfbf38d3626aade5dc917402517", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "69096ceba8dbe85aef9a866148431636", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "43f349660ba03c569ef6276ca32f9686", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bf8bdb501ddba6645b863961d1bf4e3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a907216902bf5b0349bf07e18e1de78d", + "notes": [], + "params": { + "message": "Move reservoir to Temperature Module" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04d3131381da6e435935636b9f3d5e53", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "labwareId": "UUID" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "temperatureModuleV2D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "kind": "onLabware", + "labwareId": "UUID" + }, + { + "addressableAreaName": "temperatureModuleV2D1", + "kind": "onAddressableArea" + }, + { + "kind": "onModule", + "moduleId": "UUID" + }, + { + "cutoutId": "cutoutD1", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "temperatureModuleV2" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c957c8a7b9ecf6a6b986d86b11cf683", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 369.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91f7f38984b58e3afb03549d42040b86", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f76a05a988cf25d391b5752c7a69223", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e2b6f51028e8f54fcbd29c6183c41eb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b47e75afac6c34c3cef620ec4918b4b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 57.4, + "y": 63.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "edd158051e1219f1e4447123f0fc1544", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "60328af1530bf754cfaf4350140b097d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 57.4, + "y": 54.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48f3ced2399f0d5395e3c67860149d68", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e89cc73a1eda18641f30b69ece9023ca", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 57.4, + "y": 45.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cea255e7fb6ffa158f53f4667717b48", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99119b94980e34a27d1b850b1a04cc84", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 57.4, + "y": 36.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "837285adf62a81f23a20f2d7eef735be", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51f4147ca290828276e605146998698f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 57.4, + "y": 27.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f1a40b17c4d7f11773fed68176c1555", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0dda8f2b61f523be69a016db8a7e2db7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 57.4, + "y": 18.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "542386b5532880f2bd90658dce5dbb19", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b245179047e0af9c58a327158b07482", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 57.4, + "y": 9.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "386ad0916caee96bda5a01811d3e17db", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3526af35d404993ee8a3fb7be6f2a0df", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b49282a5920fafd876ba3fff352a3db", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 369.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "347d3cdc637017e901e7ff5d1188ef87", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c58ccd016e1f6ddeca5fb0a22e99b58f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a8f7d1664c71f6430480f2135e68d00", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "441b1aed97bfa2f693e26acea32c5770", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B7" + }, + "result": { + "position": { + "x": 66.4, + "y": 63.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c4d9564976eccd63f7edc514078eb2b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b2cf6661be126407e5170a38895a64c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C7" + }, + "result": { + "position": { + "x": 66.4, + "y": 54.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b1eda2199b39bb3d5405661d571c09fc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ead2a61e0278325f90915d706e1378b2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D7" + }, + "result": { + "position": { + "x": 66.4, + "y": 45.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00c8c2e118c613e3aab74db8367d4910", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88b8a22bf4c46fa93770bbd4215ee1b1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E7" + }, + "result": { + "position": { + "x": 66.4, + "y": 36.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c89e8b4fa79466eab6c05326f5fb9ebc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9ad3af21000a0d081ed489b091a82e1", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F7" + }, + "result": { + "position": { + "x": 66.4, + "y": 27.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec95a3bf59b395b558890b8c2d690005", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a0453c62a482892bed2c8997af6e6f3", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G7" + }, + "result": { + "position": { + "x": 66.4, + "y": 18.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f5c5a61917c673ab049e05834c97b1d7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adc41f0e4df9ddb5fdcd7d4056decd96", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H7" + }, + "result": { + "position": { + "x": 66.4, + "y": 9.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3dc866a08ad86ea185c88bca67bca73", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2236be6492f5c11e02cf58ce34bb1e3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d1ebea5fb3b5575784bbee4cc36b4a1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 369.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a2246e04d2b5924439354090153b900", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea5b09d7217d63e21af66acefe027db6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f39b6039dec7c882513f01de23b1de1e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a195cdc3e2eb39bc0df51fc43bb201e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 75.4, + "y": 63.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "debc2408c48c898635eb82269819bc7a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa6ed62eb7f354c4e872737c3128b652", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 75.4, + "y": 54.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74fcc7b9985056e0a8d47fba048dee86", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c1ab9f48a3b32286936f642c90539d21", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 75.4, + "y": 45.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6da8d7b6bd140829ecae0de238e39ac2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d94312d928637a056107cc5ef42cc2e8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 75.4, + "y": 36.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f953807f51a0f958545543f754aded4a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65c3025cf621044f822f4a82999f7d79", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 75.4, + "y": 27.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8167b79f0f586cf0f9a65dbeeaed5f8d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccc19e7aba6affd81e37d094384581f8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 75.4, + "y": 18.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "42ce925d8809db5be5ec6307b613db0a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3eaf0cb4264254429f3cc149c759962", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 210.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -4.9999999999999964 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 75.4, + "y": 9.6, + "z": 29.900000000000002 + }, + "volume": 210.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11a251ee0755c8cbadfd907d98747035", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "395c0c51b45e55ed9afff5deee15ff80", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3aa81fe2681f793dd18f0c900eb5c8e2", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "880949002f7b67fcf209662b7eeaeea9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "237848e381e298d3030828b0a873c34d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19fcda915f7a71dab1771bd2b2f37c4e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6c47ee6a39bab46f33c9f78070df23b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4367cb1dbe00d3da62b88d4abf508e13", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3bc741285e270f095b2028497e22a037", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d23fbbaa01e90ffd33c9e960dd5002ca", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b46d963bd943ebfbd3e72e2f25ddfc3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9429f728834dc2934700fe67ea287c65", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d90b4819b190ec4ed94577d963338813", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "241f1de2c60d19491f3c52382ada5dd1", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb0cb4ce6e78623c133b55de33f812ab", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2659a4f4312bcfb8e86b851c7e5821c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "290614d4ce9a848af657195f26b8e46f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c76cd24d8ce5683cdfbdd7513865faf9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1df60ccf5e820dca575ca846f3d337c9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b40bfb1465864baabaa661ff064f91e9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91ca7fb407261db220535bb768065627", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e658445a238f7827d77d1fda74217095", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a6588d06826e7b96bf70e6a093db624", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9a100532592fb1a334f067ab9ce3a02", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bfa3b1beb85e54db19d1d576fb4bec2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96310b6e02ac6817bb3c1807ced1a614", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03d90eb0c2483bd79e35f7c5049255f8", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d967dd63175730ed6d3b7edf7f76da2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8ea109bed7ed8094d1bcf442be915c8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86e3a9d0342273d4be6f702e7826fe19", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e69527898533e93e9fd0eb20677cbcf1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "382ce30cd085284a51cac063c91f5e16", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "975f3c78dd4b9dce57a6f5fb41e7609d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d052a626e78de5001f06cb222a842d67", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27f86153ac58b0aaf0b847bda714bae5", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "40d427e7d87d541a5ad5ca04cd49b9fd", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "828e595abb3ec8830e9250607aeb7fa6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f38e688aa68b7891555bd13c3d300b6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6eefe0196b674252e2a900122cca6a3e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1498d634a464d3f675cea9a4468c7540", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ff8486ffa61107a8b4fca21104878b0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af1e1b6eceb94b9afaf3424d113c187f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d9dda5c0aee868f6530b613f8e3c9781", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a4ad3f19da479b917f50a585579f3778", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4cda10ab2dc18f190858deaa9630f6af", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52a34557a813e9847ab8492733348932", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7df2fc2bd930dfe6ae9ae465aaebecaa", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 57.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51075efdc096a0165adfa28abb471f30", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34bf3df2bd6a49e4f1e15add5aec53c0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c14ef55ddbb294e7d85ac4bbb6f1bfc", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36aa09a7f178299986b316bf8a711f6d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77f18a24d0c6b8cd3496453d4a335c32", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87d1a5966476fb4582a5a57c425a8453", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f379647b1232712976dd4455e711536", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ed258a6720e60658d30b11ff75f7128", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70e98254ce38c4fff2d47c21560948fc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de45edc4b9424b176c202a80ceb0547c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "77efc76aa6da7e6afefe677f5c6120e9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4f2b2ce550dc1b5c222920951ea94c9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fdca40f9389d7afb7b8c902b565ea3b0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c953bec735c2e0f7085663a7fbeaba31", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e73c20bdb014aeecb887f2af3571bcb", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96ad3adfc21574d1f0893f8c27f4b8a2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e3146829e3a329f7ea570f5cc3a5e27", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b222e642195a210ff6c4c3ec9e75172", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eed51bab78f1f246c93930bc7d6a5e0c", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d73f54d74b11b665a765c3532ac0dda", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3b670ef0ecfa9c18aa4469c0cded6a9", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "705461b534c01e78ccda4fc48f67dac2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b37bce828ed5663d9003e6ab1405ecab", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "20e6692078b718e82704879d5eb96ed1", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51820ac0083ccfa336cfd2309d798cbe", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0b288b0ad82b1874c43b8ba9558c428", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51ab5ba6fbaf4e6f9864efb8e9d4e068", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c9c1fba32d034cc1b27f0fe42b850c2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f84f463f3cc93a850c266dac53a1cb1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14872e8de13c31d599ee6ced43b962fb", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62d11ff8f4fa98369631649383e43b83", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c41eecd42a49d8a7328f7012eb1c146", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f43021488f52e3e641023c856eee00a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f143a48662f16f2c1abcaa328b2c742c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce1e52a1646f113e38c28ee3abd8988b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0e9dafb233686d51e5ea123c98bd843", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8798980d110268b20455440f74b02dee", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "635c0d4637f9552a6a7c042f2ce17229", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c1ea16e296df27d505aabb2cb080469", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b8d4e522c224c801cb7bb48f407d290", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3630edcf57953038712fcc1f97f2fc2f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "889d16aa1806ee32d475db04ce5ab682", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f045815b9d65f14c12b771ad97e6ef30", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5709267f6ff3777ad2504c67d5eca856", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6b7e2ac6ebd1907124f25191bc87e41", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bf18c31ad9aa08d892083169485cf6a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "768d9c590b41b540dc486841c866ea28", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6b52e41e2c19ae300868a87ff10a339", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9cecb6b93e8a168a2771f469f84b756a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0c0ac27972436aff9b4b12c9dd7d6af", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e8643a3c6bed777e19e0b52fbcd4a02", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7bd01553b33876ef22f32e9d1a41a24b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 66.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef4a369a17f649c62bc54af87c5b43c4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca963b0ab04be397ae89b3496a300480", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23a54ce81f31b24729a0e2c3c0948ec7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f196e6229d7e614460380f6be62dfcb8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f40d7d556e6cdc4df81fae113f9698da", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "323a223675a3ff4cd2c43e63fee8bcab", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6fb04238d6679e4560dc1b4572e218b8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e148913b150e5b34e8d433812ea5888", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7758dba99bbd8888ae4d8e1f298ecb1c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "245edd666fd239ef03b2059d77b02567", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c68dc460bc039420256634cf8bd74ca4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22f76bdd3ed357f7880630371b3c497d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "917e3cd12fafd55a0e8323d30e4a0365", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32ae4196106c7a1da1620226c17b58d4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "62f7f98fd64938a6b08c617293082b7b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f7a4c57fc2631a5de8895465241be91", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d2e9417f0eab4fcfe4e4b0fd342468e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "64046d5b7262ded8379e2413caa08755", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a37b4f49da61a2c3483b785de8e16e55", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd83f8cba0ed1686cb63a06f9e13606e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9a4665db2c0e41e3ad05d0aec120254", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09a3281b7be3b936d6f2ca1531a5e0fe", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28be02525d8f89400a2f3518cff88c4d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e69a09505b03e10ab8f59635761e7a7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c42dd921ac6fc47d12586c56b580338", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d8364e07131838daec03c4802eff2a97", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "549e4e36684c3e2824d5eabb02f9df04", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "753c1ee6c33f4a031d3c2d0b85945a84", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e304b87714997d7b807793defd0e20c9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "602edfc3c164babd31cad019d3ca28c0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4d88fe9ac7eb97a7df5e0b3eb153c04", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e80fd07dd13c0e8d9ffdce2e134106fd", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f652dc59e613d7de0720503e26dae75", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "507a3f089a28c525704620112387bb1f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f1219d03d27e1a653bb5d8a303c2c5a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b89e19f635f72f66a83200f3db48e295", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "535cd40738b0623370e01f1ca43d4c6e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8903c08e2f87cc0971c2b84970711802", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6ad65e2753a58d1a4b88ff47889d1a0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea2a5b652deeb2fe3fb782c84f3c7f99", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d9b9a1ca5b3358c73e2cd51d322e5e2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55c3b9d8131d7a5ee5308fc8840ecd98", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e25409faf79df840c265ec9398c4dbe9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bc26cfdd794a644ebcdec9bcd1e5b22", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fedfa7b564b47f967afe1fffcb46a3e", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "075461cebb19d15dde15840db6695cbe", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "431ed405b259ebfb5441234001ea211e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d43762b2fa792881f2edb21b495aef6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b5261baa68ebf0bb31e4b5dd3a48e90", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85c6764dd41ea445b6b34682b53c104a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7baee366eccb235576ab729c86bbd28b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f86d51286be3a4dc1260ee365bda279c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 75.4, + "y": 72.6, + "z": 16.4 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a2f7a62e5f715dcd363ad2f0369bd51", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 50.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "328ce84af8e23698fc978ce7488f599e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e4f29e3300fb3f848733a5c0863a27c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06f728489378db30651bdaaf53afe029", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5d3c9b8bb3f8b675f23964aa9c679222", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "104a3228a2a78479e9ca8dba273bf43b", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "989ae720da6d45b44c77302aebd85ba8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85ecc1ae4358cfb6c3308924bf1262d1", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea79ba08298a175715e7ee4cbd996524", + "notes": [], + "params": { + "message": "Barcoding round 3" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "34f9c0276b8ff48af300f7fe89978bb7", + "notes": [], + "params": { + "blockMaxVolumeUl": 60.0, + "celsius": 16.0, + "holdTimeSeconds": 900.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 16.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06511750e1aa69ff1a822244c9ade519", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53bf9f8e2b216f1b4c6173f611bdb091", + "notes": [], + "params": { + "celsius": 4.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39fdac8c1de2bcd2d7921b2609b4a8ee", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "838974afabad36c18e843e43273be785", + "notes": [], + "params": { + "celsius": 4.0, + "moduleId": "UUID" + }, + "result": { + "targetTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "temperatureModule/waitForTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4e9271eb6c66e8683986b3277eb37807", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1cbbcfbd4586ec3e9bbb54db93cfe76f", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d24e8ef5c615d462e8d1c8531645289a", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52d0238ecb5e6df0ef726bbddb14d96d", + "notes": [], + "params": { + "displayName": "Reservoir_SB", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "addressableAreaName": "D4" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89325cc23fa6f3fbb730bd55a5c93c79", + "notes": [], + "params": { + "message": "Move reservoir_SB from D4 to deck C2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7a3a76f28238769be1b5e815c2e72c9", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c30d9fa9bd1a1a3752d2b953b70073e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eccdce0f4ca2d1db683442b41457eb5b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b23ee2645653ac49eda78b2da6e85bc", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdb9a8ad1b276be2caba84cc64961747", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "57b541fd88125e668846c347a310b347", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c93c22b66670362ac5816e231f323dd1", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a702aeb84caf9d1c6f16ce35a48b6373", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d309301f3a7315489e853b8f985027fc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a8b067e5132fd85360148929ff4b445f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5300e124a2f3cbdc06948315c2e1e4d7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d11bfa5a0fe61a6561559097dc4ab8d4", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9eb29830dafd2ec95f8f45d48d526a38", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f90932dfad3ec21ecc3cb3f5253b229e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b13521c81d8b102bca0bcd2390f9b789", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f30db75bb92f4164689d8bb5797dd82a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30582088e8ff92af63bec8815a4d032f", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39f6700b470897bfaa220d32bb57d562", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7596d6a7c1260e16d0baf4b773348aa0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af2c8c6562fe4fabdfc5c3581555461d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "251434ced96c21588b64e2a6f2d31282", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fee48f734126ab2d641cdf45033477b0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "adecba60f1d58ce7a0dcda90535e67ec", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4fe663b325b4d8fbf0cf3a250185522", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "99d92efa0732b1717271ac5ba8dbaadb", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "237b5e44bca9f47a85afb137bd12296b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 187.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d08e1205a58a4b51c403c5da802c359", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c482958c8c5d3d428c8cc9b1693f6db", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "16ddfccc8094bd425b583bd66c499a7a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29dc6cf771a8743b0b8a714560cdf863", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b5b36088c105d1901e26c3ecb30efa43", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3708610ae824c282b3d62746b5b8b0a6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94b4426b0cc4ec4122822c1abc04404d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c91645a9e45b2dff4b7e66927cff404d", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e090906b78c3fbdd3648cdce62d2712", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "763ee35a657b5a7bc1202ec397dc821e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c950b39dc233128b890a54952a88f38e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a6ef279cd5754413b26641676758b9c1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a31f183cd4254017f819431df16c2e78", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82cc852b9c309fb8a4d7cb1bc18cb5d9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de6a7d559cdc9e81414c985eff988951", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3390918ed443aa8bb8b74f66066956ea", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afdc203e4d5b1ded5969235b110d26c8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 196.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "646629f51c51d661e9bec6f5fcf6b15d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "153f082b389226de762dc7a8bf16e2ee", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "049842c10e2648f71a87e47665908062", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c09ca4c754ca307a3afed0830dfe76fc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "326866ea243ce2bbf391643b1b6fed90", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06b66c9f36f8a5dbf59eda39fa7b8b20", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ea8d92dce27183904cf935c59acef94", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdbda53cc252f22d69b882e668c56be6", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7000995b3190725d81f0fbeb5293dfd3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdf7b20607a5f0c7f2a21f3be0741be8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b43245bec53e4dfd11417cfcf9a80bf", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "299d99c633fbd65bc3b19958a2f45d7b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f54e7f2ee676b5f9c0d5face13750a9b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c74790271d83793acee53656a78bd2d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cffb27b66d2074ef35735812c60762db", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "813db1e08b2b4c24640e5f1ed6729e30", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a124cd3b132ab02b33060b3a30c91120", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 205.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b65bd1db54e8c68e9dc961152bf344e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e1d17286b437e4a2291253976993ebe", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63175862011037f6fc9b54eae8ec3852", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f4059601312b00d5485454e903f9470", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f002dc8ecf7f442b20d44973cbdcbd57", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "738fdf1ca4f7f81ad0dbbf2dae85dfa0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e8e3e33ab277ed29316f0d54fa52de5", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8c2340cc08b3d642518cec9ca36fe04", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28c3d8a7536682147fc358a8c853c6c8", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6851e0f91b6d3c4292ed6474114a3035", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f3b4fce3f700db8610941b7248820f3", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b26139633f066c37e6a638e6bd743dc3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da44249213b6489aaa1832d5eddd72e5", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6084aac9c34f95fbf7c448c552cf18f6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1322d736d3ce8bfaee9a060d41c1e39d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f128bd1ac43e567dc0cb5c103b0407f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f62e38eae4aa9230759dd99355d27868", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 214.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a9c505fc298c791b565beaccea04dd3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c7adb127d5ff8f27ddb2dbfe721b25a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0951b4d3e26e300fbb7c2580803e0489", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76c81d1593cf9afc7fa11e2d320c68f9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a299e0fc3c9df84b619f2e03f304a979", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f566e8ed85ffc010efda8a134ad4b8c4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1be7bfe4a2e0292220f126da52cea9f7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27da96a65302312c89c5c2b25d235fc7", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0dd470c75491910c7cc2667e3635cb27", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a225fddbc428151a3a449bfa679530e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b5c700215e58eb34e0ebd669c9e06d4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95d8f6c345f6851ff881889517377ad3", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "45560fd6dc8da4e5cf6ceb4a63e56cb1", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "315f054115fc955ab1921141a6811787", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f70c4f63e508ab3997109d9e4c467cb", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22f5c338bc59e5cfeee307000a4eb5bb", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ded79debc4514cfff04d0708f59be489", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 223.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b177801ed3a0f565cbe01db396308f4c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26e361dcee7da014b3fd38b0aeb24d46", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00777fa68ae49a609612b905a0269a21", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15492fa19b079c4ab09b226e5c214ec8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f8062fa01af686b6700671a4f192c89e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f6ff6c95970c383c61aa30f7a493ac7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65a66b7fcbc6ef4480aff1c44464c618", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8949080199e45c85959e8e681a9792c", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da40d3ae4e0580ac30fb733bc2f737bf", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a81cc111ea87f4bb5ea3aa93ff09e4ce", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ddd19864c620df225f63386845e11cf", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3587283e90eaa184029f867dbd9d7296", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13e2b2bc2e583a43297e0033e650d4c5", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "285e8fc2eb04543907220aa18f4753b5", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be36e1dd8fc0d668dfd9c1acd2f5083e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14b57208c46f134d7d19d10243058cc7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fee6b44db5fbdca07a1c71ea03458a98", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 232.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11be1ff51470464331c1065adc5d1110", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d3c1066774bda86908673e08f7f4859b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4194f5590808149b187bce04a1a10c8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "959c877aabf6297f7cffd10648a341f2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3ab2a9d10fc9ab8b5eb37a7ed7ee311", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e01ed8e2ba5c7487ef81e2b05a08cc8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94aa47bc429a142b06f8ee2b10adf301", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c085b1c88d68fafb390ade4f2134388", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f98b945810d28c19f80efb3b218ad736", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7cbb63a7ada36993fb2d743025eebc4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcac12587821a9ea422694afe867be4a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "13bb0a4297081cc458e19b8adbea00d2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19439882780988df31949e258f2353c0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "acc332039d9314038864a631fca978c1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea517b8c7510f8e0b66ec838b4094673", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9bc9a7d85b4d2245c55be90e2ed1dd3e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cfce2f5746b5ec5789f521becc020f7a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 241.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4d99acee523a061ebfc54841b619994", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4712db2684339b3c3ac16232b8f85793", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cb88fd9f567beb26f2b85b0f9a67617a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "637e6227b5230d933134ba2e3d8b34f8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80878c2a42af796d712141745ed722e2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df506d56b33193ecdc4ad49178082eba", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3c2fdd324c7630c08efaf6a2d0af6fe", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "061fbcfba17c738cd7cfa17fe15b0ded", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26e934776111cf2432145702ba97ea8c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba794af6ddf2c661252c4f42476e2907", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f24822dffd29fa8ce2c17c79fce43e82", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9dc509183246a7b5a8bcd8f20dc74c29", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e56ef6e346ff2d8265394605e863028", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b9ea729349cf51cfeba4a2e7eb54d55", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ff0f906083139871aa9e5906c0f5fa35", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d86f5a3153bd33243b3e752459dd92d6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb3b8d8fdd555501f7d787fe7e1b05e9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 250.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b781f0ac3268058239b983c27b1996c5", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8cd2a5a286a83b3843592c2a6dacb742", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ce82a4c28551d457b97a596cecab116", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9447ddc3feae977586d58771924ffc15", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "89d22c888ce9d0141535a9cf2b8a5b4a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24a87b13868df60eb4fbe3e86a21e2ac", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c5015307f08da3deeb883d3ffec1067", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d390183cdf5a0056643eae6d130ed408", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffd23acf60f480a09a66849750879892", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "52d30f595410740e589c2c371bfa6d3b", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88958cbc2faf35615e5bf05ff65fd394", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b5535b717c14e21f73dfe513a837d8c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c88f50786da0c7f135760c753f2ee467", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa83a060d38bd3fd978b194b843bd0b2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bcc5bd39a3c96845bb7dddef62debe4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d449cfda1dcf1b4d9ea22988c546a2f8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f7b34bc99ebeb9aeea6fa08ce9f5e8bd", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 259.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2e5a94a5076223a0c7f78032fb39348a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c9cd319d1f2e5d3faba47d325862868a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b5524e4a90c6eef82afc2dd8a7560c2", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d7a415d3566ccf1616b5d1a44baee80f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eb39edf8c115726e491c0e6a7ac41e57", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f235bbefaeecc254c287a45a166949f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f51b70982291909f1682c48f077b052d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c536e6b1dfe9b1392f71557d5667334d", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93628e5905871ce57b6b6fea66e584be", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dfcc18eabf156beb5c505029c864d86", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d0031839da350924cf32459d1c7c5ac", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4397ecbadcce73acc8685620d1bd1da", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "932bedca6fe0f83506cbea9b113d071b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e73c120b6b1aa7962a244606fc5b0f78", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b08097a4d60db1a2cb5fc95255344439", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f3348d826a935423cc5dc4d5fb689d0", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f5cc4bd90ec3e11ad4d16cd273aee96", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 268.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24540d8b18aba31599c52a729aa7526b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b731c3ae7b933559f5b42387379f88b7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11e42f0049545f24786eb858d9a1636d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db09a358f1725104a88a9d1febeb28cc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "184506a8bd1030415ea6175706a9bf9b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0eb827f8b6f3c9af5ac25d9321a00d91", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6c746522b425972ad5d845090212fcf", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b6d6e4690be0f5a7c1f323769f324a9", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d4848a825cabc58ef8068eb31c08811", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98158f6238264ab8610d76c5bfdad10e", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e194e5370e886f8479d0bea2d375c4d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac7afc908ef30c2e852ba1f45d8d5729", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "064237467cd129a36a045e9886c88ebf", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "196b8c2caa01b2236aa2624648ae827e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d624d2d00180f2f537376125fa602756", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d90665cd0d69cbb36b5db5550f48a74", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8bd3b2ac3b4166c4d6a5fb95e94913d3", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 277.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a1d017489cf72f955b8875a82a856dce", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d6ac271518b88218a30bd2278ab8f4f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae7d2dcd090aca5150a497454e3aeb16", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6cdba82eefd4fb3b3ae8733b56fb74e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1ac8baf70333141559f12a125841a24f", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a39ff161096dc1b6fac5d9908034ed40", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "41be44549051e3efdc034acde9173205", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 20.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 20.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48f68ff59e5f93a486542a0aec76ff27", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06be677f12d562a28feb1bea9896145e", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd389cfe426f48105365ffe96f050c55", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b5e82ebf0b06937f654bf96a4ec25d4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 288.38, + "z": 99.0 + }, + "tipDiameter": 5.58, + "tipLength": 48.62, + "tipVolume": 50.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cd7c3004987cf7a7f8b9ada4a88a7a0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2ada72a1e0339117e4dc20756ab3d952", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24e2049f611af93eced5715a053b0f49", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7edde0174727888d45e74c2b9c8466c9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03a3914fc1c9f885e26323dd505308df", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4c92ef26796351e9353db76c8ffc2caa", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a229953d46005c7e2ca1c1441d71732a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbf65f338aba9e7be3f4af016a0a6011", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc3a74e26264af5ac9c001fe18109fe8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b27e61f3170dad003b2fa90a70b2d7de", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39dc6cb5b211b355e8734eae56866ff9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0c512bdb89cc27c2727b10ce4a26054b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de296791e957cb7ee68840b46b2846e8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.1 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": -7.604999999999999, + "y": 354.55999999999995, + "z": -6.6400000000000015 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d35d136b104325cd8073147b7a67cf18", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90a20dca73339013926f6e68e362a346", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f85f6d232ba4940321326c7b95b459a6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "013a440cb08eff53b01234fc78e82e8e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f1c153644f5b31cabdc9de2cf105510", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95a34dd4293ebeeccb295c1d5014c40b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88874105d49b617a45420060e8f0e879", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbc3293e6ac4374388658d57dfa34f9d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8df09c50a99b6e812d7d91ede4155c68", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d72c1fef22329443b0676f20110a9159", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c5c50badb4914deec92a6c2d79740bc", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ead543f50eefdf2c65be827620a9562", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55554353d675afa31313fbbee129e985", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "419dd20c589ee197848ab1e9402823e4", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9b4ce3e094d6cf08dd32ded2b894caa6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d31d4418b44c1f01f14428275c47b327", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54df51914be10cd4fbf681a0dec227e7", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c5ebed12fba5f455c2c64e1b75eb0c0c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.1 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 10.395, + "y": 354.55999999999995, + "z": -6.6400000000000015 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd43340bd640e33ae1a7d4b4122c9d15", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a35d1972be034284220d77d69f71f30", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85ca2ba7b41e86272d5b82ce6dd04885", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7b28ebdf8fb70c7f2e6ed766e7ba63b2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b6592e158c2075b1ffca42918e4fd2e9", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce6b8bec81096cf451202ec9c9f88dd0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcc62a806661152df18805a09d491094", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac5731ba6ae1773cf1721a384b535839", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b62e6f156e505370692dd43dc15ce8e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d51e3ba4d856f8db465b4126f6eb2284", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ec77f802159fa64e5c1c36f06219489", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "069cb4a863c0c798ed33f51ad6235f90", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2057321dc0b2f54232b7cd6db121e97", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ab8a31f5a14acbb7ebb4b3ac332865c0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "26acef94061fb12fff6ec97c6f8fdd74", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "593da871c91661cf392f547ade227f4f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ee3cbeb3f7d725da8d330ec3d0a69cd1", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53da208b88a59d51bda9836390f9bdec", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.1 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 28.395, + "y": 354.55999999999995, + "z": -6.6400000000000015 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d58c04454ed8a173842be5401d8fb947", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56b382592a906836db4b9beaf0cc2ba8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29239de20dd05d273b2299aa6cd12b7d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "96352141cce7c262f00d01749d515e7e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7883b18545cb350ce7eec952698d245b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "041845f532b4c60ef43566798060627f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7161b39b7c8a4bf25d08dc70de1bc3df", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "545c2778bed534f3dd413e83102d4d38", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "56b1e52e984693a198e9db1d8378eb3c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98c84364374cde9c5e34e799950ac018", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3d36dd12dc9bef2eb3da8e7836118ed8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec4931db2b7c5ff26eeb330cf8eaa473", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "35574bcfee7dc58419affa98afd15b37", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4760d3c9cc98824c4641f644e43493d0", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ea56fc26de17b5c04628d376a98ac0e8", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98b452943f3efdbfad0b2de0249399d9", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b0a58f8862f2503acbc4e92769ee0f4e", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1fd28695e8e7cefaa873ca2639f55f3", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.1 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A7" + }, + "result": { + "position": { + "x": 46.39500000000001, + "y": 354.55999999999995, + "z": -6.6400000000000015 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cddcf2eb9a6e98eb127595d090525f99", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f1e81413731148e5d19f6ecfcd69d32c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e6251e104bace2c434435107cc58aea", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef1a3f47177cab531b94cb19b3ca2bca", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "281c99d09ea21de7e695ab719392781a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2f548adf8d2a6648aa2adf8e4ee91ca3", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "085fff2852cf8a319272ae5e4b1a9b12", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2656f58313effa71c5fc2e29d7eff402", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "395d9e561b64ae8144af36543e058602", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30fa703fe0cc4850c9b1ef9bcbf1437c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "11cc23c2f5e3801e8cbae23646fcf3fc", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4255eafc55156d72a6bdee6224490d2b", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad759a7e6987f7d9ee45b39acecf4c8d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "262599b05a8e7f0ebad0c05dd192983f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "24873a2b0e738c4d033f363a95d2647a", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "824ca72f0468f86bceb6a3c8368b96cc", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a310bac2c63aec7afd96fd680d287120", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8a04158a651249efbc5b88881f7fb00", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.1 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A9" + }, + "result": { + "position": { + "x": 64.39500000000001, + "y": 354.55999999999995, + "z": -6.6400000000000015 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1bb9e1fcf37d73d9fcbe31aaf973d45c", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "382e2c41d75977f08f6ba83bf24f142c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32d55b4d72f575530881475ace0753fa", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f74d665a2a0ab03b4f8cf5d2d126958a", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8697317eb84435c21f0c62eb353a4ac6", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1f996f703143e6f62c28d9b144bdd9b7", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3a941c679cef3af15a5c9a4c7fae40f0", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5a8aa82e8ea49a2ed76f9a7ee1a2b34d", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cc23f273524b318941b37ebf60d432d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9086a5f3712d952d1d492c37d350add6", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97fb62ee8e1e92b8c82228dea6ed8bef", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4d52e0d455b6c5059e25d1cb1e47ce0c", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fa37ab8b57329994ed61e63e412c081d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b5789dc75f82ec081b4bd8883be0d5e", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19db1db4c8c2d646f2e65c5b02a4259d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ceb72b2d824bc14978fcd6bbd9b37169", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0323ce57a3f8b1201cbbb259b5beb775", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ad888f38a44ca18ef11ec33a7fe16c8", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.1 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A11" + }, + "result": { + "position": { + "x": 82.39500000000001, + "y": 354.55999999999995, + "z": -6.6400000000000015 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9333d4777b7722ab4c41677ba8d7804d", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -16.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -4.04 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1867edfa409090a80a7614f587fe3ad2", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1b26577a69fb948c300867b92701c88b", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f726218f4cbf1610cff53f53c6b853f", + "notes": [], + "params": { + "flowRate": 35.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36b103e006880faa038391719e4f2797", + "notes": [], + "params": { + "flowRate": 57.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 40.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 40.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ffd24bc6233ed52f497afe1b27d20f28", + "notes": [], + "params": { + "addressableAreaName": "8ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 4.5, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f37a012f13562ee36d4d4ec14eefccdc", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de5ea48b4ab5e63be1cd682062f78b44", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 369.38, + "y": 118.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f523e14dbe82cf4a5a50b3846c7d3f51", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86ff901e5b2ff95f4b225d0c7dedddf1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "00690cfb38ed0fefa9b0bf7f157663b8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd5baff60cf9803a49107957e9d5c68c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c12dedf520f6c9a8dd7a787bcb89663d", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d564c5a63b7c4dda1883ac7f9ace730d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "90b40236edb1a433f6bb5e3637e568fa", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "563d7d02f44af7b1cf9c34f8845914cc", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2598712c01ca46899b189e1677935d66", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6cf3b38db9050e0506f4fde07fc3c75f", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e669642a91f112a1f5359b40c1ab6109", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8edb1c8f16894e2b2ae25f084f80ff8d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0e60d363ec7b476293f1ac07696cd42", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7cfdb5cc7b773f4379b73be0535cf146", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c7943bd56f391162583d3a748df3449", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d2467f89386408364094d4019b967db9", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d6ffd14808f49cf020133fb0ccfa231", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e9a36cc36f3b79f2c85560d951dc62d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "316d0d1b09de31ddcb4db90806dd74a0", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dae587709bfe0d1fabaf8ca3cc1d505d", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a97071b1a10187e4d125eed3935ef9ad", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f92f575bbca57dafce4817f3c8f93760", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10b3f60dc055f5dc180f2394a5fd4645", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d1316f17f5fd5bf4073f5a9f4e0b6789", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23e79b39a6448276a511c7431bb1b5b2", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ba5366d704a3cf81027c60309de21d5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a3dd40e0959e203265198f9e8579a779", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e3e68920e82fb7c9457070ebf5327d8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2281b43f52f34dcf547020cd4c205a81", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "46c3ff117a290695e4285f18db06ce1e", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a98e6c63dd823012f08c98cab39877db", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 960.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 960.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04b771f64ca1c99c69ba093d13c93ade", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a61654157af149a65f77f45ceb59e427", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1067380d7fbd42b0b6404b02df333f27", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a9536ef064b3b9074c224db363bc057", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "746cec4a4dabb32ba69251e683ea0f67", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f06adc70e246dbb2799d7cf0a098659e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cdbfa68db46df42ced30da9f51ec58cf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cd0cb0a74c1e6aab49781199a58f459c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "523da4bf28cdd7201f63160523fe2db5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3305dd945a32643728cbcd1b1f778ef5", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d450fc54cead1e3179290860348e1a73", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9615c4184ac96f7c533c1e51d26d47ee", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5f089007a3dfde634a2d6b23ec1fd69", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7eb7684de8496b5fcf4d86d6ac4cc98a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a905498bf5ba81ad510d21ab137c638c", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "790aa06b3e11e7398bd84ed206d71985", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7b2e158fbf5423c69f378c49911df73", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98e7849079c5968403d3e5048b1dcad7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a710f9a73fa3a9690e64571fd835f5b5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2360cacdb76512a52f2a6c56645875fe", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c78bb3d17d52f0a37e0607e251b525c3", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4072ab812f9fbc035cb930ddb6c23c81", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc08e4446c8b68529190d0470bf8501a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09c56c50ee34bd32f1e5674b01512a5d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bc381847c21d10279bd62b9dcf7c81b", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0b5f517160726f37d7b9deaf82939b4e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "03a6ec8708b77593060a0ff461de47f7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f0b0bf249196836ed1be088d5bd1b62", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "df8852ddab39fcde64f4725927197372", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0ae57ce48b7eff01a5b2c8d0f5e396b", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3ecea500e44352397441e422d323ff4b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 960.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 960.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9fe7e14510e6390846d4a2dd6ebd0ed9", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ddaf98d272ae9fb97d8b43b8d9411eac", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbce7a68d9067a732b79c5e727408a41", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2aaf5eb73abe8415d8f33ca006c00172", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a128c81c9a30d56203b37b011e4a0c2", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01fd700acef5221dc72cf85be3c54a50", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbe916074bf1dcffddbc9cbf546d8a67", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "55ac61b1b9e6f0941f16c5f4f9ff2103", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7fab8c874ce88d9edf078511b0bef44d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "144ed461264ed7cebf088fa2c7ad44de", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b81b0ca91bc6d6461ae34511047200e2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0613a4108fda843fcb93c42349b0438", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c0093d5741ae6d2890f78bba312f82b7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ea63f46a82209c706d5911ee121438f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85c16dc54cac7e8f37eda3dd020f1083", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f203566678e419a5268052bb4663d81e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0a715fd17696cdcd97bd26f9303a5d10", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ccfedbcadcb9d5e84c57669805c4ec72", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dc13af9539bcde8acc312692c54ed8b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b7c0647c2767fd4a526da45ac3285037", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d36b2823d78b49a89c690467ef3f42f9", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "abf5a857b01282364743dc2af7bba233", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1c8cf3a498b757cec34fabbf1a39340c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2338d909ad1c517b51b623b3edd3f0f9", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "98bfa8af2d4977a164e5ea118364df77", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63584990d0b058602f8476ff2d634b4b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a2dbad66dcce7948778e54974e77e2e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5c8cc23509b0a745ed1b61d0b3a7ac1f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c327cdf90aaf2b6e9308c94ea59feaf9", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b2cea0019fd332854e65e93cf981472", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9d1a5fdd20395817f1ba910fa70f8b3b", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 960.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 960.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bac07c68ea013f0df822f4354a2dbe1a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2c695ef4d3d08d653173725a2e1bd37", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a16af07edb3335d1ac397e8b7af6e973", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a0f20b5422774a5b276f279d23e38c60", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4471d76d1ff0f99cf197500ba65e302", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fba206d5e5f4f4a12aab041669521e09", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23b5ae351ec4bf922086acece9bef2f1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "592c81d56370808449f6c50af8bed099", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6bc528af4f623a1bb34b1deabfe2abc7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "04b3f3408d1f7c8c714f5b6fbd902054", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e6422b32c5b9dc943c2c7ab79a3cdcf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "76cab75fa5be9e4042b3f2f3d2d8cf64", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b4d9df1445a8c13392d8a96a3c250a7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f72f98a78a98d4d74a73af6d410b298b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f848e08b8154140da45a21ce799a8a5d", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2eeba1dc83efd92d845fc194717513b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dbdc75f0973c0fde28bd1df06250fc39", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6276b09bd834c6bc79428d61d74dd77", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "74be8a48c2b72e33066003906ee7192e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c180f314218da7958d73f407250c1b8d", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a7b62686d7f2d3c242721d3d2db2eae5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba8b5f7fbb1543fd2f94a6ae336e85a4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58be49ed17a98f2ac4665ceeb7cd66c7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "826ff72d6744e5d30de2fbfaacf1c269", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "089099643fde9339fde034a8079c3a6d", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e2d0b8fc3766fc8c30c998b59c34253", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a87258bbc6d1af5bf43678ab8910b59", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc1e204ddb200e0fa99024f5da038753", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b01942bcec79d691dfaed4d7faf30591", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6138c844de5ac2fa8df7bcdd0e1a7040", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4e568d3fc266a1967528ffac30de13d", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 960.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 960.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "de17367932137d8a542c060fe1bc2ed5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f135a99ba08d93ba9d9bb64e7da2ca6b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9723ebe0a2b6c73753ca59bc2a1d43cd", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5f44cf701bffe7178fbf6a5171228029", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9ac7d3dc7faf96db703965bfb127fbc", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c5a9d3bfd5c0fe4236e3ab9379961e8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca71ad5ebf2a2cbf6367dc0810997a8f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "51a43f0e67279fe512028e6ae72f0db5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bc4f808fa57af8cbf09583a02ae119ac", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e66997c3f614647801a97760b3f4f19", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e48004e2d059fa38e42a9a17256a31d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bba993d128a9311df11ecf0d41685b9d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bbbea29c78f7e75cbc69881dbe16ca2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "80fe706f06a57ef9d0eaafcc4552c39e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e320c5604c47eb76af4aa12ae2f9d3f", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcb79bfdce705e73744b5056a1eb6fda", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "422417c6ad45ab4fbbd2740581241347", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c970beed02eef48d8529a1fa0d970616", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da54de907502bc1df94ceef09d8db2b8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "475bea3f38b3355fc4bce1f37e9072d5", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30b969fbb02369992c5a7f48502f3cb7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3ee13267db17ffe7dd8ff71c4324e7b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c5df146f773956bf545cd4ea0704119", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e1a9d6148cfa73dc04aa569aa51f48d5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4ff122793e0ee1b4a3b1fbf1e6a77478", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdfac2ca4642522fb2a686205f7ce79a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61f390acc2690f3485bec1ad1ea5886d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "705bfb7e68e2e0d966246712fd6c942e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "be9f292a4c706e1849d4f0b48fdeb93d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7419d4ea9f95bdc170b8f81f17c4636a", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "61b97c1ce198d991b57aa2b809f27a73", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 960.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 960.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "73e00d4930c2966bf6791e380384f362", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "07ae4ed19ae9660af332f0be0b56d68d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8c3bea00705e9a9a81de597af5a71d5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f6fc097ede5456310d43bd6d7c7c9b34", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "688d1c98f1457549bf8251be4c921fcc", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ec3d344fa08cfc76b0545be620a3199d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdea66b6791769b17670c31dc66ba4fb", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ce56fce8e05945898969e923ff0cea5", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d39a672cf3ea3f44e9e5fbecb00e27e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05056c7089a576fd7d7c1b1ac195bfd0", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b09c7a48146dd179dcda07867b3dd11c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b26252eb8bf18ced6b0ee451809c710e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4ca0652307c70fda3dbb246dc03ddad", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e74a59c2f8285abef8d78d32ea9e5b34", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4715452355593505ccc0385192e39727", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "95b9bda9c5a72e48212cfe60cd91037d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f36e06373c87ff49a15eb84913ae3ea7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7605f634a1da4e7fab01658eedacb9cf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1be56d12809fcd56a3456f73c12d9cf7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e8c3d3d0c1c9ed46fc6acd3252a335a0", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e0b3200d541cd1f1ea51ce00e2537880", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "50306f6eeca27707cc82243e9aa89c2f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1463735e58ae294fe91a24112d75e199", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "da2f5927d50f45ba81f8a574e372217f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6646a456ea1eea0b8ec5012335035703", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "84a4578ad79164f8c0623a12719e52b3", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf74dceb2250381b347cac9d2fd541eb", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e1d836211190e33bd691db006701113", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e4711a7a70e93536a60f1cd36133ef91", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2467da95ec9f4be135e1c4dd12f948e8", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a15d24345df0423ce6a8660b2468cae", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 960.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 960.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ce7a11546b07ad59adb7ec1cede12510", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4429b06774f81181427c145a7563798", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2d7f1352375c43faf3de9ddfc5185455", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b887eca2801cc87d998ce0a03edb0e56", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "104511a148beaec2d93472d41b3503a8", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e97bd48413fccfc54cf8f670f1894bd2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7482ccfa9bf0b171cc5b1b8e31091735", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fb27843f9d4ec0b1d2078e1284fbc0f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d46f93f206cbb5a080539e5607ffc1dd", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ed82a0cf76320d213693f6e71eb9d84a", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd8dd30871ef6f2ed28cfc107f278c55", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "15d2d1c986b192f1f08d4a06b5dccd48", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58eeb6a13b7c355fbef8716419fec4b9", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b27740134bdb7888d2ab81ea5942be28", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f2949afa01fd05b740b314c72a96fc4", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c381a6cc5536c8ea298bfc59fa8fceab", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7e931311c4ed17c0e7ba04bd0a77a75e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5514ab9a20b0271768ae9fc14dc90d9a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5df1796d67755f12e802b972f584f511", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f5292c946e9d305477976f1ec6f2a55", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e7afe3f273dac0fd97b0370d9e2515d3", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0aef671a593aaf9981df2c2dacbefad2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a2c621f6a6b7651ca52d758531cc4d1c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1259754018d53c2fbbaca17f5c2698b4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d0ecd12ee1890ec55a79c44dc9ea557d", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0ed50436cd6a8234238121f1f5bd426c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4fb09cd320fc1a38b09b5f1602c6c1b6", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "65abc97b970bf04f2c414325e94b871e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "513e23aa8ef8200b429324f86a8c9b30", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dde8de2bef926290011b1697e42abeeb", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fd86b52ef7b808aa298300f148c77602", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 960.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 960.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8a76677bc48ed9f545384504fbba6e90", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f80c37c84d2d6568287374f4568ac820", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae5079c329074dc2f0871218b09f317f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d76f362e4c07e40011b7f411be30def8", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6e0a23c05865bf847e94559f969bc1d0", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d5a61963349621bc3c601fc7b64d2e2c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39a77e02798e1a3268a3ec5aea84f7bc", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a30e93e4f2b140bc546d5a5b2cc8c6bd", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2fdcdaa5a7ee6a7d3db021df18dd3fba", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32672861e648cd49bfeb419558c20b3a", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c996b29ed7df838add66af664d71785b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9521082b7ec4fb07255624e544caaa6e", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "325f5d475bfd36e76a873dd605fe7242", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5b524097dd4128128895008fa769de23", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4bae32cf4161eb4dac3a91aa9d9c062f", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94d59afd231f30935e1a1995ea1e685d", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d14065f53860ec657aac9288ec9f6adb", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6a37a17a3a7614bb224c2a3b8b710ca0", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f04382a1f59977472460bf1e07d3760", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd5b7d3e9da636063ab4d64bfca82303", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "315e62f3e8f400b6944440d8d3c7be75", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f8dbd2fced29b137f8fe2c33517864b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b2db1b62e044d5b630445aca0dcec234", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "efd097fd99e398583fae000fdb986ef7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f7c043757739cdb7cba19baf20b5b5e", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "70765c9c360b69c3aeb0e5a5fd3d7da7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "918f9f6701dc12f1122790a6d5611f24", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3db11c83bbd7afc8ee76c64ac6f62ce0", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d4db973e579c505d20cab5fa328be229", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 100.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -6.04 + }, + "volume": 100.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2423dbd25997ce3f6adc1bbf37354ebd", + "notes": [], + "params": { + "flowRate": 572.8000000000001, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 160.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -19.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -7.04 + }, + "volume": 160.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "30d9384ff8c6eaaef59c59b1bddad2fc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 960.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 960.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93249558b33f74f9b446c36ddf182620", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d844b953c2a8baf22e73fdf052426785", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb787da70ed20bf1511f1bf64309c347", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 342.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4398eaa606e563677613433da6b8bf6", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ecc815ad0e0c9a7da8b750b608c9a57f", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 19.395, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "647109451dd437639b119d2bf5fb01a1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4f26aa220034b83c8e2c571201f8a7f7", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "794351f1d28e7813954d844c2681dde9", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e8ebf417858e63cc71ad0caea3bce8a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 354.55999999999995, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8d9b3c3bc563a2044b9806aae90e1b4c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c1e062c3504016a460cf12014f343da", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 345.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "12f16f6b54e6c5c7dff8438bca61d500", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 19.395, + "y": 345.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7759d2a65d0add0c8ade89a494cbed9c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 345.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f654f4c0e618cea01fa2615c5306cf29", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 345.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dd547a81d875e02f3c4e99eec9537199", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 345.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8f7390936085347f837014444845316", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 345.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "484111108f925bcf348cbee9a0795b32", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a9d6ac655b9da5087e49c06f8254e2a4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 336.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f3d7aa1e2b026805a20558bb3aac43b1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C4" + }, + "result": { + "position": { + "x": 19.395, + "y": 336.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9a72480c69a2a28dc18ba750a301bb54", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 336.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb3e9627f6552e8c1a2df93fa1274e14", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 336.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "58b05a816f78e0fc8b9cea483462f911", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 336.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "498bc5b22101f01a090517fba7ab1768", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 336.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8f3d824f1928b4122a96d964b94a020", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ac1db08e6f6ce0f858aa5263c7989c5b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 327.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7abae839146807eead303f9c2a1d2fdd", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D4" + }, + "result": { + "position": { + "x": 19.395, + "y": 327.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3344d39ea647bbe162b339d8a5b60cb1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 327.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b62f2a532bab64904108a4842b7c0554", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 327.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6302c47fdcf2e917feeb4c99fa542244", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 327.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09cd28986baa71666e27e441bf8ce5ba", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 327.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "32e5e19ea6a67b9c8b72bfb4d6056e83", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b1a9b93b2751b7fa8bea0afac52d7de", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 318.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c3dd11cb865a15703165d07ab9bd2084", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E4" + }, + "result": { + "position": { + "x": 19.395, + "y": 318.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b938c7c5022262d52adcd7f2492955a", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 318.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bdae2208d8aecc4393547d683d0c2f20", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 318.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e416a41aa9b6f0b338de5fb0d24181a4", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 318.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0301fa81cbbcd14f985ba77f7c6811cd", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 318.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "78f9e796dec47811a8a9373f55403a7c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "49f1e6bae45ec56ba28a569fdb6fa55b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 309.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "09223393a262b0d783b9731c26474c16", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F4" + }, + "result": { + "position": { + "x": 19.395, + "y": 309.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c823a67340a891e16a4dd2b21caa01da", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 309.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae8107534521c82f42f783efde6c0e33", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 309.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c2ba66194a6065fa1654b746d196379", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 309.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc55f55ad6548c97155f4b5c7ba90b0c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 309.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b56f6b07a93cb80546ba139299fe3f7e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "94f7738d4e4890ca3ce75fd42e0f3cff", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 1.3949999999999996, + "y": 300.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2244b46084fc5860aa3a7e6b4a1a779b", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G4" + }, + "result": { + "position": { + "x": 19.395, + "y": 300.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85baf3a1e424f8011ef08c08c28315f2", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 300.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bb3cedc58b5c090d1b694dc2efd6a670", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 300.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "48e8bf95466d444e0e4fb3a5fc370b3c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 300.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6098a0abb7e933690801fa8020e73773", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 300.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "53b10d606eabce2aa8ac54cec33b2f9f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5bf57a62f35e3eb7f12386801ab83437", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 1.4350000000000023, + "y": 291.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "36ec22b600cb16a5a2521272f428a283", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H4" + }, + "result": { + "position": { + "x": 19.395, + "y": 291.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6f019085d17ec98f3b4b1b8b83cd8f1c", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H6" + }, + "result": { + "position": { + "x": 37.394999999999996, + "y": 291.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0350ddeec580644219ff4c630291c0f1", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H8" + }, + "result": { + "position": { + "x": 55.39500000000001, + "y": 291.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bf31a8444980d8058ac017ab12a97b15", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H10" + }, + "result": { + "position": { + "x": 73.39500000000001, + "y": 291.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "792accbe52aeb1495dee63fda8a44ecf", + "notes": [], + "params": { + "flowRate": 501.2, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 32.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -18.900000000000002 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H12" + }, + "result": { + "position": { + "x": 91.39500000000001, + "y": 291.56, + "z": -6.440000000000002 + }, + "volume": 32.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f64d03fc7048e4f7ae14c889ee41d81e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 192.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 192.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "beedc035112472fbb00cc40093cf0a4f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "93685ad88d0e8d85c212eae4a02d3fd0", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3c34aa5595ab4c7487a2ea4d269a41ce", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 378.38, + "y": 181.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "19a1820108249cad14ada161df9ed129", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c507bae2d174a80a57ae4e0fe7b0d577", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7770fa2adb461b4412cb546cdc02809b", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -87.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 36.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "28421f683448438d24b328030ea131c3", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f043aeab997476fbd270f54ca6185dec", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -92.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 31.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97563bdcf21cc3867e5309e28fe5c862", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8322f669931eaee9c44a7973c283821c", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -92.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 31.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4736764347d14d99bf232e6042761ee4", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3adb9069e22c44bf4f5fa5495617627a", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -105.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 19.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b4716ee9093b4cb0d82c30f863f24b12", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5ed9511f5b3a00fa3559b25ac7fd8ef3", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -111.25 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 13.1 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "946aefd02b991e1c785223508f5cae2a", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ddb4b127e2e821d022ced086f5aca19d", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -114.375 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 9.975 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d024aae60395ce66ceae5f5c83ba3732", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 114.35 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9aea5a9d62a50be543cf827350d56740", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 680.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -114.375 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 227.88, + "y": 67.74, + "z": 9.975 + }, + "volume": 680.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cffcf38f1aba0942e5a9f5efabaa4179", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 680.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -10.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 114.35 + }, + "volume": 680.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eccb3279c2c5c106667e2a1f7949d487", + "notes": [], + "params": { + "seconds": 0.3 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f84c39c07178503ce54cf9584e84fe86", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a89e0091fd9d2e498317401fd02ebee3", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d83e6906fde8a70c84e6b61cedcf37da", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 342.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d623e6cbacdcc1e5b3e52acb77f8657", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 20.75, + "y": 175.63, + "z": 15.800000000000008 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ba3c0c29e13b4befe4c428efade1dc01", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 70.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -77.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 46.85 + }, + "volume": 70.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87fd6dd8b575f8eb77c00785872b593c", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e16b60fbaafec4924afb86d9a0e8a462", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "353eab2470ba6f2f314eeec030744da0", + "notes": [], + "params": { + "celsius": 25.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 25.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22ae5c008645b762b71a8f39aaec7449", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3e1f0d21c15b942872bfd7a8b1ba1b6d", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85a2b41f5f60500836eac95f5b29f4e0", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B5" + }, + "result": { + "position": { + "x": 378.38, + "y": 172.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "373122df3022cc7e8902d09eaa046616", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -62.49999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 61.85000000000001 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c367daeaa3ac12f7423298268a9ba8a2", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "23a2795a454405abeebf65944ba9ea40", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "10e177947bff107fef4b158242654f22", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -69.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 54.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "927885c6489eeb1871b8c626b3538cc6", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "afd778b663b25e20ac42d1015734abc2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7dc12bcc31c8b3d6f3ffac6458e92a86", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -76.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 47.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7d69cb1293de1118beeb45934e093f7b", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4b68f9cfb368eadfbced07880871731a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82dabdcc455459a12eba278c41e10d55", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -83.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 40.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e17af30183629e93d60643412fbbb79", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eaf8e31b407815ca8dfb8ba26c949eb6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7ebd83c89fc32ae6a13a0fe500a41505", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -90.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 33.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cbf21a20bb669484b082898a05d36b4a", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8f6a523560997cf6eb60be673131bd98", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a28a491aaa44c1a4de796fabfd366e1", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 26.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "88a15d24f464983ca6bd0ea7991a6caf", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f0d68cb1c18fcf882b1732fa3ebce2a4", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc67d876483e4537d13a05d8f3ab0b63", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -105.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 18.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f4f4ea6b62063860e2372d2d61c5dedf", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0d89d1cecaa44c656a5cc6be4c2a6aa2", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "4eb5006065f9da626e20d03f78e1478c", + "notes": [], + "params": { + "flowRate": 75.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -113.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 10.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6477e7a847f9d8196821787aed48b0cd", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "998cbb59fab4e9d71850d2ef8ceb83bd", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b267fd1cc4419500d21cce6f0bfed5b", + "notes": [], + "params": { + "flowRate": 20.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 250.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -115.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 9.35 + }, + "volume": 250.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "86c5f00fec12a2156b0ebdaae80a860b", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 250.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 250.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bbc0e55a5c76b2a1f4b010a589fe69f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d825b5917640740e4e83b1c81d92378f", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a88f081485a34059117a9ce9bc48b87", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "cc10b9fa07e71b3ad36aff1ce3e6cab7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C5" + }, + "result": { + "position": { + "x": 378.38, + "y": 163.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7c316efff36438a57e0460cb3a1bcb60", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 277.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d6c208e0dfe32a2c7396ba35e55b4d23", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82ec33394f21464190855eca79b92aeb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c828d171a41042d81d7f3bd7b0c58023", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2b37a62dc16f26463d74f4c9bfec4e8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "75d706ca439043e9f0daba23490d101f", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 800.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 800.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "63b51dc24be55db89bb07c3c2254764a", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -92.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 31.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6db13e7db01fec597d186dc8dd0f1520", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -92.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 31.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d41cfd822f0fb7d9d6273e7a53b4a91e", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 256.88, + "y": 67.74, + "z": 121.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToWell", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2a6cf4d9972297f53b0d11abdc8782ff", + "notes": [], + "params": { + "forceDirect": false, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 248.88, + "y": 67.74, + "z": 121.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6b4c4be2e0205ac78799af70ba2575e6", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 248.88, + "y": 67.74, + "z": 121.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForDuration", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "890f1146959a76e01cd28adb87b85071", + "notes": [], + "params": { + "seconds": 0.3 + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ae35ba2659361d3265e1f33748c033d7", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": -4.0, + "y": 0.0, + "z": -3.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 248.88, + "y": 67.74, + "z": 121.35 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "bcb7b6c9db62b649cacaf16c566a4e40", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e628bd4c55f612d4ce808c491c100058", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f306af11a884b0dd26c864e4181a7276", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D5" + }, + "result": { + "position": { + "x": 378.38, + "y": 154.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6cc3170a75373b52f70e357cab434ccf", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 277.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ed733d00a9a4242c6be84931bfdc6d7", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5e370d2f2b1d76f69c67dbb1f157d0eb", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 277.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "81534bd72548477c973ae9e3218e650f", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "169f57ff31089bb4aa616d29a8a52f58", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A5" + }, + "result": { + "position": { + "x": 277.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a350243f9568a811af7619b3aab4bc57", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d98fdfc25b8754a644ed8d4d855dacc0", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "452c5bc027bcb611397de465a91410f7", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f323af431f7622e92a7993185202afd9", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f9c14f15e7dbb89f2659af6a771a9bc1", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E5" + }, + "result": { + "position": { + "x": 378.38, + "y": 145.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "97f6bd4565efaa84ecd18ffc6ce4c205", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -83.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 40.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f2fa8c77b350de33b3db4be8b97b13fc", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "297644cb329c38500373500a7ab51709", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fbb0007c483b4b1c02b16ed55fc71f7f", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -90.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 33.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "87c9753f046df895f2a3b6cdac61f1db", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3239ecf54441b1271650a6296613e96a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "764887d22f79be4caed757d354433298", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -97.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 26.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "644c55e8b6d2ffa5a1436cb4c615570b", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0e5dd53e6844d1f3c1176ce80353a5e8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7feea552a82b90aa576b2c1f8dfff39e", + "notes": [], + "params": { + "flowRate": 150.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -105.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 18.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c845cf8a9378e4cdd2208c19028f7df4", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "441f849abdf6ec12132f004b4e01ea0a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d00f3159f8be05d45825c2852fb1251d", + "notes": [], + "params": { + "flowRate": 75.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -113.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 10.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "14192878a86daddc5f3a61c169f7e42c", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 1000.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "06b904daf6d841d5d72800f148e0b800", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c4b172e8adf003b976edad165eaebbe0", + "notes": [], + "params": { + "flowRate": 20.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 250.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -115.0 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 9.35 + }, + "volume": 250.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fc61b003befc08d8f0d5bde29db3014f", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 250.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + }, + "volume": 250.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "blowout", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9c98d8a32d6639671df7624d063a3285", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -17.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 252.88, + "y": 42.74, + "z": 106.85 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "beece8b06236d2dee060c51fb0ccb434", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5018a9c3365bef911e2a13ac07c0578a", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "eaaf768582291c146a4f028b5f57bd17", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A2" + }, + "result": { + "position": { + "x": 351.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2937abb42993891dfeaf71e80b55ae8a", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 38.0, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9113ad441c05929dc384420f729e26bb", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 60.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A4" + }, + "result": { + "position": { + "x": 252.88, + "y": 67.74, + "z": 7.85 + }, + "volume": 60.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8729d7daeccf3cea88566843760ad392", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "85849339022146ad4559507bb7604443", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "54b787d00b7b6d058bbf734dd87bb686", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7a194b51516344c0c92fc00ed59b88f7", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F5" + }, + "result": { + "position": { + "x": 378.38, + "y": 136.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8b4482acb64f82bf349768bf811d147c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 220.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 177.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 220.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a57588a9f36c0e3a3c94754d83af5675", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 220.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 220.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "f159fd40012b854cf3362c7c3b36a9cf", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29c4ea67c57450c6ac77b8f97a877023", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "01691890714131e61b9b5f304d9b1b68", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 351.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db67dcb92fd8fcd291742298832b3f54", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -36.89999999999999 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B4" + }, + "result": { + "position": { + "x": 72.5, + "y": 158.38, + "z": 15.800000000000008 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9f19db88e7ddd38201997cfe608d8af3", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 44.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 44.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6ed29e3ab710e05643aca14b1a06fd2", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e58d15650012d1711ebac4fd1d6ac46f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8e2d15a21f657e64abe416a30b4d5be4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G5" + }, + "result": { + "position": { + "x": 378.38, + "y": 127.38, + "z": 99.0 + }, + "tipDiameter": 5.47, + "tipLength": 85.94999999999999, + "tipVolume": 1000.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "641d268bca22ea417a384f7e4f890a93", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 240.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 240.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "db2a5736efeee03d3d5104f099c68449", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 240.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 240.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "29410f93dd8f5c37fb8f7c264eb7e6bc", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 240.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 240.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "af87f80d06da189620146baf82364c33", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "pushOut": 0.0, + "volume": 240.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 240.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "82022440bfa139e2de599f8e9d28efaa", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 240.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 240.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "215f5b95955888f95add5a22fa2e9e07", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 240.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 240.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6dc194a7089567cc245432f017b6e084", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c8c8857829283802c02ac829d924b14f", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c6b820c6bfb6a550147f3cc3955cb41f", + "notes": [], + "params": { + "message": "Move reservoir_SB from C2 to chute" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d80276a4138450ff55a759fdb9bb68f4", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "addressableAreaName": "gripperWasteChute" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "kind": "notOnDeck", + "logicalLocationName": "offDeck" + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "gripperWasteChute", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "loadLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2c62dd108583ba674e2ea46d3a5e0e0e", + "notes": [], + "params": { + "displayName": "Plate4", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "addressableAreaName": "D4" + }, + "namespace": "opentrons", + "version": 2 + }, + "result": { + "definition": { + "allowedRoles": [], + "brand": { + "brand": "Opentrons", + "brandId": [ + "991-00076" + ], + "links": [ + "https://shop.opentrons.com/tough-0.2-ml-96-well-pcr-plate-full-skirt/" + ] + }, + "cornerOffsetFromSlot": { + "x": 0, + "y": 0, + "z": 0 + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 16.0 + }, + "gripForce": 15.0, + "gripHeightFromLabwareBottom": 10.0, + "gripperOffsets": {}, + "groups": [ + { + "metadata": { + "wellBottomShape": "v" + }, + "wells": [ + "A1", + "A10", + "A11", + "A12", + "A2", + "A3", + "A4", + "A5", + "A6", + "A7", + "A8", + "A9", + "B1", + "B10", + "B11", + "B12", + "B2", + "B3", + "B4", + "B5", + "B6", + "B7", + "B8", + "B9", + "C1", + "C10", + "C11", + "C12", + "C2", + "C3", + "C4", + "C5", + "C6", + "C7", + "C8", + "C9", + "D1", + "D10", + "D11", + "D12", + "D2", + "D3", + "D4", + "D5", + "D6", + "D7", + "D8", + "D9", + "E1", + "E10", + "E11", + "E12", + "E2", + "E3", + "E4", + "E5", + "E6", + "E7", + "E8", + "E9", + "F1", + "F10", + "F11", + "F12", + "F2", + "F3", + "F4", + "F5", + "F6", + "F7", + "F8", + "F9", + "G1", + "G10", + "G11", + "G12", + "G2", + "G3", + "G4", + "G5", + "G6", + "G7", + "G8", + "G9", + "H1", + "H10", + "H11", + "H12", + "H2", + "H3", + "H4", + "H5", + "H6", + "H7", + "H8", + "H9" + ] + } + ], + "metadata": { + "displayCategory": "wellPlate", + "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", + "displayVolumeUnits": "µL", + "tags": [] + }, + "namespace": "opentrons", + "ordering": [ + [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1" + ], + [ + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10" + ], + [ + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11" + ], + [ + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ], + [ + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2" + ], + [ + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3" + ], + [ + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4" + ], + [ + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5" + ], + [ + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6" + ], + [ + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7" + ], + [ + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8" + ], + [ + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9" + ] + ], + "parameters": { + "format": "96Standard", + "isMagneticModuleCompatible": true, + "isTiprack": false, + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt" + }, + "schemaVersion": 2, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { + "x": 0, + "y": 0, + "z": 10.95 + }, + "opentrons_96_well_aluminum_block": { + "x": 0, + "y": 0, + "z": 11.91 + } + }, + "stackingOffsetWithModule": { + "magneticBlockV1": { + "x": 0, + "y": 0, + "z": 3.54 + }, + "thermocyclerModuleV2": { + "x": 0, + "y": 0, + "z": 10.7 + } + }, + "version": 2, + "wells": { + "A1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 74.24, + "z": 1.05 + }, + "A10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 74.24, + "z": 1.05 + }, + "A11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 74.24, + "z": 1.05 + }, + "A12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 74.24, + "z": 1.05 + }, + "A2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 74.24, + "z": 1.05 + }, + "A3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 74.24, + "z": 1.05 + }, + "A4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 74.24, + "z": 1.05 + }, + "A5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 74.24, + "z": 1.05 + }, + "A6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 74.24, + "z": 1.05 + }, + "A7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 74.24, + "z": 1.05 + }, + "A8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 74.24, + "z": 1.05 + }, + "A9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 74.24, + "z": 1.05 + }, + "B1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 65.24, + "z": 1.05 + }, + "B10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 65.24, + "z": 1.05 + }, + "B11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 65.24, + "z": 1.05 + }, + "B12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 65.24, + "z": 1.05 + }, + "B2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 65.24, + "z": 1.05 + }, + "B3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 65.24, + "z": 1.05 + }, + "B4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 65.24, + "z": 1.05 + }, + "B5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 65.24, + "z": 1.05 + }, + "B6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 65.24, + "z": 1.05 + }, + "B7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 65.24, + "z": 1.05 + }, + "B8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 65.24, + "z": 1.05 + }, + "B9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 65.24, + "z": 1.05 + }, + "C1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 56.24, + "z": 1.05 + }, + "C10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 56.24, + "z": 1.05 + }, + "C11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 56.24, + "z": 1.05 + }, + "C12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 56.24, + "z": 1.05 + }, + "C2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 56.24, + "z": 1.05 + }, + "C3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 56.24, + "z": 1.05 + }, + "C4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 56.24, + "z": 1.05 + }, + "C5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 56.24, + "z": 1.05 + }, + "C6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 56.24, + "z": 1.05 + }, + "C7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 56.24, + "z": 1.05 + }, + "C8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 56.24, + "z": 1.05 + }, + "C9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 56.24, + "z": 1.05 + }, + "D1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 47.24, + "z": 1.05 + }, + "D10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 47.24, + "z": 1.05 + }, + "D11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 47.24, + "z": 1.05 + }, + "D12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 47.24, + "z": 1.05 + }, + "D2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 47.24, + "z": 1.05 + }, + "D3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 47.24, + "z": 1.05 + }, + "D4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 47.24, + "z": 1.05 + }, + "D5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 47.24, + "z": 1.05 + }, + "D6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 47.24, + "z": 1.05 + }, + "D7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 47.24, + "z": 1.05 + }, + "D8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 47.24, + "z": 1.05 + }, + "D9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 47.24, + "z": 1.05 + }, + "E1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 38.24, + "z": 1.05 + }, + "E10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 38.24, + "z": 1.05 + }, + "E11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 38.24, + "z": 1.05 + }, + "E12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 38.24, + "z": 1.05 + }, + "E2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 38.24, + "z": 1.05 + }, + "E3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 38.24, + "z": 1.05 + }, + "E4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 38.24, + "z": 1.05 + }, + "E5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 38.24, + "z": 1.05 + }, + "E6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 38.24, + "z": 1.05 + }, + "E7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 38.24, + "z": 1.05 + }, + "E8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 38.24, + "z": 1.05 + }, + "E9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 38.24, + "z": 1.05 + }, + "F1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 29.24, + "z": 1.05 + }, + "F10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 29.24, + "z": 1.05 + }, + "F11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 29.24, + "z": 1.05 + }, + "F12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 29.24, + "z": 1.05 + }, + "F2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 29.24, + "z": 1.05 + }, + "F3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 29.24, + "z": 1.05 + }, + "F4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 29.24, + "z": 1.05 + }, + "F5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 29.24, + "z": 1.05 + }, + "F6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 29.24, + "z": 1.05 + }, + "F7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 29.24, + "z": 1.05 + }, + "F8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 29.24, + "z": 1.05 + }, + "F9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 29.24, + "z": 1.05 + }, + "G1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 20.24, + "z": 1.05 + }, + "G10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 20.24, + "z": 1.05 + }, + "G11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 20.24, + "z": 1.05 + }, + "G12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 20.24, + "z": 1.05 + }, + "G2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 20.24, + "z": 1.05 + }, + "G3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 20.24, + "z": 1.05 + }, + "G4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 20.24, + "z": 1.05 + }, + "G5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 20.24, + "z": 1.05 + }, + "G6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 20.24, + "z": 1.05 + }, + "G7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 20.24, + "z": 1.05 + }, + "G8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 20.24, + "z": 1.05 + }, + "G9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 20.24, + "z": 1.05 + }, + "H1": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 14.38, + "y": 11.24, + "z": 1.05 + }, + "H10": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 95.38, + "y": 11.24, + "z": 1.05 + }, + "H11": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 104.38, + "y": 11.24, + "z": 1.05 + }, + "H12": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 113.38, + "y": 11.24, + "z": 1.05 + }, + "H2": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 23.38, + "y": 11.24, + "z": 1.05 + }, + "H3": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 32.38, + "y": 11.24, + "z": 1.05 + }, + "H4": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 41.38, + "y": 11.24, + "z": 1.05 + }, + "H5": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 50.38, + "y": 11.24, + "z": 1.05 + }, + "H6": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 59.38, + "y": 11.24, + "z": 1.05 + }, + "H7": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 68.38, + "y": 11.24, + "z": 1.05 + }, + "H8": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 77.38, + "y": 11.24, + "z": 1.05 + }, + "H9": { + "depth": 14.95, + "diameter": 5.5, + "shape": "circular", + "totalLiquidVolume": 200, + "x": 86.38, + "y": 11.24, + "z": 1.05 + } + } + }, + "labwareId": "UUID", + "locationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1fb3fbb99057a2e1a1fde2af7b828acb", + "notes": [], + "params": { + "message": "Move Plate4 from D4 to C2" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveLabware", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7abf911a509370cc51037fa62405bcae", + "notes": [], + "params": { + "labwareId": "UUID", + "newLocation": { + "slotName": "C2" + }, + "strategy": "usingGripper" + }, + "result": { + "eventualDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "immediateDestinationLocationSequence": [ + { + "addressableAreaName": "C2", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutC2", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "singleCenterSlot" + ] + } + ], + "originLocationSequence": [ + { + "addressableAreaName": "D4", + "kind": "onAddressableArea" + }, + { + "cutoutId": "cutoutD3", + "kind": "onCutoutFixture", + "possibleCutoutFixtureIds": [ + "stagingAreaSlotWithWasteChuteRightAdapterNoCover" + ] + } + ] + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1a48d876ca42357ebdad8d698c96697c", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "C2" + }, + "result": { + "position": { + "x": 351.38, + "y": 377.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3b12711f0c5fefb3964d0a58059547b8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "0f69d95af0e968b6c5d1d6a9f2848648", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "A1" + }, + "result": { + "position": { + "x": 178.38, + "y": 181.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b8a3a92258076dd28ab260d7da0a12dd", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "561996661438ad32f30064025a71a339", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "22d30d638e7643a9ba4099a043c336f8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "D2" + }, + "result": { + "position": { + "x": 351.38, + "y": 368.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dda9ac56601eebc550af5507b650ba66", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ef22755766d11a2515cdc656a1206eee", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B1" + }, + "result": { + "position": { + "x": 178.38, + "y": 172.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3f720d2440226bb801efee965717f463", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6ab3bb98a9bdbed8b9e677e296ccdd6c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9e4f48dd740d2a489dc80e274ba6adb4", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "E2" + }, + "result": { + "position": { + "x": 351.38, + "y": 359.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "485839dd464ddef95542a87a6385b6f8", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "186dddbff855c64ec728c3c6b5245e4e", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "C1" + }, + "result": { + "position": { + "x": 178.38, + "y": 163.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "b3fd11cfe96e22fd010a364eccca4a0d", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "59194fa673c3607674054ad97d130da4", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "39b13304ba6eb692a7ac9370fcd83397", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "F2" + }, + "result": { + "position": { + "x": 351.38, + "y": 350.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e89f19d98ff9041688efec2d1b47742f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "caa62e2be1b94fe7242674780b65cb21", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "D1" + }, + "result": { + "position": { + "x": 178.38, + "y": 154.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "68bcde1b02cc31584de93e81c75d0905", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "947243278c0f9b290088b6bca04bf951", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3600f9c73508d68ddcb79c30be68ef29", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "G2" + }, + "result": { + "position": { + "x": 351.38, + "y": 341.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "644e5aa965cb19ac07062b49af262f7e", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "5521a16682bbad03f2155e527cffb1e7", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "E1" + }, + "result": { + "position": { + "x": 178.38, + "y": 145.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "d817b39461690537ef2745e189d52cdf", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27af3ecebc991ad978eeea654426b0c2", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "678f2dfef1fe079dd59194fb9f0b5e8f", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "H2" + }, + "result": { + "position": { + "x": 351.38, + "y": 332.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "dc5afdb2e24f9321e0a1541503f3258c", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "e9d66c66baae3e585ccd16fe39efe4f6", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "F1" + }, + "result": { + "position": { + "x": 178.38, + "y": 136.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "950bd4c5b63205e8f75aa287c29af1ef", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8030ddef9878c2c6c771e5547750fa13", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3cedfdb96cfa69746e4db401fc3df431", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "A3" + }, + "result": { + "position": { + "x": 360.38, + "y": 395.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "67bef249e017fc4b7c7e745abf060f2f", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c2eb913b5afd6d8e2e8643103fc91e88", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "G1" + }, + "result": { + "position": { + "x": 178.38, + "y": 127.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "c175199b657c21feeb3aa358cb7fd59e", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "1e0481ed1d49fd6bf1dfc331d166dfe1", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "pickUpTip", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "581868d27d115e40f1abab61a28559b8", + "notes": [], + "params": { + "labwareId": "UUID", + "pipetteId": "UUID", + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "origin": "top" + }, + "wellName": "B3" + }, + "result": { + "position": { + "x": 360.38, + "y": 386.38, + "z": 99.0 + }, + "tipDiameter": 5.59, + "tipLength": 48.59, + "tipVolume": 200.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "aspirate", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "3cb35dbb0ee00a51e49d8d1ca7556919", + "notes": [], + "params": { + "flowRate": 716.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -116.5 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "B2" + }, + "result": { + "position": { + "x": 202.88, + "y": 42.74, + "z": 7.85 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dispense", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ad285a5d617d4f7f3c4fa41085f6d7a6", + "notes": [], + "params": { + "flowRate": 350.0, + "labwareId": "UUID", + "pipetteId": "UUID", + "volume": 30.0, + "wellLocation": { + "offset": { + "x": 0.0, + "y": 0.0, + "z": -13.95 + }, + "origin": "top", + "volumeOffset": 0.0 + }, + "wellName": "H1" + }, + "result": { + "position": { + "x": 178.38, + "y": 118.24, + "z": 2.05 + }, + "volume": 30.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "moveToAddressableArea", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "ca653d972eb2ebd0344729120757c684", + "notes": [], + "params": { + "addressableAreaName": "1ChannelWasteChute", + "forceDirect": false, + "offset": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "pipetteId": "UUID", + "stayAtHighestPossibleZ": false + }, + "result": { + "position": { + "x": 392.0, + "y": 36.0, + "z": 114.5 + } + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "dropTipInPlace", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "9ba273ff1d2e9566b3010d3a7840875c", + "notes": [], + "params": { + "pipetteId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "05d4392fbec6420e11d1e734ed737d68", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "comment", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "7f8bb3bba9fac3e72f938ea524b092a5", + "notes": [], + "params": { + "message": "Cell Lysis" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "2bcea68c3166f7913fa4613d0cd50fa7", + "notes": [], + "params": { + "celsius": 80.0, + "moduleId": "UUID" + }, + "result": { + "targetLidTemperature": 80.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForLidTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "27eaedc71bbe1e2038bc6535b4b13863", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/closeLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "92bcc76fa676215f998bfcf8b0072177", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "91d9e9bd25c26a03671894ce1d9a01a5", + "notes": [], + "params": { + "blockMaxVolumeUl": 55.0, + "celsius": 65.0, + "holdTimeSeconds": 900.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 65.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "a266fafcd2dad426bea70b331794a7df", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/setTargetBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "8c866cbcc0be4f63487f5b5c7f492027", + "notes": [], + "params": { + "celsius": 4.0, + "holdTimeSeconds": 0.0, + "moduleId": "UUID" + }, + "result": { + "targetBlockTemperature": 4.0 + }, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/waitForBlockTemperature", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "154ac031b8e45befef0e63691ee97445", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "thermocycler/openLid", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "6d6bdb13931509a17873332f400814ce", + "notes": [], + "params": { + "moduleId": "UUID" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + }, + { + "commandType": "waitForResume", + "completedAt": "TIMESTAMP", + "createdAt": "TIMESTAMP", + "id": "UUID", + "key": "fb89f1ac5777bd76d37b8ed5b83d7b64", + "notes": [], + "params": { + "message": "Ready" + }, + "result": {}, + "startedAt": "TIMESTAMP", + "status": "succeeded" + } + ], + "config": { + "apiVersion": [ + 2, + 20 + ], + "protocolType": "python" + }, + "createdAt": "TIMESTAMP", + "errors": [], + "files": [], + "labware": [ + { + "definitionUri": "opentrons/opentrons_96_well_aluminum_block/1", + "id": "UUID", + "loadName": "opentrons_96_well_aluminum_block", + "location": { + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", + "displayName": "sampleplate", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_15_tuberack_falcon_15ml_conical/1", + "id": "UUID", + "loadName": "opentrons_15_tuberack_falcon_15ml_conical", + "location": { + "slotName": "D2" + } + }, + { + "definitionUri": "custom_beta/opentrons_24_aluminumblock_eppendorf_1.5ml_snapcap/1", + "displayName": "Tubes", + "id": "UUID", + "loadName": "opentrons_24_aluminumblock_eppendorf_1.5ml_snapcap", + "location": { + "moduleId": "UUID" + } + }, + { + "definitionUri": "custom_beta/eppendorf_96_wellplate_semiskirted_250ul/2", + "displayName": "Reservoir", + "id": "UUID", + "loadName": "eppendorf_96_wellplate_semiskirted_250ul", + "location": { + "labwareId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_1000ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_1000ul", + "location": { + "slotName": "C3" + } + }, + { + "definitionUri": "custom_beta/eppendorf_96_wellplate_semiskirted_250ul/2", + "displayName": "Plate", + "id": "UUID", + "loadName": "eppendorf_96_wellplate_semiskirted_250ul", + "location": { + "moduleId": "UUID" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_200ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_200ul", + "location": { + "slotName": "A3" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "B2" + } + }, + { + "definitionUri": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "id": "UUID", + "loadName": "opentrons_flex_96_tiprack_50ul", + "location": { + "slotName": "A2" + } + }, + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", + "displayName": "Reservoir_SB", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": "offDeck" + }, + { + "definitionUri": "opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", + "displayName": "Plate4", + "id": "UUID", + "loadName": "opentrons_96_wellplate_200ul_pcr_full_skirt", + "location": { + "slotName": "C2" + } + } + ], + "liquidClasses": [], + "liquids": [ + { + "description": "Spin Additive", + "displayColor": "#cc3399", + "displayName": "Spin Additive", + "id": "UUID" + }, + { + "description": "Resuspension Buffer", + "displayColor": "#ff6699", + "displayName": "Resuspension Buffer", + "id": "UUID" + }, + { + "description": "Resuspension Buffer1", + "displayColor": "#ff6699", + "displayName": "Resuspension Buffer1", + "id": "UUID" + }, + { + "description": "Round2 Ligation Buffer", + "displayColor": "#ffcc99", + "displayName": "Round2 Ligation Buffer", + "id": "UUID" + }, + { + "description": "Round2 Ligation Buffer1", + "displayColor": "#ffcc99", + "displayName": "Round2 Ligation Buffer1", + "id": "UUID" + }, + { + "description": "Round2 Ligation Enzyme", + "displayColor": "#ff9966", + "displayName": "Round2 Ligation Enzyme", + "id": "UUID" + }, + { + "description": "Round 2 Stop Buffer", + "displayColor": "#00cc99", + "displayName": "Round2 Stop Buffer", + "id": "UUID" + }, + { + "description": "Pre Lysis Dilution Buffer", + "displayColor": "#6699ff", + "displayName": "Pre Lysis Dilution Buffer", + "id": "UUID" + }, + { + "description": "Round 3 Ligation Enzyme", + "displayColor": "#cc99ff", + "displayName": "Round 3 Ligation Enzyme", + "id": "UUID" + }, + { + "description": "Lysis Enzyme", + "displayColor": "#8b4513", + "displayName": "Lysis Enzyme", + "id": "UUID" + }, + { + "description": "Sample", + "displayColor": "#00d2e6", + "displayName": "Sample", + "id": "UUID" + }, + { + "description": "Sample", + "displayColor": "#00d2e6", + "displayName": "Sample", + "id": "UUID" + }, + { + "description": "Sample", + "displayColor": "#00d2e6", + "displayName": "Sample", + "id": "UUID" + }, + { + "description": "Sample", + "displayColor": "#00d2e6", + "displayName": "Sample", + "id": "UUID" + } + ], + "metadata": { + "author": "Vasudha Nair ", + "description": "Barcoding protocol using the Flex with Parse Biosciences Version 3 WT Kit", + "protocolName": "In Situ Cell Barcoding using PBMCs" + }, + "modules": [ + { + "id": "UUID", + "location": { + "slotName": "D1" + }, + "model": "temperatureModuleV2", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "C1" + }, + "model": "temperatureModuleV2", + "serialNumber": "UUID" + }, + { + "id": "UUID", + "location": { + "slotName": "B1" + }, + "model": "thermocyclerModuleV2", + "serialNumber": "UUID" + } + ], + "pipettes": [ + { + "id": "UUID", + "mount": "right", + "pipetteName": "p50_multi_flex" + }, + { + "id": "UUID", + "mount": "left", + "pipetteName": "p1000_single_flex" + } + ], + "result": "ok", + "robotType": "OT-3 Standard", + "runTimeParameters": [ + { + "default": false, + "description": "Skip pauses, incubation delays, reduce mix steps, return tips to their racks", + "displayName": "Dry Run", + "type": "bool", + "value": false, + "variableName": "dry_run" + } + ] }